Jump to content

DIv layering?


spikypunker

Recommended Posts

Hey guys, is there are way of making a div be "always on top"?

 

Im redesigning my site, here it is http://www.maddogmagazine.co.uk/backNEW.php

 

As you can see, the drop down is being covered by the Flash panel? The flash panel is automatically put into a DIV i believe and the drop down works by displaying a DIV on rollover!

 

Is this simple?

Link to comment
https://forums.phpfreaks.com/topic/160797-div-layering/
Share on other sites

Hey ppl, still no joy on this issue, it's now holding back releasing my redesign and i'm getting stressed! Can anyone help?

 

I've made sure that the divs from the menu are the highest and even set the Flash div to be the lowest. Set the wmode to be transparent when publishing the SWF file and also added the wmode="transparent" into the Flash div tag.

 

Has anyone ran into this problem before at all and beaten it??

 

 

Peace!

Link to comment
https://forums.phpfreaks.com/topic/160797-div-layering/#findComment-850987
Share on other sites

  • 2 weeks later...

so.addParam("wmode", "transparent"); is what you need..

 

Make

 

<div id="flashcontent"></div>
<script type="text/javascript">
     var so = new SWFObject("http://www.maddogmagazine.co.uk/backissues.swf", "mymovie", "565", "1200", "5", "#FFFFFF");
     so.write("flashcontent");
</script>

 

into

 

<div id="flashcontent"></div>
<script type="text/javascript">
     var so = new SWFObject("http://www.maddogmagazine.co.uk/backissues.swf", "mymovie", "565", "1200", "5", "#FFFFFF");
     so.addParam("wmode", "transparent");
     so.write("flashcontent");
</script>

 

 

 

Link to comment
https://forums.phpfreaks.com/topic/160797-div-layering/#findComment-858897
Share on other sites

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.