Working on the demonstration site for the company meeting these past few days I ran into a hang up. When I embedded the flash banner in the page, it worked fine. But the CSS menu I had above it, was now hidden behind it. So while the menu still worked, you couldn’t see it enough to use it.
Adding this line of code to the html fixed it in IE 7.
param name="wmode" value="transparent"
The problem stems from DHTML objects always displaying on top of XML objects. Or something like that.
In case I forget.
There is a much more in depth and complicated solution I ran across for other browsers that has to do with using an iframe.
I didn’t need it to work anywhere but IE 7.
Comments are closed.