Reputation: 1
Can anyone tell me how to remove the numbers "12345" in the upper right hand corner of this Nivo Slider slide show:
http://www.sabatinossliceofnewyork.com/nivo.php
Upvotes: 0
Views: 2812
Reputation: 676
Add the following option when initialising the slider:
$('element').nivoSlider({
...
controlNav : false,
...
});
Upvotes: 0