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?
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?
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);
}
});
I added a background colour to the thumbnail navigation buttons and they are now visible all the time but with the same opacity's.