I was looking at the docs of this slider document
http://www.slidesjs.com/#docs
and i can’t seem to find how to display 3 items at a slide e.g if I have
a $data object and did a php foreach loop like e.g
foreach($data as $item){
//echo out ul li to display image of the data
}
but if i do that, it only displays the 1 item at a slide..in a static html version..
there are 3 batch of ul li that displays 3 images at each slide e.g
<ul>
<li></li>
</ul>
<ul>
<li></li>
</ul>
<ul>
<li></li>
</ul>
if am gonna include 3 batch of ul and li inside the foreach loop, it’ll just produce redundant data
It will work fine