Axilleas
Member
Posted 11 months ago #
Hello,
I have problem with flash (youtube video) being over the displayed image.
In Opera it is ok, in FF image is visible but flash is over colorbox's border. And in IE9 and Chrome flash is iver image completely.
I tried to wrap flash video with <div style="z-index: 0"> but did not help.
Could you please fix it or le me know how to fix it by myself? Thx
http://wordpress.org/extend/plugins/wp-simple-galleries/
Matthew McConnell
Member
Plugin Author
Posted 11 months ago #
Hey
This is a flash problem.
You need to add/change the 'wmode' parameter to 'transparent',
Below is a swfobject example:
var so = new SWFObject('path/to/flash.swf, '', '100%', '100%', '8', '#FFFFFF');
so.addParam("wmode", "transparent");
so.addVariable('preloader_color', '#FFFFFF');
so.write('id_of_div');