Drop-down menus appearing behind flash video

My drop-down menus appear behind my flash movies (JW Player) in Chrome and Internet Explorer. The problem does not occur in FireFox and Safari.

I read so many solutions related to changing wmode and z-index navigation and video, without success.

You can see the problem on the sixth slide in the slider: http://ghostpool.com/wordpress/supermassive/

Any help would be appreciated.

+4
source share
4 answers

I found that using a javascript solution fixes the problem in all browsers. The decision was made from this post: How to add wmode = "transparent" for each flash object and ebmed tag?

0
source

just add this as the first parameter:

<param name="wmode" value="transparent"> 
+3
source

use this method

  <object id="flash1" data="one.swf" height="500" type="application/x-shockwave-flash" width="800"> <param name="movie" value="one.swf" /> <param name="quality" value="High" /> <param name="wmode" value="opaque" /> <param name="menu" value="false" /> </object> 
0
source

We also had a problem with flash movies in front of the menu. In IE 11 with SharePoint 2013, we could fix the problem as follows:

We add the content editor web part and edit the code. We insert an object along with the ms-wpContentDivSpace class:

 <div class="ms-wpContentDivSpace"> <object width="800" height="500" id="flash1" data="https://www.youtube.com/embed/YouTubeID" type="application/x-shockwave-flash" wmode="transparent"><param name="movie" value="https://www.youtube.com/embed/YouTubeID"/><param name="quality" value="high"/> </object> </div> 
0
source

Source: https://habr.com/ru/post/1333895/


All Articles