I have a CSS menu that renders behind an embedded YouTube video. How can I display it over the video?

hint: z-index (CSS) and the wmode=transparent parameter on the <object> don’t work for embedded videos

Put each one in their own div. z-index will now work relative to the parent container.

<div id="wrapper" style="z-index: 0;">
<div id="menu" style="z-index: 10;">Menu Contents</div>
<div id="movie" style="z-index: 0;">Movie Object</div>
</div>

Good Luck!

Comments are closed.