I'm stuck on what appears to be a CSS/z-index conflict with the YouTube player. In Firefox 3 under Windows XP, Take a look at this page: http://spokenword.org/program/21396 Click on the Collect button and note that the pop-up <div> appears under the YouTube player. On other browsers the <div> appears on top. It has a z-index value of 999999. I've tried setting the z-index of the <object> element containing the player to a lower value, but that didn't work. Any idea how to get the pop-up to appear over the player?
Css – FF3/Windows CSS z-index problem with YouTube player
cssfirefoxflashyoutubez-index
Related Question
- Css – Targeting only Firefox with CSS
- Html – Maintain the aspect ratio of a div with CSS
- Css – How to center an absolutely positioned element in a div
- Html – How to style a
- Html – Change a HTML5 input’s placeholder color with CSS
- CSS selector for first element with class
- Css – z-index not working with fixed positioning
Best Solution
Try to add the
wmode
parameter to beopaque
like this:(Note that it's included in both a
<param>
tag and awmode
attribute on the<embed>
tag.)