superslurpee
Programmer
- May 15, 2002
- 108
Hi,
I've got a good ol' Netscape 4.x problem with nested tables and divs. Of course everything I'm doing works peachy in NN6 and IE but I need it to work in Netscape 4 as well.
I'm working on a page (previously made) with a nice drop down menu of images (it's not a main menu, but part of the page for explanation of various topics). Anyways, it works as one unit and needs to placed together.
The current structure is:
The current structure works fine in anything other than NN4.x and works the way we want (if text size is increased by user, we want the menu to move to accomodate it, which it does). In NN4.x however, the relative div to place it where we want is ignored and the entire menu moves to the top of the page almost as if it's just seeing the absolutely positioned divs.
How do I get that menu to be placed in the same location as in other browsers (ie. inside the content tables) rather than pulled out of context and placed at the top?
I think NN4.x should be put to sleep!
Thank you for any ideas anyone can offer.
I've got a good ol' Netscape 4.x problem with nested tables and divs. Of course everything I'm doing works peachy in NN6 and IE but I need it to work in Netscape 4 as well.
I'm working on a page (previously made) with a nice drop down menu of images (it's not a main menu, but part of the page for explanation of various topics). Anyways, it works as one unit and needs to placed together.
The current structure is:
Code:
<div>
<table>
<table>
<table>
<div style="position:relative"><!--TO PLACE MENU IN CONTENT-->
<div style="position:absolute"></div> <!--ALL MENU PARTS-->
</div>
</table>
</table>
</table>
</div>
The current structure works fine in anything other than NN4.x and works the way we want (if text size is increased by user, we want the menu to move to accomodate it, which it does). In NN4.x however, the relative div to place it where we want is ignored and the entire menu moves to the top of the page almost as if it's just seeing the absolutely positioned divs.
How do I get that menu to be placed in the same location as in other browsers (ie. inside the content tables) rather than pulled out of context and placed at the top?
I think NN4.x should be put to sleep!
Thank you for any ideas anyone can offer.