PDA

View Full Version : Netscape wants 5 more px


animgirl
07-30-2003, 12:30 PM
Howdy,

I have a problem on a site I'm working on.
see it here (http://www.millenniyum.com/mhcmm)

The problem is the menu on the far right in netscape. In netscape it shows to be over 5 px. Though, in ie it works just fine.

The scripting for the menu on the far right and the one on the left are nearly identical, the only difference being the right and left properties: This is what it is for the far right menu.
#headerBeta {
position:absolute;
width:151px;
right:0px;
z-index:2;
}

When I say right:5px it works fine in netscape, but subsequently makes it 5px too far over in ie.

Any ideas?
tia
animgirl

DCElliott
08-02-2003, 07:03 PM
#headerBeta {
position:absolute;
width:151px;
right:0px;
z-index:2;
}Your graphic is 156px wide. IE is fixing your mistake for you but Mozilla is giving you a poke.

Watch your XHTML - your code is not compliant.

D

animgirl
08-03-2003, 04:13 PM
Yeah, I haven't validated it yet ;)
Thanks a bunch, I'll try that as soon as I can.

animgirl