I used a tutorial to create a Carousel slide.
Initially, I defined each item with an image and paragraph like this -
<div class="item">
<img src="http://placehold.it/1200x480" alt="" />
<div class="carousel-caption">
<p>Caption text here</p>
</div>
</div>
It worked perfectly (see jsFiddle demo) .
However, when I simplified it to only include a paragraph like this -
<div class="item">
<div class="carousel-caption">
<p>Caption text here</p>
</div>
</div>
It stopped working (see jsFiddle demo).
Is there a way to make it function with just a paragraph so that the text slides with each switch?