Log in

View Full Version : Ultimate Fade--in Slideshow link issues



jkanko
12-01-2008, 05:53 PM
1) Script Title:
Ultimate Fade-in Slideshow
2) Script URL (on DD):
http://www.dynamicdrive.com/dynamicindex14/fadeinslideshow.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?

:mad:

jkanko
12-01-2008, 05:55 PM
/***********************************************
* 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

jscheuer1
12-01-2008, 06:19 PM
Sounds like you have the on page call for the script wrapped in a link tag, ex:


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

jkanko
12-03-2008, 05:11 PM
#

Is the site where I am using the slideshow.

thanks!

jkanko
12-03-2008, 05:12 PM
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>

jscheuer1
12-03-2008, 05:24 PM
In your stylesheet, remove the highlighted:


#leftest {
position: absolute;
top: 60px;
left: 0;
float: left;
z-index: -999999999;
}

#rightest {
position: absolute;
top: 60px;
right: 0;
float: right;
z-index: -999999999;
}

jkanko
12-03-2008, 05:34 PM
Thanks!!!
:D