Try setting your wmode = transparent on the flash. This will keep flash from laying over top of everything no matter what z-index you set it to.
jacobangel
2009-02-08 00:25:05
Try setting your wmode = transparent on the flash. This will keep flash from laying over top of everything no matter what z-index you set it to.
You could try to paste some of your CSS code at w3schools TryIt Editor to check if it is correct and z-index works as you think.
While wmode=transparent
will work, it causes quite a performance hit. You'll probably get better results with wmode=opaque
.
What if you can't change the flash modes because it's a banner from a network like AdSense?
Remember that you need to set the wmode parameter separately for IE and other browsers:
<param name="wmode" value="opaque" /> <!-- for IE -->
<embed src="images/banner/banner.swf" quality="high" wmode="opaque" ... <!-- for other browsers-->