Forum Replies Created

Viewing 1 post (of 1 total)
  • Author
    Posts
  • in reply to: Gallery Hover Selected State #1146918

    Figured out #1. This jqeury adds the “first_thumb” class to the hovered element.

    <script>
    jQuery(document).ready(function($) {

    jQuery(“.avia-gallery-thumb a”).hover(function(){
    jQuery(‘.avia-gallery-thumb a.first_thumb’).not(this).removeClass(‘first_thumb’);
    jQuery(this).addClass(‘first_thumb’);
    })
    });
    </script>

Viewing 1 post (of 1 total)