Closed (fixed)
Project:
Administration menu
Version:
5.x-1.2
Component:
CSS / Browser Support
Priority:
Normal
Category:
Bug report
Assigned:
Unassigned
Reporter:
Created:
26 Nov 2007 at 12:39 UTC
Updated:
8 Aug 2011 at 03:47 UTC
Simple use case: I have a flash banner at the top of my site. The menu is rendered fine, but when you hover a submenu, the flash stays on top, so several menu's aren't accessable, cf attachment. I've tried adding z-index but no luck, wmode=transparent to flash also fails. Any ideas on this topic ?
Otherwhise, GREAT module!
| Comment | File | Size | Author |
|---|---|---|---|
| menu_under_flash.jpg | 20.01 KB | swentel |
Comments
Comment #1
sunWe are experiencing the same issue on our very own site www.unleashedmind.com
Sorry, no solution yet. Patches welcome. :)
Comment #2
sunSolution:
Set the flash object attribute
wmodetotransparent.Source:
- http://kb.adobe.com/selfservice/viewContent.do?externalId=tn_14201&slice...
- http://veerle.duoh.com/index.php/blog/comments/experimenting_with_flash_...
- http://joshuaink2006.johnoxton.co.uk/blog/82/flash-content-and-z-index
This will work in most modern browsers supporting windowless mode. See Adobe KB for exact list of supported browsers.
Comment #3
(not verified) commentedAutomatically closed -- issue fixed for two weeks with no activity.
Comment #4
Infinitee commentedEditing HTML code manually
To edit an existing HTML page, add the WMODE parameters to the HTML code.
1. Add the following parameter to the OBJECT tag:
<param name="wmode" value="transparent">2. Add the following parameter to the EMBED tag:
wmode="transparent"From the Adobe KB:
http://kb2.adobe.com/cps/142/tn_14201.html
Will not work without the
wmode="transparent"added to EMBED tag!Comment #5
Enzman commentedNote that there is a simple solution for Drupal version 6. Go to your flash image in edit mode, right button click the flash item then select 'Flash Properties' then the tab 'Properties'. Under Windows mode, select "Transparent Mode" then 'OK' then 'save'. Worked for me.
Comment #6
Brian1234 commentedI'm late to this thread but I _highly_ suggest trying the wmode setting of "opaque" rather than "transparent".
Just the fact of setting wmode does something to the flash object, I forget what exactly, I don't think it's z-index but rather something similar in the rendering ('canvas' level?). In my use on non-drupal sites, I found that opaque works fine with respect to these issues.
The reason you want to avoid 'transparent' is that this causes the browser rendering to do transparency math on each and every pixel! Transparency -is- required when the Flash 'stage' truly has transparent areas where the background is suppose to show through, but most Flash objects I see do not do that and are just an opaque square or rectangle.