Results 1 to 5 of 5

Thread: Ultimate Slideshow - One slideshow option

  1. #1
    Join Date
    Dec 2008
    Posts
    3
    Thanks
    1
    Thanked 0 Times in 0 Posts

    Smile Ultimate Slideshow - One slideshow option

    1) Script Title: Ultimate Fade-in slideshow (v1.51)

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

    3) Describe problem: Is there a way to disable or delete entirely the second slideshow and only have one? I only put images in the first slideshow and it looks okay in Firefox but when I view it in IE, the red X appears in place of the second slideshow. Thanks very much to whoever can help!

  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

    Get rid of (from the main script):

    Code:
    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]=["photo1.jpg", "", ""] //plain image syntax
    fadeimages2[1]=["photo2.jpg", "http://www.cssdrive.com", ""] //image with link syntax
    fadeimages2[2]=["photo3.jpg", "http://www.javascriptkit.com", "_new"] //image with link and target syntax
    And get rid of (from the small in page call script):

    Code:
    new fadeshow(fadeimages2, 140, 225, 0, 3000, 0)
    - John
    ________________________

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

  3. #3
    Join Date
    Dec 2008
    Posts
    3
    Thanks
    1
    Thanked 0 Times in 0 Posts

    Default

    Thanks for the response!

    I've already done this but the red X still appears in IE. Here is the link to the website.

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

    This has nothing to do with the slide show. You have an orphan image tag (probably left over from some previous version of the page, or used for layout purposes, and left there by mistake):

    Code:
      <area shape="rect" coords="13,36,488,108" href="index.html" alt="" />
    </map></div>
      </div>
    
    <div id="content"><script type="text/javascript">
    //new fadeshow(IMAGES_ARRAY_NAME, slideshow_width, slideshow_height, borderwidth, delay, pause (0=no, 1=yes), optionalRandomOrder)
    new fadeshow(fadeimages, 475, 378, 0, 3000, 1, "R")
     
    </script>
      <img name="" src="" width="475" height="352" alt="" /></div>
    
    <div id="sidebar">
      <div align="right" class="style6 style7">
        <p class="style4">&nbsp;</p>
        <p class="style . . .
    Get rid of it.
    - John
    ________________________

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

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

    slick_ray (12-07-2008)

  6. #5
    Join Date
    Dec 2008
    Posts
    3
    Thanks
    1
    Thanked 0 Times in 0 Posts

    Default

    Ahh! That's why! Thank you so much!

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
  •