OK,
I’ve been absolutely battling this issue for sometime now and need some help I have a dropdown menu as well as Frontpage Slideshow working together on a website found at www.bgprograms.com. Works fine in Firefox, Safari and IE8+, but in IE7, the dropdown floats behind the slideshow. I tried assigning different z-indexes and IE7 isn’t registering them properly.
I did find one fix that when I added: position: relative to the div #middle, the drop down works fine in IE7. HOWEVER, once I do that, every single link on the website goes inactive. I’m stumped, thank you in advance.
The problem is a z-index bug with IE6/7. Any positioned element in those browsers use z-index:0 instead of z-index:auto.
The problem is the position:relative; that is set on the div.wrapper. If you remove that it will work in IE6/7 but then you loose the positioning of your menu since it is absolute positioned.
If I were you I would eliminate that <div id=“menu-container”> that the menu is nested in and nest the whole menu inside the header.