Increase the minimum z-index for the navigation bar's positioned elements to 1002.
How this is done may vary by the code (css, HTML, and/or javascript) used by your particular menu bar. If the root of the menu is - say:
Code:
<div id="menu">
menu triggers and items here
</div>
And contains all of the triggers and items, adding a style rule to your stylesheet before the other styles for the menu:
Code:
#menu, #menu * {
position: relative;
z-index: 1002!important;
}
Notes: Red items must match up. The !important keyword must be used as shown to override lower z-indexes in the styles that follow.
If you want more help:
Please post a link to a page on your site that contains the problematic code so we can check it out.
Bookmarks