3d flash banner problem?
my problem is - 3d banner fx is over the menu dropdown...i try use the z-index function but not work. The problem only in internet explorer and chrome but mozila it's ok. http://www.peckchew.c开发者_如何学运维om/
<param name=”wmode” value=”transparent”>
Check wmmode
attribute.
You need to set the wmode to opaque for it to adhere to z-index rules. Setting to transparent will simply place it above everything else. You may not want this.
Because you're using the Wordpress FX3D plugin you need to edit the plugin file found here: p-content/flashxml/3d-banner-fx/3d-banner-fx.php.
Look for this line (around line 75):
<param name="wmode" value="window"></param>
and change to
<param name="wmode" value="opaque"></param>
精彩评论