I am just trying to remove the the visibility of title text from my header, since I already have it as part of the header image: [[LINK href="http://www.audiocompulsive.com/"]]Audiocompulsive.com[[/LINK]].
I'd like the title to remain visible to search engines, just not the end user.
Here's my [[LINK href="http://pastebin.com/NiAFyiCz"]]page.php[[/LINK]] code.
And here's my [[LINK href="http://pastebin.com/cps5s2f1"]]style.css[[/LINK]] code.
Thanks!
Fahad Murtaza answers:
Remove the
get_bloginfo( 'description...
from your header file.
Fahad Murtaza comments:
Please post the header.php code.
Fahad Murtaza comments:
This should work
Line # 92 of your code
#blog-title {font-size:64px;line-height:60px;letter-spacing:-2px;width:585px;display:inline;float:left; display:none; visibility:hidden;}
Fahad Murtaza comments:
I inspected teh code and here is the final thing
#blog-title {
font-size: 64px;
line-height: 60px;
letter-spacing: -2px;
width: 585px;
display: inline;
float: left;
display: block;
visibility: hidden;
}
Fahad Murtaza comments:
Here is the result of my CSS code. I used Google chrome to modify CSS on the runtime.