floating menu over flash

Collapse
X
 
  • Time
  • Show
Clear All
new posts
  • bdbeames
    New Member
    • Jun 2007
    • 27

    floating menu over flash

    I have a menu on the right side of my page and a flash object in the center. When a certain option in the menu is select a sub menu pops and floats left. The problem is, depending on the browser and OS i.e.(firefix,ub untu) the submenu is behind the flash. How can i fix this problem. I googled for the last day and the only thing I found was to put the flash in it's own div and set the z-index to -1. This solved nothing.

    here is a copy of the flash code:

    <object type="applicati on/x-shockwave-flash" data="support/flash/research5.swf" width="577" height="610">
    <param name="movie" value="support/flash/research5.swf" />
    <param name="wmode" value="transpar ent" />
    <a title="You must install the Flash Plugin for your Browser in order to view this movie" href="http://www.adobe.com/shockwave/download/alternates/">
    <img src="support/flash/research_noflas h.png" width="577" height="610" alt="placeholde r for flash movie" />
    </a>
    </object>

    here is a copy of my floating menu and sub menu:
    <h1>Connect</h1>

    <ul class="maindrop nav">
    <li>
    <a <?php if ($activenav == 'menuhome') echo ('class="active "') ?> href="/index.php">Home
    <span>Return to the Utah Climate Center homepage.</span>
    </a>
    </li>
    <li>
    <a <?php if ($activenav == 'menudata') echo ('class="active "') ?> href="/products/data.php">Data Products
    <span>Use a GIS interface to access climate data from COOP, GSOD and AWOS weather stations.</span>
    </a>
    </li>
    <li>
    <a <?php if ($activenav == 'menuvis') echo ('class="active "') ?> href="#">Visual izations
    <!--<span>Use an interactive interface to view current satellite data.</span>-->
    </a>
    <ul class="dropnav" >
    <li><a href="/loops/loops.php">Sate llite Loops</a></li>
    <li><a href="http://webcat.gis.usu. edu:8080/index.html">Mic romaps</a></li>
    </ul>
    </li>
    <li>
    <a <?php if ($activenav == 'menuconv') echo ('class="active "') ?> href="/conversions.php ">Climate Conversions
    <span>Find tools for temperature, humidity, wind speed and other climate conversions.</span>
    </a>
    </li>
    <li>
    <a <?php if ($activenav == 'menustatict' || $activenav == 'menudynamic') echo ('class="active "') ?> href="#">Climat e Reports
    <!--<span>Find useful reports like freeze dates, water year information, etc.</span>-->
    </a>
    <ul class="dropnav" >
    <li><a href="/reports/static.php">Sta tic Reports</a></li>
    <li><a href="/reports/dynamic.php">Dy namic Reports</a></li>
    </ul>
    </li>
    </ul>

    If anyone wants to look the website is: http://beta.climate.us urf.usu.edu/research.php

    Has anyone found a fix for this
  • jsavagedesign
    New Member
    • Jun 2007
    • 17

    #2
    Hey,
    You might have tryed this but. On the flash CSS put:
    position:relati ve; z-index:4;
    on the menu:
    position:absolu te; z-index:5;

    Usually you can't float anything over flash but recently I was able to float a Div tag over a flash movie like this.

    -J

    Comment

    • RobertCCS
      New Member
      • Aug 2010
      • 1

      #3
      Thanks!

      Hey, this helped me out with a website quandary I was having, many thanks!

      Comment

      • oxido

        #4
        try to use: wmode=transpare nt
        Last edited by MMcCarthy; Oct 20 '10, 11:13 PM.

        Comment

        Working...