Results 1 to 2 of 2

Thread: Image / iFrame Overlay

  1. #1
    Join Date
    Jun 2009
    Posts
    4
    Thanks
    0
    Thanked 0 Times in 0 Posts

    Default Image / iFrame Overlay

    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!

  2. #2
    Join Date
    Jun 2009
    Location
    Laputa
    Posts
    43
    Thanks
    0
    Thanked 1 Time in 1 Post

    Default

    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>
    Code:
    #1 {
    z-index:10;
    }
    
    #2 {
    z-index:1;
    }
    The div "1" will show up on top

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •