On February 5, 2014 at 9:50 pm
Open up triton.js from the “js” folder and replace this:
//Layout1 Animations
jQuery('.lay1 .post .imgwrap').css({'opacity':'0.7'});
jQuery('.lay1 .post ').hover(function(){
jQuery(this).find('.imgwrap').stop().animate({'opacity':'1'}, 300);
}, function(){
jQuery(this).find('.imgwrap').stop().animate({'opacity':'0.7'}, 300);
});
with this:
//Layout1 Animations
jQuery('.lay1 .post .imgwrap').css({'opacity':'1'});
jQuery('.lay1 .post ').hover(function(){
jQuery(this).find('.imgwrap').stop().animate({'opacity':'0.7'}, 300);
}, function(){
jQuery(this).find('.imgwrap').stop().animate({'opacity':'1'}, 300);
});