Closed (fixed)
Project:
Embedded Media Field
Version:
5.x-1.x-dev
Component:
Providers
Priority:
Normal
Category:
Bug report
Assigned:
Reporter:
Created:
27 Nov 2007 at 18:01 UTC
Updated:
23 Dec 2008 at 23:21 UTC
This is around line 74. Youtube is already correct.
The line with param name="wmode" should be changed to:
<param name="wmode" value="transparent" />
Comments
Comment #1
SolomonGifford commentedoh, that was in the google.inc file.
Comment #2
alex ua commentedCan you explain what the problem is with the current file, i.e. why it needs to be changed?
Comment #3
SolomonGifford commentedSure. If a drop down menu or other floating div floats over the media it will not display. For yahoo vids this isn't a problem because the wmode is set to transparent. Google's wmode is not, thus the problem.
Comment #4
aaron commentedfixed for google. thanks for finding this.
Comment #5
(not verified) commentedAutomatically closed -- issue fixed for two weeks with no activity.
Comment #6
mennonot commentedI'm having this same problem with a Vimeo embedded video. I tried adding this line:
$output .= '<param name="wmode" value="transparent" />';at line 157 in contrib/video_cck/providers/vimeo.inc, but it doesn't seem to have fixed the problem. You can see the first drop down menu falling behind the video player on the front page of this site:
http://www.bmbw.com
Comment #7
mennonot commentedThe code in #8 worked when I inserted it into vimeo.inc at line 156 instead of line 157:
$output .= '<param name="wmode" value="transparent" />';I don't have an easy way to roll a patch at the moment, but one should be created using this code for contrib/video_cck/providers/vimeo.inc
Comment #8
alex ua commentedCommitted a fixed version.