Viewing 4 replies - 1 through 4 (of 4 total)
  • Plugin Contributor Dalton Rooney

    (@daltonrooney)

    Please post a link to your site. This would actually be caused by some CSS in your theme, not in the plugin.

    Thread Starter redsentence

    (@redsentence)

    Sure here is a sample page: https://www.stephenburridge.com/lisa-ray-3/

    I think it is the theme actually, just struggling to find the code.

    Thanks

    Plugin Contributor Dalton Rooney

    (@daltonrooney)

    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);
    });
    Thread Starter redsentence

    (@redsentence)

    Legend! Thank you. Css I’m fine with, JS gets me everytime.

    Thanks again.

Viewing 4 replies - 1 through 4 (of 4 total)
  • The topic ‘[Plugin: Portfolio Slideshow] Opacity Change’ is closed to new replies.