Hi.
I ve edited template.css in order to change the logo height.
So i replaced this code:
[PHP]/* Logo Image —*/
h1.logo { height: 45px; width: 236px; }
h1.logo a {
background: url(../images/logo.gif) no-repeat left;
display: block;
height: 45px;
width: 236px;
}
h1.logo a span { position: absolute; top: -1000px; }[/PHP]
with this code:
[PHP]/* Logo Image —*/
h1.logo { height: 140px; width: 450px; }
h1.logo a {
/* background: url(../images/logo.gif) no-repeat left;*/
background: url(../images/logo.png) no-repeat left;
display: block;
height: 140px;
width: 450px;
}
h1.logo a span { position: absolute; top: -1000px; }[/PHP]
After viewing my test website with Opera, FF and IE8 i saw that logo changed and everything was fine.
Just today i viewed website again but this time with IE7 and saw that logo overlaps menu bar.
So the problem is that the menu bar doesnt move down as it should, it remains in the original position so when i increase logo’s height i get logo over the menu bar.
I ve tried to edit ie7minus.css but couldnt find anything related.