Re: [css-d] drop down menus/flash
Ed Pybus wrote: > ... could some check if the menus are coming down in front of the > flash player on other operating systems? > > http://www.slrecords.net/test_videos.php Seems to be working as intended in all browsers on windows 2000/XP/Vista and on Mac OSX - dropdown gets in front of flash. As you have observed: no good in any browser on Ubuntu. regards Georg -- http://www.gunlaug.no __ css-discuss [EMAIL PROTECTED] http://www.css-discuss.org/mailman/listinfo/css-d List wiki/FAQ -- http://css-discuss.incutio.com/ List policies -- http://css-discuss.org/policies.html Supported by evolt.org -- http://www.evolt.org/help_support_evolt/
Re: [css-d] drop down menus/flash
> http://www.slrecords.net/test_videos.php > > Or do I just have to accept that at the moment you can't get drop down > menus to drop in front of a flash player?? No, the scriupt is the culprit. Even Dreamweaver gets this wrong out of the box. Use [1]swfObject, as follows: Include swfobject in the head of your document: In your HTML, for the flash piece: var so = new SWFObject('path/to/flashFile.swf','slideshow',700,400,8,'#ff'); so.addParam('quality','high'); so.addParam('wmode','transparent'); so.write('Slideshow'); Note: is where the SWF will appear/be injected. The ID can be whatever you'd like, but that ID must match up in the code right after the path. 700 is the width 400 is the height 8 is the version to detect Also, make srure you set z-index where necessary. [1] http://code.google.com/p/swfobject/ __ css-discuss [EMAIL PROTECTED] http://www.css-discuss.org/mailman/listinfo/css-d List wiki/FAQ -- http://css-discuss.incutio.com/ List policies -- http://css-discuss.org/policies.html Supported by evolt.org -- http://www.evolt.org/help_support_evolt/
Re: [css-d] drop down menus/flash
Thanks for the advice - unfortunately none of it has worked for me! I've give the elements of the dropdown menus higher z-index numbers than the flash player and tried the wmode param on the flash player and neither seem to work (at least on FF3 on ubuntu). I know there seems to be some FF/Flash problems could some check if the menus are coming down in front of the flash player on other operating systems? http://www.slrecords.net/test_videos.php Or do I just have to accept that at the moment you can't get drop down menus to drop in front of a flash player?? Thanks again, Ed Ed Pybus wrote: > Hi, > > Can anyone help me get my dropdown menus coming down in front of a flash > player rather than behind it? > > http://www.slrecords.net/test_videos.php > > CSS here > > http://www.slrecords.net/css/master2.css > > This is my first website so and other comments/improvements/criticisms > welcome. > > Thanks, > > Ed > > > __ > css-discuss [EMAIL PROTECTED] > http://www.css-discuss.org/mailman/listinfo/css-d > List wiki/FAQ -- http://css-discuss.incutio.com/ > List policies -- http://css-discuss.org/policies.html > Supported by evolt.org -- http://www.evolt.org/help_support_evolt/ > > -- -- S LR E C O R D S +44 (0) 131 466 2009 +44 (0) 7930 536 963 [EMAIL PROTECTED] -- __ css-discuss [EMAIL PROTECTED] http://www.css-discuss.org/mailman/listinfo/css-d List wiki/FAQ -- http://css-discuss.incutio.com/ List policies -- http://css-discuss.org/policies.html Supported by evolt.org -- http://www.evolt.org/help_support_evolt/
Re: [css-d] drop down menus/flash
http://www.projectseven.com/support/answers.asp?id=127 -- Al Sparber - PVII http://www.projectseven.com Fully Automated Menu Systems | Galleries | Widgets http://www.projectseven.com/go/Elevators __ css-discuss [EMAIL PROTECTED] http://www.css-discuss.org/mailman/listinfo/css-d List wiki/FAQ -- http://css-discuss.incutio.com/ List policies -- http://css-discuss.org/policies.html Supported by evolt.org -- http://www.evolt.org/help_support_evolt/
Re: [css-d] drop down menus/flash
Ed Pybus a écrit : http://www.communitymx.com/content/article.cfm?cid=E5141 Hope it helps Luis > Hi, > > Can anyone help me get my dropdown menus coming down in front of a flash > player rather than behind it? > > http://www.slrecords.net/test_videos.php > > CSS here > > http://www.slrecords.net/css/master2.css > > This is my first website so and other comments/improvements/criticisms > welcome. > > Thanks, > > Ed > > > __ > css-discuss [EMAIL PROTECTED] > http://www.css-discuss.org/mailman/listinfo/css-d > List wiki/FAQ -- http://css-discuss.incutio.com/ > List policies -- http://css-discuss.org/policies.html > Supported by evolt.org -- http://www.evolt.org/help_support_evolt/ > > __ css-discuss [EMAIL PROTECTED] http://www.css-discuss.org/mailman/listinfo/css-d List wiki/FAQ -- http://css-discuss.incutio.com/ List policies -- http://css-discuss.org/policies.html Supported by evolt.org -- http://www.evolt.org/help_support_evolt/
Re: [css-d] drop down menus/flash
You've got z-index: 999; on your nav a . Isn't that causing the drop down menu when active to be in front of everything else? Doesn't it need to be something like z-index: 2, and the video and the title above it being z-index: 3 ? Hope this helps. Rachel At 13:01 14/10/2008, Ed Pybus wrote: >Hi, > >Can anyone help me get my dropdown menus coming down in front of a flash >player rather than behind it? > >http://www.slrecords.net/test_videos.php > >CSS here > >http://www.slrecords.net/css/master2.css > >This is my first website so and other comments/improvements/criticisms >welcome. > >Thanks, > >Ed __ css-discuss [EMAIL PROTECTED] http://www.css-discuss.org/mailman/listinfo/css-d List wiki/FAQ -- http://css-discuss.incutio.com/ List policies -- http://css-discuss.org/policies.html Supported by evolt.org -- http://www.evolt.org/help_support_evolt/