views:

20

answers:

1

Hello,

I am implementing the looped slider plugin (see: http://nathansearles.com/loopedslider/example-4.html) on a website, and need to add captions to the images (that just appear as text beneath their corresponding images).

Could anyone point me in a direction of where I could start? There is already so much jquery going on in this plugin...

Thank you very much.

+1  A: 

If you look at example-3, you can see the author added text below the image using a paragraph inside the list item, like this:

<ul class="slides">
 <li><img src="image-01.jpg" width="500" height="375" alt="First Image" />
  <p>Add a caption here</p>
 </li>
 <li><img src="image-02.jpg" width="500" height="375" alt="Second Image" /></li>
 <li><img src="image-03.jpg" width="500" height="375" alt="Third Image" /></li>
 <li><img src="image-04.jpg" width="500" height="375" alt="Fourth Image" /></li>
</ul>
fudgey
You're a whiz! I couldn't see the demo-proper - but that's what I was looking for. Thank you again, young Fudgey!
heathwaller