I have a YouTube video embedded in my site (in an iframe) and I also have a menu that is triggered by jquery to pop up over the page. This works fine in Chrome, but in FireFox the iframe appears over the top of the menu.
I tried setting the iframes z-index to less then the pop up boxes, eg:
iframe {
position: absolute;
z-index: 10;
}
#popup {
position: absolute;
z-index: 99;
}
but that didnt change anything - the iframe still appears over the pop up box.
Would anyone know a way to deal with this?