Problem overcap:
on this website there is a DHTML dropdown menu (ul style), and right below some of the menu is a flash video, and the issue is getting the dropdowns to show and STAY over the flash. I used WMODE and that works fine in most browsers (except IE for mac), so tried making a dive around the flash and z-indexing it and this also works but only when positioned ABSOLUTE! however, when i wrapped it with a relative div to keep it in place, but then z-index doesnt work with relative on IE5.2.
so i need some idea to somehow make this wrapper absolute positioned but then something to hold it in place without overriding it.
here the css
on this website there is a DHTML dropdown menu (ul style), and right below some of the menu is a flash video, and the issue is getting the dropdowns to show and STAY over the flash. I used WMODE and that works fine in most browsers (except IE for mac), so tried making a dive around the flash and z-indexing it and this also works but only when positioned ABSOLUTE! however, when i wrapped it with a relative div to keep it in place, but then z-index doesnt work with relative on IE5.2.
so i need some idea to somehow make this wrapper absolute positioned but then something to hold it in place without overriding it.
here the css
Code:
#flashdivcontain
{
width:400px;
height:200;
top:10px;
left:10px;
position:relative;
}
#flashcontain {
border: 0px solid #333;
width: 200px;
height:200;
position: absolute !important;
top: 45px;
left: 50px;
z-index: 2 !important;
}
Comment