Results 1 to 7 of 7

Thread: Ultimate Fade--in Slideshow link issues

  1. #1
    Join Date
    Oct 2008
    Posts
    12
    Thanks
    4
    Thanked 0 Times in 0 Posts

    Default Ultimate Fade--in Slideshow link issues

    1) Script Title:
    Ultimate Fade-in Slideshow
    2) Script URL (on DD):
    http://www.dynamicdrive.com/dynamici...nslideshow.htm
    3) Describe problem:

    I am having problems getting links to show in Internet Explorer. It is showing up fine in Firefox and Safari but IE doesn't register any kind of link associated with any image....

    Can you help?


  2. #2
    Join Date
    Oct 2008
    Posts
    12
    Thanks
    4
    Thanked 0 Times in 0 Posts

    Default Code snippet -- I have a total of 10 fade-in slideshows on this page

    /***********************************************
    * Ultimate Fade-In Slideshow (v1.51): © Dynamic Drive (http://www.dynamicdrive.com)
    * This notice MUST stay intact for legal use
    * Visit http://www.dynamicdrive.com/ for this script and 100s more.
    ***********************************************/

    var fadeimages=new Array()
    //SET IMAGE PATHS. Extend or contract array as needed
    fadeimages[0]=["banners/bannerz1.jpg", "http://www.cssdrive.com", ""] //plain image syntax
    fadeimages[1]=["banners/bannerz3.jpg", "#", ""] //image with link syntax
    fadeimages[2]=["banners/bannerz5.jpg", "", ""] //image with link and target syntax
    fadeimages[3]=["banners/bannerz5.jpg", "", ""] //image with link and target syntax

    var fadeimages2=new Array() //2nd array set example. Remove or add more sets as needed.
    //SET IMAGE PATHS. Extend or contract array as needed
    fadeimages2[0]=["banners/bannerz2.jpg", "", ""] //plain image syntax
    fadeimages2[1]=["banners/bannerz4.jpg", "", ""] //image with link syntax
    fadeimages2[2]=["banners/bannerz6.jpg", "", ""] //image with link and target syntax

    var fadeimages3=new Array()
    //SET IMAGE PATHS. Extend or contract array as needed
    fadeimages3[0]=["banners/bannerz3.jpg", "", ""] //plain image syntax
    fadeimages3[1]=["banners/bannerz5.jpg", "", ""] //image with link syntax
    fadeimages3[2]=["banners/bannerz7.jpg", "", ""] //image with link and target syntax

    var fadeimages4=new Array() //2nd array set example. Remove or add more sets as needed.
    //SET IMAGE PATHS. Extend or contract array as needed
    fadeimages4[0]=["banners/bannerz4.jpg", "", ""] //plain image syntax
    fadeimages4[1]=["banners/bannerz6.jpg", "", ""] //image with link syntax
    fadeimages4[2]=["banners/bannerz8.jpg", "", ""] //image with link and target syntax

    var fadeimages5=new Array()
    //SET IMAGE PATHS. Extend or contract array as needed
    fadeimages5[0]=["banners/bannerz5.jpg", "", ""] //plain image syntax
    fadeimages5[1]=["banners/bannerz7.jpg", "", ""] //image with link syntax
    fadeimages5[2]=["banners/bannerz1.jpg", "", ""] //image with link and target syntax
    Last edited by jkanko; 12-05-2008 at 05:26 PM.

  3. #3
    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

    Sounds like you have the on page call for the script wrapped in a link tag, ex:

    Code:
    <a href="whatever.htm"><script type="text/javascript">
    new fadeshow(fadeimages, 140, 225, 0, 3000, 1, "R")
    </script>
    </a>
    That'll confuse the heck out of IE. But there are many possibilities. If you want more help:

    Please post a link to the page on your site that contains the problematic code so we can check it out.
    - John
    ________________________

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

  4. The Following User Says Thank You to jscheuer1 For This Useful Post:

    jkanko (12-03-2008)

  5. #4
    Join Date
    Oct 2008
    Posts
    12
    Thanks
    4
    Thanked 0 Times in 0 Posts

    Default Yes I would like more help

    #

    Is the site where I am using the slideshow.

    thanks!
    Last edited by jkanko; 12-05-2008 at 05:26 PM.

  6. #5
    Join Date
    Oct 2008
    Posts
    12
    Thanks
    4
    Thanked 0 Times in 0 Posts

    Default I don't however

    I don't however have them in an a tag:

    <body>
    <div id="outer2">

    <div id="leftest">

    <script type="text/javascript">
    //new fadeshow(IMAGES_ARRAY_NAME, slideshow_width, slideshow_height, borderwidth, delay, pause (0=no, 1=yes), optionalRandomOrder)
    new fadeshow(fadeimages, 125, 125, 0, 5000, 1, "R")


    </script>
    </br>
    <script type="text/javascript">
    //new fadeshow(IMAGES_ARRAY_NAME, slideshow_width, slideshow_height, borderwidth, delay, pause (0=no, 1=yes), optionalRandomOrder)

    new fadeshow(fadeimages2, 125, 125, 0, 5000, 0)

    </script>

  7. #6
    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

    In your stylesheet, remove the highlighted:

    Code:
    #leftest {
    	position: absolute;
    	top: 60px;
    	left: 0;
    	float: left;
    	z-index: -999999999;
    }
    
    #rightest {
    	position: absolute;
    	top: 60px;
    	right: 0;
    	float: right;
    	z-index: -999999999;
    }
    - John
    ________________________

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

  8. The Following User Says Thank You to jscheuer1 For This Useful Post:

    jkanko (12-03-2008)

  9. #7
    Join Date
    Oct 2008
    Posts
    12
    Thanks
    4
    Thanked 0 Times in 0 Posts

    Talking that was it

    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
  •