No matter what values of z-index I try, I cannot overlay my html div (or img) element on top of this flash animation (see top left corner):
http://www.resident.co.il/aspx/places.aspx?t=4&a=1
Any ideas ?
No matter what values of z-index I try, I cannot overlay my html div (or img) element on top of this flash animation (see top left corner):
http://www.resident.co.il/aspx/places.aspx?t=4&a=1
Any ideas ?
Add this param:
<param name="wmode" value="transparent"/>
And if you're using an embed tag add the attribute wmode="transparent"
See this question. The trick is to add the param wmode
:
<param name="wmode" value="opaque" />
Only add transparency if you absolutely need it, as it is more processor-intensive:
<param name="wmode" value="transparent" />
Also see this demonstration.