It looks bad in IE7 though... Image is left justified instead of centered. I think most internet users are still using IE7 unforntunately...
best solution would be to set the image display property to block and add a left margin ... display:block; left-margin:..px;
Not the best coder... would you mind showing me exactly what to replace and with what? Rep added btw..
go to your custom.css file and add this #logo img { display:block; margin-left:13px; } Code (markup): in the same file you should also find the #logo { height: 92px; width: 174px; background-color : #285F94; } Code (markup): and change it to #logo { height: 92px; background-color : #285F94; } Code (markup): (i removed the width, as you apply it to a td element which has a forced size of 201px inherited from the table it belongs to..) take care