galleria thumbnail nav always display

2.1k views Asked by At

I'm trying to get the arrows either side of the thumbnail navigation to display all the time, but at the opacity stated (disabled = 0.2) and enabled (0.8). I have tried messing with the galleria classic css but that didn't work..

any ideas?

2

There are 2 answers

0
Tara Irvine On BEST ANSWER

I added a background colour to the thumbnail navigation buttons and they are now visible all the time but with the same opacity's.

1
Jeff Sterup On

You can unbind the hover functionality and set the opacity of the nav elements to 1.

$('#galleria').galleria({
    extend: function() {
        this.$('image-nav-left, image-nav-right').unbind('hover');
        this.$('image-nav-left, image-nav-right').animate({opacity: 1}, 100);
    }
});