Problem:
YouTube Video is covering up the menu bar. It's due to the flash play that has the top priority.
Solutions:
Add the wmode=
opaque
parameter to the embed code.
< object width="460" height="307" VIEWASTEXT>
< param name="movie" value="src="YOUR_YOUTUBE_URL_HERE"">
< param name="allowFullScreen" value="true">
< param name="allowscriptaccess" value="always">
< param name="wmode" value="opaque" />
< embed src="YOUR_YOUTUBE_URL_HERE"
type="application/x-shockwave-flash"
allowscriptaccess="always"
allowfullscreen="true"
width="460"
height="307"
wmode="opaque">
< /embed>
< /object>
Thank for the help.
ReplyDelete