Hello,
I am still looking for an answer to this.
According to the author,
for a single Item Slider, the current item is defined by "currentItem",
With all "#nav" items set to opcaity 0.5;
After having defined a simple class = "active_X" (opacity:1)
I tried an if/else statement -
i.e.
if (currentItem == 1) {
$('#nav1').addClass('active_X')
}
else {
$('#nav1').removeClass('active_X')
}
But it does not work.
Can some one please have a look at this..