Custom logo image to greyzed theme
-
I’m hoping you guys can help me out. I’m trying to insert a custom logo over the header of the greyzed theme. I’ve the logo uploaded to my media library. I thought it’d be as simple as finding the header in the ccs and typing:
background-image: url(images/greyzed_logo.jpg);
But that screwed everything up so I did away with it.
Thanks in advance!
The blog I need help with is: (visible only to logged in users)
-
I would put it in #page which will float over the background image. The top and left positioning values I’ve used are just a starting point and you will have to adjust them.
#page { background: url("URL of logo here") no-repeat scroll 20px 70px transparent; }Also, you want to go back to settings > general and put in a site title and tagline and then hide them via CSS. That way they will still be there for the search engines to see, just not visible for visitors.
#header h1 a, .description {
display: none;
}
- The topic ‘Custom logo image to greyzed theme’ is closed to new replies.