Hey, I am in need of a script that overlays over a Shockwave game. I want to have a popup on my site, but each one I've tried here just go beneath the Shockwave game.
Does anybody have any ideas? Thanks!
Hey, I am in need of a script that overlays over a Shockwave game. I want to have a popup on my site, but each one I've tried here just go beneath the Shockwave game.
Does anybody have any ideas? Thanks!
Script? Use CSS. Just set the div's z-index to something higher than the shockwave's.
For example:
HTML Code:<div id="1"></div> <div id="2"></div>The div "1" will show up on topCode:#1 { z-index:10; } #2 { z-index:1; }
Bookmarks