When I disable the site name, there is still a translucent black box where the site name would be (the box that the site name would sit on top of. How do I get rid of this?

Comments

turnip’s picture

Status: Active » Closed (fixed)

nevermind. figured it out.

changed:

#logo-title {
background:transparent url(img/transparent-black.png) repeat scroll 0 0;
display:block;
float:left;
margin:10px;
padding:10px 20px;
}

to:

#logo-title {
background:transparent url(img/transparent-black.png) repeat scroll 0 0;
display:none;
float:left;
margin:10px;
padding:10px 20px;
}