Please post a link to your site. This would actually be caused by some CSS in your theme, not in the plugin.
Sure here is a sample page: http://www.stephenburridge.com/lisa-ray-3/
I think it is the theme actually, just struggling to find the code.
Thanks
I think it’s in /wp-content/themes/photolux_v120/js/main.js, line 508. Try changing this:
//set the hover animation of the images within anchors
$('a img').not('#footer a img, .nohover').hover(function(){
$(this).stop().animate({opacity:0.9}, 300);
},function(){
$(this).stop().animate({opacity:1}, 300);
});
To this:
//set the hover animation of the images within anchors
$('a img').not('#footer a img, .nohover, .psp-active').hover(function(){
$(this).stop().animate({opacity:0.9}, 300);
},function(){
$(this).stop().animate({opacity:1}, 300);
});
Legend! Thank you. Css I’m fine with, JS gets me everytime.
Thanks again.