Reputation: 83
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.com/
Upvotes: 0
Views: 148
Reputation: 1428
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>
Upvotes: 0