Home › Forums › CSS › How To Fix Header floating out of position in IE7 & IE6? › Re: How To Fix Header floating out of position in IE7 & IE6?
April 13, 2010 at 7:48 am
#73842
Member
Just add this to your css: #top{ top:0px;left:0px;} and your new css will be:
#top{
position:absolute;
top:0px;
left:0px;
z-index:2;
width:960px;
height:135px;
background:#287f33;
background-position:top;
}
and you are done.
Cheers!! :)