Hello, My front page is my portfolio page and i would like to ask if it’s possible for all images to appear B&W first and than to colour on hover over ? If yes pls assist.
Hey smadesign!
Please add following code to Quick CSS in Enfold theme options under General Styling tab
.av-masonry-outerimage-container { filter: grayscale(100%);
-webkit-filter: grayscale(100%);
-moz-filter: grayscale(100%);
-o-filter: grayscale(100%);
filter: gray;
-webkit-transition: all .6s ease;
transition: all .6s ease;
-moz-transition: all .6s ease;
-o-transition: all .6s ease; }
.av-masonry-outerimage-container:hover { filter: grayscale(0%);
-webkit-filter: grayscale(0%);
-moz-filter: grayscale(0%);
-o-filter: grayscale(0%);
filter: none; }
Regards,
Yigit