I'd like to hide the white text (my blog title) but am unsure where in the code to do so. Do I need to modify the header.php or the stylesheet?
My URL: http://www.goatisevil.com
Thanks for any help
Greg
I'd like to hide the white text (my blog title) but am unsure where in the code to do so. Do I need to modify the header.php or the stylesheet?
My URL: http://www.goatisevil.com
Thanks for any help
Greg
Edit your style.css file
find this entry:
#logo a {
background:none repeat scroll 0 0 transparent;
border:medium none;
color:#FFFFFF;
text-decoration:none;
and make it look like this:
#logo a {
background:none repeat scroll 0 0 transparent;
border:medium none;
color:#FFFFFF;
text-decoration:none;
display:none;
Note the last line
Awesome! Thanks for your help
G
This topic has been closed to new replies.