Browser issue  Possible Bug: Quick Edit and Media

FredC

Well-known member
It seems when i try to edit a post with embedded media, (in this case YouTube) the You Tube media will stay on top of the overlay making edits difficult. The only work around i can find is to cancel the edit and scroll down a bit so the media is above the overlay.. See screenshot..
Capture_04232011_201321.webp
 
There are like a million bug reports of this and everytime it's fixed it keeps coming back :(

Let me guess, Chrome?
 
This is a browser bug due it not respecting wmode.

Ensure your BB Code media embed html has it set.

iFrame version:
Code:
<iframe class="youtube-player" type="text/html" width="640" height="390" src="http://www.youtube.com/embed/{$id}?wmode=opaque" frameborder="0"></iframe>

Standard version:
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" type="application/x-shockwave-flash" allowfullscreen="true" wmode="transparent" width="640" height="385" />
</object>
 
Top Bottom