Hey there, is it possible to change the fade effect from zoom in to the items are black and white, on mouse over they get coloured? That would be great!
Hi kultblendecom!
Please try adding following code to Quick CSS in Enfold theme options under General Styling tab
.avia_desktop.avia_transform3d .av-masonry-image-container {
filter: grayscale(100%) !important;
-webkit-filter: grayscale(100%) !important;
-moz-filter: grayscale(100%) !important;
-o-filter: grayscale(100%) !important;
filter: grayscale(100%) !important;
}
.avia_desktop.avia_transform3d .av-masonry-image-container:hover {
filter: grayscale(0%) !important;
-webkit-filter: grayscale(0%) !important;
-moz-filter: grayscale(0%) !important;
-o-filter: grayscale(0%) !important;
filter: grayscale(0%) !important;
}
Cheers!
Yigit
Thank you very much.