Browser issue  Video Embed - Edit post popup overlay bug

This is Chrome not respecting wmode and is a browser issue.

Try adding type="application/x-shockwave-flash" to your media code as follows, in the object and embed tags.

Code:
<object width="640" height="385" data="http://www.youtube.com/v/{$id}&amp;fs=1" type="application/x-shockwave-flash">
 <param name="movie" value="http://www.youtube.com/v/{$id}&amp;fs=1" />
 <param name="allowFullScreen" value="true" />
 <param name="wmode" value="transparent" />
 <embed src="http://www.youtube.com/v/{$id}&amp;fs=1" width="640" height="385" type="application/x-shockwave-flash" allowfullscreen="true" wmode="transparent" />
</object>
 
Top Bottom