I have flash like a background on my page and all content on page is in the html tags witch is over that flash, and that works very nice. A cover div for that flash have a fixed position (position:fixed;) in style, that is important for scrolling feature. My problem is in following when I try to include additional page, in iframe on the center of current page, and that new page containing some flash object, that object is not not visible in iframe, its here but its above the fixed flash object, if I remove (position:fixed;) from style, it is visible, but my scrolling feature not work as before. What css style could solve the problem?
+2
A:
Have you tried adding
<param name="wmode" value="opaque">
to the <object>
tag of the flash element you can't see? That may help.
DanSingerman
2009-03-16 12:13:04
It's the same :(
vaske
2009-03-16 17:49:34
also wmode="opaque" to the <embed> as an attribute
vsync
2009-09-15 13:51:21