Viewing 2 posts - 1 through 2 (of 2 total)
  • Author
    Posts
  • #440277

    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.

    #440361

    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

Viewing 2 posts - 1 through 2 (of 2 total)
  • You must be logged in to reply to this topic.