zurb / orbit

454 stars 96 forks source link

text content on every slides. #91

Open photoworks opened 12 years ago

photoworks commented 12 years ago

Fist of all, thanks for this wonderful plugin.

I am working to add the plugin to my website. I have already set up the several galleries. However, as i am trying to set up my home page, I would like to know if it is possible to add text content not only on the first slide, but on every slides. and how to do it.

the code in the html sets up the first slide. as follows :


however, if i try to add the code  to the following slides, it  goes back to the first slide again.

the code i  set up is as follows, but i guess it is not correct to add content on each slides : 

<div id="featured"> 
            <div class="content" style="">
                <h1>content on slide 1.</h1>
                <h3>Highlight me...I'm text.</h3>
            </div>
    <a href=""><img src="dummy-images/overflow.jpg" /></a>
<div class="content" style="">
        <h1>content on slide 2</h1>
        <h3>Highlight me...I'm text.</h3>
    </div>

    <img src="dummy-images/captions.jpg" data-caption="#htmlCaption" />
    <img src="dummy-images/features.jpg"  />
</div>


So my question what do i need to change in order to get text content on each slides of the Image slider.

Thanks in advance.