A div containing a swf file with absolute position and another div will contain text in same position. SWF div(first one) has z-index 2 and text div (second div) has z-index 3. Logically div with text content should be top on swf div because of their z-index but in practically it is not working. SWF div always on top in spite of having lower z-index. But I need the text div on top. Any suggestion is much appreciated. Thanks Samir
The flash player plugin is a windowed object. That means it is not a part of the browser canvas, but is drawn by the OS. To make it a part of the canvas, add <param name="wmode" value="opaque"> in the <object> element, and to the <embed> element, add the attribute wmode="opaque". cheers, gary