April 12, 2009
How to position Flash objects below DHTML elements
Flash objects by default place themselves on top of everything else. Even setting z-index with CSS style cannot solve the issue.
Finally, here is the solution I’ve figured out…
- Add the following parameter to the OBJECT tag:
HTML Code:
<param name="wmode" value="transparent">
- Add the following parameter to the EMBED tag:
HTML Code:
wmode="transparent"
You can see live example at EBook-Bargains.
Filed under Tutorials