0

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?

Tara Irvine
  • 819
  • 3
  • 22
  • 42

2 Answers2

2

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);
    }
});
Vitalii Zurian
  • 17,858
  • 4
  • 64
  • 81
Jeff Sterup
  • 101
  • 4
1

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

Tara Irvine
  • 819
  • 3
  • 22
  • 42