Results 1 to 3 of 3

Thread: Ultimate Slideshow stays on top of popup

  1. #1
    Join Date
    Sep 2011
    Posts
    24
    Thanks
    6
    Thanked 0 Times in 0 Posts

    Default Ultimate Slideshow stays on top of popup

    1) Script Title:
    Ultimate Fade-in slideshow

    2) Script URL (on DD):
    http://www.dynamicdrive.com/dynamici...nslideshow.htm


    3) Describe problem:
    I have the slideshow working well on a number of pages. I'm attempting to add a popup login window (javascript) and when it popsup, the slideshow stays on top.

    my page: http://www.affiliateroi.net/advertisers.html

    if you click on the "login" window at the bottom/left, you'll see the issue.

    Please forgive my horrific code.

    - Michael

  2. #2
    Join Date
    Aug 2004
    Posts
    10,143
    Thanks
    3
    Thanked 1,008 Times in 993 Posts
    Blog Entries
    16

    Default

    Try giving the .tbox CSS class a high z-index value, one that's higher than that for the slideshow container, at least:

    Code:
    .tbox {
        display: none;
        padding: 14px 17px;
        position: absolute;
        z-index: 1000000;
    }
    DD Admin

  3. #3
    Join Date
    Sep 2011
    Posts
    24
    Thanks
    6
    Thanked 0 Times in 0 Posts

    Default

    That works perfectly! Thank you. I ended up using a DHTML login popup instead, but it suffered the same problem ... and the Z index fixed it!

    Thanks so much.

    - Michael

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
  •