Hi there,
I’m working on this site: https://tarasolaoutdoorliving.com and I’ve put in some code to zoom, turn to greyscale and reduce the transparency of the Woocommerce featured products thumbs on hover, which works great, and now I’d like to do the same for the Portfolio thumb images.
This is the code I used for the featured products but I can’t adapt it to work with the Portfolio thumb images:
.entry-featured img {
filter: none; /* IE6-9 */
filter: grayscale(0); /* Firefox 35+ */
-webkit-filter: grayscale(0); /* Google Chrome, Safari 6+ & Opera 15+ */
transform: scale(1);
transition: 0.5s all ease-in-out;
opacity: 1;
}
.entry-featured img:hover {
filter: gray; /* IE6-9 */
filter: grayscale(1); /* Firefox 35+ */
-webkit-filter: grayscale(1); /* Google Chrome, Safari 6+ & Opera 15+ */
transform: scale(1.02);
transition: 0.5s all ease-in-out;
opacity: 0.75;
}
I’m using Renew and used Renew Demo 5 for the initial set-up.
Your help greatly appreciated.
Cheers,
Matthew