up vote 2 down vote favorite
1
share [g+] share [fb]

I am working on a site with two absolutely positioned divs... the logo and the menu (navbar)

IE is burying them both, even after multiple tries of z-index manipulation. Why can't IE work as well as Firefox or even Opera for God's sake?

UPDATE.......

I forgot to mention that these divs are positioned over a flash movie. How could I possibly have left that out?!

link|improve this question

79% accept rate
Looks like they want us to give the parent div relative positioning and a z-index of 1. Still doesn't work for me though. – diventato Apr 17 '09 at 17:50
You may want to change the title of the question to include the fact that the issue is Flash-related. – Zack The Human Apr 20 '09 at 22:33
This problem affects IE8 as well. – Dave Van den Eynde Jan 31 '11 at 12:43
feedback

4 Answers

up vote 10 down vote accepted

If your flash movie is burying your other content you may have luck by adding an additional param element to your embedded object:

<param name="wmode" value="opaque" />

For a longer answer you can see this blog post about stacking windowed / flash content. Adobe has a TechNote about this issue, too.

link|improve this answer
Awesome, thanks it worked! – diventato Apr 20 '09 at 22:23
Thanks, had the same problem. The Adobe link doesn't work anymore, though. – Dave Van den Eynde Jan 31 '11 at 12:42
@Dave Thanks for the note -- I updated the Adobe link with a working URL. – Zack The Human Jan 31 '11 at 17:35
feedback

IE has several well-documented Z-index bugs. It seems IE makes a new stacking context for positioned elements. See here.

link|improve this answer
feedback

This is also an issue in IE7. Here's a link describing the problem: http://therealcrisp.xs4all.nl/meuk/IE-zindexbug.html

link|improve this answer
feedback

This is a known bug with IE6 (which I'm assuming you're using). Here's some description and some help: http://www.last-child.com/conflicting-z-index-in-ie6/

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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