Replace the header text to a header image
-
Basically I want to replace the current header text with an image. Any help will be greatly appreciated!
The blog I need help with is: (visible only to logged in users)
-
I might be wrong here, I’ve been trying to change the text in the Home Page Widget Area for 2 hrs, can’t figure it out. But I think for the image in the header you load it into your library and there is a button to use as header image. Try that. I did it by accident. lol, but it worked. Now I can’t figure out how to change the text, do you know how?
-
@activisionarydotinfo
All CSS editing is theme specific. Please post an active link to the blog your purschased the custom design upgrade for. -
@frictionthemovie
Your issue is that you aren’t aware of how the Structure theme is designed to function. CSS editing can only be used to change appearance. It cannot be used to change how any themes functions. Please read > http://wpbtips.wordpress.com/2010/05/01/introduction-to-structure/ -
The previous answer isn’t exactly right. You can replace text with an image using CSS.
Here is an example of replacing the site title with an image in the Splendio theme. Add this code to your Appearance → Custom Design → CSS page and click Preview to see it in action:
#branding hgroup .site-title { display: block; text-indent: -9999px; } #branding hgroup .site-title a { display: block; background: url(http://s.wordpress.org/about/images/logo-grey/grey-s.png) no-repeat; min-height: 50px; }I used a WordPress logo image as an example. You should replace the url() value with a link to an image you uploaded to your media library and update the min-height value to match the height of your image.
- The topic ‘Replace the header text to a header image’ is closed to new replies.