Header title has appeared from nowhere (CSS had it hidden)
-
Hi, in my blog, http://nalandainternational.wordpress.com, I used to have the little tidbit about the blog hidden.
I’m using this code to move it to the left, off screen, so the link still works on the header image:
#header a {
display:block;
height:100%;
text-indent:-500em;
text-decoration:none;
}However, it came back a couple days ago (due to theme issues?), and I don’t know what to do with it…
Please help! Thank you.
The blog I need help with is: (visible only to logged in users)
-
-
What you are seeing I think is the tagline.
Go to .blog-description and add ” display: none; ” as below:
#blog-description { color:#CCCCCC; display:none; font-size:1em; font-weight:bold; margin:0 0 5px 10px; }I also suggest changing header a to ” display: none; ” and remove the “text-indent” as well as below:
#header a { display:none; height:100%; text-decoration:none; }
- The topic ‘Header title has appeared from nowhere (CSS had it hidden)’ is closed to new replies.