I just uploaded my own header and the Weblog title and Tagline text shows through.
I've read that these are good for SEO purposes so I would rather hide than delete them. How is this done?
Eric
I just uploaded my own header and the Weblog title and Tagline text shows through.
I've read that these are good for SEO purposes so I would rather hide than delete them. How is this done?
Eric
drop a header-background.jpg image into your skin's directory. it'll do what you're seeking to do without trying to cheat google. then again, and assuming you really *want* to take the risk, the following:
#header h1,
#header h2
{
display: none;
}
in your custom.css file will do the trick.
Thanks Denis,
I moved the .jpg into the skins directory instead of the headers directory where I had it and it worked as desired.
Eric
This Works for the Header but... How do you hide the tagline? See http://energeticempowerment.org
By looking at your source (details: Finding_Your_CSS_Styles)
you will see this:
<div class=\"description\">Gentle Healing to Transform Your Life</div>
So, apply the same technique to the descripton class in your stylesheet:
.description {display: none;}
If you just comment out the header desription (titile text) so it doesnt display, will google and the bots still pick it up for indexing?
Martin
This topic has been closed to new replies.