div tag on top of flash
http://www.starcraft-source.com/tv/#stream-35
The orange box and navigation is showing up behind the flash on the main site... how can I fix this?
I experience the issue in Google chrome
-- I've added that parameter, it doesn't seem to have any effect on this one: http://www.st开发者_开发百科arcraft-source.com/tv/#stream-27
Add this parameter to your Flash.
<param NAME="wmode" VALUE="transparent">
You should add wmode to both object
(IE) and embed
(Firefox, Webkit, etc) tags:
<object width="..." height="..." ...>
...
<param name="wmode" value="transparent">
<embed width="..." height="..." wmode="transparent" ...></embed>
</object>
精彩评论