Results 1 to 2 of 2

Thread: Help with Jim's DHTML Menu v5.7

  1. #1
    Join Date
    Dec 2005
    Posts
    1
    Thanks
    0
    Thanked 0 Times in 0 Posts

    Default Help with Jim's DHTML Menu v5.7

    I am using this menu on my website, but I want to put a flash piece next to it, but every time I do this the submenus get pushed behind the flash piece and you can't see it. Anyone know how to fix this?

    Thanks!

  2. #2
    Join Date
    Mar 2005
    Location
    SE PA USA
    Posts
    30,495
    Thanks
    82
    Thanked 3,449 Times in 3,410 Posts
    Blog Entries
    12

    Default

    Here is my stock answer on that, and more:

    http://www.macromedia.com/cfusion/kn...fm?id=tn_14201

    That link explains how to fix a flash object to work as you desire, the short version is to add in this language to your object/embed tag:

    Add the following parameter to the OBJECT tag:

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

    Add the following parameter to the EMBED tag:

    wmode="transparent"

    As for an iframe, you should be able to set both the menu and the iframe's position to either relative or absolute. Many menus are already one or the other. Then set the menu's z-index higher than the iframe's:
    Code:
    <div id="menudivision" style="position:relative;z-index:100;">menu goes here</div>
    <iframe style="position:relative;" other iframe attributes go here></iframe>
    (Default z-index is zero)
    - John
    ________________________

    Show Additional Thanks: International Rescue Committee - Donate or: The Ocean Conservancy - Donate or: PayPal - Donate

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •