I have a problem with flash content in IE7 being always over the menu items

I have a structure like the following:

<div id='skyscraper_flash'>
<!--this id skyscraper_flash is position absolute-->
  <object>
   <!--this is wmode transparent-->
  </object>
</div>

<div id='menu'>
<!--this id menu is also position absolute-->
  <ul>
    <li>foo</li>
    <li>bar</li>
  </ul>
</div>

Now then the last item of the menu opens it shows behind the flash content. The skyscraper is on the right of the page content. What should i look into?

link|improve this question

66% accept rate
Can you post the CSS for us too? You mention z-indexes but haven't told us what they are :) – Kyle Sevenoaks Apr 16 '10 at 12:51
feedback

3 Answers

up vote 5 down vote accepted

You can give this inside the object tag

<param name="wmode" value="transparent">
link|improve this answer
It is already initialized as wmode transparent as you can see in the pseudo-code above – L. De Leo Apr 16 '10 at 13:55
feedback

Yeah, you need to change the z-index of the menu and add wmode="transparent" like above

link|improve this answer
object is initialized with wmode=transparent as i wrote in the pseudo-code. As for z-index, aren't generally position:absolute elements out of z-index logics? – L. De Leo Apr 16 '10 at 13:54
z.index applies only to positioned elements, so if you haven't declared a z-index to your elements, you won't be able to control which one is on top... – Kyle Sevenoaks Apr 16 '10 at 13:59
feedback

opaque for performance

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

http://www.communitymx.com/content/article.cfm?cid=E5141

link|improve this answer
feedback

protected by Will Jan 1 '11 at 22:35

This question is protected to prevent "thanks!", "me too!", or spam answers by new users. To answer it, you must have earned at least 10 reputation on this site.

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