Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

In my application, I use PrimeFaces's and to organize the content. In one of the pages, I embed a YouTube video using component. Unfortunately, as you can see from the below picture, my sub-menus were hidden by the flash player.

Hidden sub-menus

To be more precise, I put inside the center layout unit. The top menu bar is on its own, I don't have top layout unit.

Since I have little experience in CSS, I'd be very grateful if you could show me how I can solve this problem.

Best regards,

share|improve this question

1 Answer

up vote 2 down vote accepted

This is a known issue caused by the Flash player and actually not directly related to JSF. You basically need to set wmode parameter of the Flash player to opaque. You can do that by embedding it as <f:param> in the <p:media>.

<p:media ...>
    <f:param name="wmode" value="opaque" />
</p:media>

Another wmode value which can also possibly solve this problem is transparent.

<p:media ...>
    <f:param name="wmode" value="transparent" />
</p:media>

Try the one and the other in as much as possible different browsers to see which fixes it the best in your particular case.

share|improve this answer
Thanks a lot! I tried opaque in IE, Firefox and Chrome and it worked perfectly :D. – Mr.J4mes Jun 4 '12 at 11:15

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.