Spry slider(jquery) in Dreamweaver

Good morning wise ones,
I have put a spry slider in my design, works fine, except for one thing, it has a blank black space for approx 2 sec before the slider starts again. What do I need to change in the jquery to make it keep scrolling through, i.e. make it perpetual, is that possible?
Thanks in advance,
Michell

Hi,
I’m not too sure what you mean.
Could you post a link or some sample code?

Here is the link:
www.foundunderground.net
Thanks!

Hi,

On line 63 (approx) of your script you have this:

<ul id="ImageSlideShow">
  <li><a href="http://www.foundunderground.net/images/slider/19-slider.jpg"><img src="images/slider/19-slider.jpg" alt="cool stylish urban footwear" /></a></li>
  <li><a href="http://www.foundunderground.net/images/slider/3-slider.jpg"><img src="images/slider/3-slider.jpg" alt="looks we like" /></a></li>
  <li><a href="http://www.foundunderground.net/images/slider/40-slider.jpg"><img src="images/slider/40-slider.jpg" alt="heels sandals boots red black groovy urban" /></a></li>
  <li><a href="http://www.foundunderground.net/images/slider/9-slider.jpg"><img src="images/slider/9-slider.jpg" alt="stylin outfit dress belted sandals" /></a></li>
  <li><a href="http://www.foundunderground.net/images/preferredpics source/lookswelike4.jpg"><img src="images/preferredpics source/lookswelike4.jpg" alt="you look so cool where did you get that" /></a></li>
  <li><a href="http://www.foundunderground.net/images/preferredpics source/lookswelike3.jpg"><img src="images/preferredpics source/lookswelike3.jpg" alt="you look so cool where did you get that" /></a></li>
  <li>
  </li>
</ul>

Notice the final empty <li> tag? This is causing your blank black space.
If you remove it, so that you then have:

<ul id="ImageSlideShow">
  <li><a href="http://www.foundunderground.net/images/slider/19-slider.jpg"><img src="images/slider/19-slider.jpg" alt="cool stylish urban footwear" /></a></li>
  <li><a href="http://www.foundunderground.net/images/slider/3-slider.jpg"><img src="images/slider/3-slider.jpg" alt="looks we like" /></a></li>
  <li><a href="http://www.foundunderground.net/images/slider/40-slider.jpg"><img src="images/slider/40-slider.jpg" alt="heels sandals boots red black groovy urban" /></a></li>
  <li><a href="http://www.foundunderground.net/images/slider/9-slider.jpg"><img src="images/slider/9-slider.jpg" alt="stylin outfit dress belted sandals" /></a></li>
  <li><a href="http://www.foundunderground.net/images/preferredpics source/lookswelike4.jpg"><img src="images/preferredpics source/lookswelike4.jpg" alt="you look so cool where did you get that" /></a></li>
  <li><a href="http://www.foundunderground.net/images/preferredpics source/lookswelike3.jpg"><img src="images/preferredpics source/lookswelike3.jpg" alt="you look so cool where did you get that" /></a></li>
</ul>

it should disappear.

HTH

you are awesome! Thanks so much!

Oh, it worked perfectly!
M.

Happy to help :slight_smile: