Right now it pushes any number of slides. I want it to push 8 slides at a time only (back or forth): http://qwikad.com/test.php Hope it makes sense. Shoot me a question if you want me to clarify more. The javascript in question: http://qwikad.com/test.txt
Not sure why changing the background color didnt work, the js plugin doesn't set the color property it sets the class. your option is to set a new class to override the default one var mySwiper = new Swiper('.swiper-container',{ pagination: '.pagination', paginationClickable: true, slidesPerView: 8, paginationVisibleClass: 'gray-bullets' }) .gray-bullets { background: #696969; }
I think you misunderstood me. I know how to change their color. What I want is I want them to be gone. Totally gone. You see, those red ones push the slider one slide at a time. I don't need it. I only want to push 8 slides at a time.
i guess you cant do that (by looking at the parameters available http://www.idangero.us/sliders/swiper/api.php ), you have to use Nested Swipers http://www.idangero.us/sliders/swiper/demos.php see Nested Swipers demo, where you put a slider of 8 slides into one slide parent!