Title: [Plugin: Portfolio Slideshow] Opacity Change
Last modified: August 20, 2016

---

# [Plugin: Portfolio Slideshow] Opacity Change

 *  Resolved [redsentence](https://wordpress.org/support/users/redsentence/)
 * (@redsentence)
 * [13 years, 8 months ago](https://wordpress.org/support/topic/plugin-portfolio-slideshow-opacity-change/)
 * I am trying to remove the small opacity change you get on mouseover when the 
   slideshow images are set to fade. On mouseover is changes from 1 to 0.9, but 
   I want it to stay at 1, any ideas? thanks all.
 * [http://wordpress.org/extend/plugins/portfolio-slideshow/](http://wordpress.org/extend/plugins/portfolio-slideshow/)

Viewing 4 replies - 1 through 4 (of 4 total)

 *  Plugin Contributor [Dalton Rooney](https://wordpress.org/support/users/daltonrooney/)
 * (@daltonrooney)
 * [13 years, 8 months ago](https://wordpress.org/support/topic/plugin-portfolio-slideshow-opacity-change/#post-2996581)
 * 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](https://wordpress.org/support/users/redsentence/)
 * (@redsentence)
 * [13 years, 8 months ago](https://wordpress.org/support/topic/plugin-portfolio-slideshow-opacity-change/#post-2996602)
 * Sure here is a sample page: [http://www.stephenburridge.com/lisa-ray-3/](http://www.stephenburridge.com/lisa-ray-3/)
 * I think it is the theme actually, just struggling to find the code.
 * Thanks
 *  Plugin Contributor [Dalton Rooney](https://wordpress.org/support/users/daltonrooney/)
 * (@daltonrooney)
 * [13 years, 8 months ago](https://wordpress.org/support/topic/plugin-portfolio-slideshow-opacity-change/#post-2996603)
 * 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](https://wordpress.org/support/users/redsentence/)
 * (@redsentence)
 * [13 years, 8 months ago](https://wordpress.org/support/topic/plugin-portfolio-slideshow-opacity-change/#post-2996604)
 * 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.

 * ![](https://s.w.org/plugins/geopattern-icon/portfolio-slideshow_ffffff.svg)
 * [Portfolio Slideshow](https://wordpress.org/plugins/portfolio-slideshow/)
 * [Frequently Asked Questions](https://wordpress.org/plugins/portfolio-slideshow/#faq)
 * [Support Threads](https://wordpress.org/support/plugin/portfolio-slideshow/)
 * [Active Topics](https://wordpress.org/support/plugin/portfolio-slideshow/active/)
 * [Unresolved Topics](https://wordpress.org/support/plugin/portfolio-slideshow/unresolved/)
 * [Reviews](https://wordpress.org/support/plugin/portfolio-slideshow/reviews/)

 * 4 replies
 * 2 participants
 * Last reply from: [redsentence](https://wordpress.org/support/users/redsentence/)
 * Last activity: [13 years, 8 months ago](https://wordpress.org/support/topic/plugin-portfolio-slideshow-opacity-change/#post-2996604)
 * Status: resolved