English  Italiano  Français  Español  Dansk  Deutsch  Deutsch  Português  Suomi 
Video Lightbox

Lightbox video youtube doesn't overlap flash

Jan 15, 2014

Q: I have added a video to my page using videolightbox. The video seems to interfere with the slideshow - is there somewhere I can add a z-index to ensure the video floats on top my flash?

A: You should add "opaque" parameter for <object> and <embed> tags.

See, how you should install flash on your pages.

<object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000"
codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,29,0"
height="150" width="800">
<param name="movie" value="2008 flash.swf">
<param name="quality" value="high">
<param name="wmode" value="opaque">
<embed src="flash_files/2008%2520flash.swf" quality="high" wmode="opaque"
pluginspage="http://www.macromedia.com/go/getflashplayer"
type="application/x-shockwave-flash" height="150" width="800">
</object>


Video lightbox will overlap flash correctly in that case.

Related