AnythingSlider - How to make first slide not to be taken on count on numbered controls

308 Views Asked by At

I'm creating a slider with AnythingSlider and I need the first slide not to be considered in navigation: I need the numbers to start counting from 1 from the second slide on. Does anyone know how to achieve this?

1

There are 1 best solutions below

2
On

Just use the navigationFormatter option as follows:

$('#slider').anythingSlider({
  navigationFormatter : function(index, panel){
    return index + 1;
  }
});

Then if you are using the latest version from github, you could hide the first tab using this css:

ul.thumbNav li.first { display: none; }