Results 1 to 4 of 4

Thread: Slideshow NN FF conflicts with CSS?

  1. #1
    Join Date
    Jun 2005
    Posts
    3
    Thanks
    0
    Thanked 0 Times in 0 Posts

    Default Slideshow NN FF conflicts with CSS?

    Using Slide Show Script
    http://www.dynamicdrive.com/dynamici...dhtmlslide.htm

    Hi all.
    My addition of the Slideshow script works excellent in IE, but not in NN, Firefox or Opera. I suspect that the CSS browser detect is causing a conflict. There is not another dhtml script on the page.
    Any suggestions?
    www.tabormountain.com/photos.html

    Virginia
    Last edited by VirginiaO; 06-09-2005 at 12:25 AM.

  2. #2
    Join Date
    Mar 2005
    Location
    SE PA USA
    Posts
    30,495
    Thanks
    82
    Thanked 3,449 Times in 3,410 Posts
    Blog Entries
    12

    Default

    It is this:
    Code:
    #extraDiv6{
    position:absolute;
    top:600px;
    left:370px;
    width:210px;
    height:50px
    }
    in TaborNN.css - it is invisibly covering the 'Next' control for the slideshow so that it cannot be clicked. Removing it from the style sheet or setting its z-index to -1 will fix the problem.

    ex:
    Code:
    #extraDiv6{
    position:absolute;
    top:600px;
    left:370px;
    width:210px;
    height:50px;
    z-index:-1
    }
    - John
    ________________________

    Show Additional Thanks: International Rescue Committee - Donate or: The Ocean Conservancy - Donate or: PayPal - Donate

  3. #3
    Join Date
    Jun 2005
    Posts
    3
    Thanks
    0
    Thanked 0 Times in 0 Posts

    Default

    Wow. You rock. Thanks so much! I'll go give it a try.

    Virginia

  4. #4
    Join Date
    Jun 2005
    Posts
    3
    Thanks
    0
    Thanked 0 Times in 0 Posts

    Default

    And you're offically my hero. I would never have tracked that down. Works awesome now.
    Thanks!

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
  •