jquery-rf-slideshow icon indicating copy to clipboard operation
jquery-rf-slideshow copied to clipboard

Question: Only the first slide acknowledges the width & height properties

Open digitalformula opened this issue 11 years ago • 0 comments

This is my JS (very simple):

$('#slideshow').slideshow({ duration: 600, delay: 5000, transition: 'push(left)', autoPlay: true, selector: 'div.slide' });

And here's the markup:

<div id="slideshow" style="width: 940px; height: 300px;"> <div class="slide">Slide 1.</div> <div class="slide">Slide 2.</div> <div class="slide">Slide 3.</div> </div>

The first slide is fine, but all others only seem to have a width of maybe 100px, maximum. I've tried using very little text and a lot of text (e.g. a Lorem Ipsum paragraph).

What could be causing this?

Thanks! slider

digitalformula avatar Mar 10 '13 13:03 digitalformula