I tried the code suggested in another thread, but it didn’t apply. I’d like the greyscale overlay to apply to any call to the portfolio (I use it on the home page as well as the portfolio page) and, on hover, return to full color.
Thanks!
Hey Veronica!
Thank you for using Enfold.
Please use this on Quick CSS or custom.css:
.isotope_activated .isotope-item img {
display: block;
filter: grayscale(100%);
-webkit-filter: grayscale(100%);
filter: gray;
-webkit-transition: all .6s ease;
}
.isotope_activated .isotope-item:hover img {
filter: grayscale(0%);
-webkit-filter: grayscale(0%);
filter: none;
}
Cheers!
Ismael
Wonderful! Thank you!