Sent by Dylan Foley on 11 July 2002 18:06
On Thursday, July 11, 2002, at 11:20 AM, Miriam Frost wrote:
> I've been having trouble with the menu in Opera and NN6?Mozilla on
> dynagirl.com....
> <snip>
> And I've been tinkering all morning....
> what is mostly working is this:
>
> I wrapped the p.menus in a div.menu and put the width declarations
> there. I
> also added to div.menu the following:
> <snip>
> z-index: -1;
>
> I added z-index: 1; to div.body...
> <snip>
> In Mozilla....
> I have no menu.
> Nope.
> Not at all...
> <snip>
>
You likely still have a menu, but now it's hiding behind whatever
contains it.
I'm guessing that would be the body element. In the environment you've
set up, the containing block for div.menu and div.body would have a
z-index of 0. So div.menu, with a z-index of -1 will end up behind that.
Try setting div.menu to z-index:1 and div.body to z-index:2.
- dylan