dyna1118
dyna1118

Reputation: 1

Remove slide number upp letf corner of slideshow in Nivo Slider

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

Answers (2)

Ste77
Ste77

Reputation: 676

Add the following option when initialising the slider:

$('element').nivoSlider({
    ...
    controlNav  : false,
    ...
});

Upvotes: 0

ajcs
ajcs

Reputation: 93

Add the following css rule:

.nivo-controlNav {
    display: none;
}

Upvotes: 3

Related Questions