Hey all,
I'm having a problem with stacking order in MS-IE6. There's a
horizontal menu at the top that displays vertical sub menus on roll
over. The menus use relative and absolute positioning and display just
fine except for the fact that in IE they appear under another element
that has relative position (it appears later in the html), even with
z-index values. The css for the nav is listed below.

The site is not public yet, so I cannot link to it (though I can
probably save out a static version and send it off list). I have run
into a similar problem before, and it was fixed by removing "relative"
positioning for one of the elements. I have also read something about
"visibility: visible;" if that helps.

Thanks!
-Justin


The following it a code snippet for the unordered list:

/*** @navPrimary ***/
#navPrimary
{
        width: 100%;
        height: 31px;
        position: absolute;
        bottom: 0;
        left: 0;
}

#navPrimary ul
{
        margin: 0;
        padding: 0;
        height: 31px;
        width: 418px;
        position: absolute;
        right: 0;
        bottom: 0;
}

#navPrimary ul li
{
        padding-left: 0;
        height: 30px;
        position: absolute;
        z-index: 200;
}

#navPrimary a
{
        height: 30px;
        display: block;
}

#navPrimary ul ul
{
        padding-top: 10px;
        height: auto;
        width: 200px;
        position: relative;
        left: 0;
        top: 0;
        display: none;
        z-index: 200;
}

#navPrimary ul li:hover ul, #navPrimary ul li.hover ul, #navPrimary ul
li.over ul, #navPrimary ul li.over ul
{
        display: block;
        z-index: 200;
}

#navPrimary ul ul li
{
        background-image: none;
        height: auto;
        display: block;
        position: relative;
}

#navPrimary ul ul a
{
        margin: 0;
        padding: 5px 12px;
        color: #F9F2F2;
        height: auto;
        width: 176px;
}
______________________________________________________________________
css-discuss [EMAIL PROTECTED]
http://www.css-discuss.org/mailman/listinfo/css-d
List wiki/FAQ -- http://css-discuss.incutio.com/
Supported by evolt.org -- http://www.evolt.org/help_support_evolt/

Reply via email to