logo

This is an old version of this answer!

Return to the current answer
Find line 1216 in your style.css ( #sidebar .widget_categories ul li, #sidebar .widget_archive ul li, #sidebar .widget_links ul li )and change property "width" to "100%" so it will be width:100%;.

It looks like some javascript is adding inline styles into it. Try to add this into your style.css:
#logo a img {
width: YOUR WIDTHpx !important;
height: YOUR HEIGHTpx !important;
}

e.x.:
#logo a img {
width: 838px !important;
height: 198px !important;
}

JohnnyPea | 08/31/10 at 1:41pm

This is an old version of this answer!

Return to the current answer