Is there a way that I can have the images in the Fullwidth Masonry Gallery appear as black and white, then shift to color when you mouseover them?
Hey D5WDesignGroup!
Please add following code to Quick CSS in Enfold theme options under Styling tab
.av-masonry-image-container img { filter: grayscale(100%);
-webkit-filter: grayscale(100%);
filter: gray;
-webkit-transition: all .6s ease;
}
.av-masonry-image-container img:hover { filter: grayscale(0%);
-webkit-filter: grayscale(0%);
filter: none; }
Regards,
Yigit
Thank you very much. That worked perfectly!