The website: http://club16.abcguide.com/

The drop down menu items appear behind the Flex slider in IE 8 for the client, and IE 7 in my compatibility tester.

Help is appreciated in regards to this, thanks!

link|improve this question

feedback

2 Answers

up vote 2 down vote accepted

Unless the z-index is explicitly set for positioned elements, IE7/8 will give the positioned element a z-index of 0.

Add position: relative; z-index: 99999; to #navigation-wrap to ensure it has a z-index greater than the other elements on the page. This will ensure it stays on top.

link|improve this answer
I've added them to the #navigation-wrap div, however they aren't showing up in IE? I'm starting at them in FireFox though.. this is the same issue I had with Danjah's solution.. – Jassi Feb 15 at 0:07
Also, it's working in my IE8, but not in my IE7. – Jassi Feb 15 at 0:09
I'm not seeing the changes to #navigation-wrap on the site you provided? I added position: relative; z-index: 99999; via IE DEV tools as an inline style and verified that it works in IE7/8 – alpaca lips Feb 15 at 0:12
Disregard my last comment, it's working now. Thank you very much. :) – Jassi Feb 15 at 0:18
You are welcome! – alpaca lips Feb 15 at 0:19
feedback

.flexslider has position:relative; but no z-index CSS property, if you add z-index:1 to that container, and then position:relative; and z-index:2; to any one of your suckerfish menu containers (I added it to ul.menu in IE debug tools), the menu will then be positioned atop the slider.

link|improve this answer
1  
I've added the CSS to '.flexslider' and 'ul.menu'.. however, the CSS doesn't seem to be appearing in IE? It's working in Firefox though.. – Jassi Feb 14 at 23:16
The CSS for 'ul.menu' isn't appearing* – Jassi Feb 14 at 23:25
1  
scratching my head – Danjah Feb 15 at 0:39
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.