I'm building a slideshow from http://bxslider.com/, but i want to remove the pager under the slide. Can anyone help me?
Asked
Active
Viewed 2,188 times
2
-
2Can you post sample code and/or a fiddle? – Bic Jan 28 '14 at 22:52
-
Possible duplicate of [Using bxslider, is there some way to remove or hide the bullets at the bottom of the slide?](http://stackoverflow.com/questions/15255672/using-bxslider-is-there-some-way-to-remove-or-hide-the-bullets-at-the-bottom-of) – Gunaseelan Nov 27 '15 at 11:29
1 Answers
2
The options list a pager option. It's set to true by default, but you can set it to false.
$('.bxslider').bxSlider({
pager: false, // disables pager
mode: 'fade',
captions: true
});

Bic
- 3,141
- 18
- 29