PDA

View Full Version : Image / iFrame Overlay


Diablosblizz
06-21-2009, 06:24 PM
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!

C55inator
06-28-2009, 05:48 PM
Script? Use CSS. Just set the div's z-index to something higher than the shockwave's.

For example:
<div id="1"></div>
<div id="2"></div>

#1 {
z-index:10;
}

#2 {
z-index:1;
}


The div "1" will show up on top