There's no reason at all to have that absolutely positioned. Just use margins and/or padding to push the logo around inside the masthead div.
In your CSS3 file you have this (no ap version):
Quote:
#logo {
z-index: 10;
padding: 4px 2px 2px 7px;
}
|
Z-index is useless on non-positioned elements.
Then you have this:
Quote:
#mast {
width: 860px;
background-image: url(../images/Master/mast.png);
height: 122px;
margin-top: 20px;
z-index: 10;
}
|
Again, no point in the z-index there.
I'm seeing the logo though in IE6 and it's not out of place.
On the AP version, you have this:
Quote:
#logo {
left: 8px;
top: 30px;
z-index: 10;
position: absolute;
}
|
Just get rid of the positioning and the z-index, it's not needed at all.
__________________
Web Goddess & Web Standards Evangelist :) - Tables Be Gone !!
Please login or register to view this content. Registration is FREE
Please login or register to view this content. Registration is FREE
|