2

I'm building a slideshow from http://bxslider.com/, but i want to remove the pager under the slide. Can anyone help me?

  • 2
    Can 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 Answers1

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