Here is the code you need to have, by adding style="z-index:0" as follows:
<div id="flashcontent3" style="z-index:0"></div>Alternatively, if this doesn't work, try changing it to z-index:1
The idea behind z-index is that it applies which layer will show up on top first. In this case we say that 0 or 1 is the lowest layer so it should show up on the very back whilst everything else (such as your drop down menu) should then appear on top. However, you may need to apply the z-index to your menu aswell assuming the code does not work with a higher z-index.
|