In my site i've used an iframe with flash content(not a you tube video)
<iframe id="flvIframe" width="934" height="750" frameborder="0" src="XXXflashplayer" style="z-index: 1;"></iframe>
i have navigation bar in my site when we hover on a single nav element we'll display a
div#NavInfo
with some options with an .Below the navigation bar i had a div where i display an iframe with flash content.
I want to place the nav elements div#NavInfo above an iframe#flvIframe
(with flash content).
I have used z-index position: absolute ,position relative ....etc.
z-index:-1
to flash and give z-index:100
to div
position: absolute;
top: ...px;
left: ...px;
it works fine only in google chrome but not working in all other browsers
I have searched a lot but couldn't get fixed please advise..