Multi-Level dropdown covered by Flash file

Forums Forums Menus Multi-Level dropdown covered by Flash file

Viewing 4 posts - 1 through 4 (of 4 total)
  • Author
    Posts
  • #653
    bradnpx
    Member

    Great plugin! I have a bit of a problem though. The dropdown menu is getting covered by a flash file on my site. The flash is implemented by another plugin, Kimili Flash Embed.  here is the link to the site:

    http://e-diazlaw.com/wordpress/

    Any help would be appreciated. Thanks!

    #5448

    Hi,
    This is an inherent problem with Flash objects. For whatever reason, Adobe decided that they would ignore the built in z-index system of browsers and set their own objects to the top at all times. Here are instructions on how to get the Flash objects to behave correctly:

    You need to add this between your OBJECT tags:
    [code:2p1rm53u]<param name="wmode" value="transparent">[/code:2p1rm53u]

    And this in an EMBED tag
    [code:2p1rm53u]wmode="transparent"[/code:2p1rm53u]

    So your code should look something like this:
    [code:2p1rm53u]
    <object>
      <param value="blabla.swf" / >
      <param name="wmode" value="transparent" / >
      <embed src="transparency.swf" wmode="transparent" type="application/x-shockwave-flash">
      </embed>
    </object>[/code:2p1rm53u]

    #5449
    bradnpx
    Member

    Ok, getting there. It looks great in Firefox, but IE is still giving me problems. Check the above link in IE.

    #5450

    I’m too busy right now sorry.

Viewing 4 posts - 1 through 4 (of 4 total)
  • You must be logged in to reply to this topic.