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

    Hi,

    It is possible to make standard all images in greyscale, and when mouseover the image is full color ?

    #457889

    Hey BetuwePC!

    Please add following code to Quick CSS in Enfold theme options under General Styling tab

    #main img { 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; }
    
    #main img:hover {    filter: grayscale(0%);
        -webkit-filter: grayscale(0%);
    -moz-filter: grayscale(0%);
    -o-filter: grayscale(0%);
        filter: none; }
    .image-overlay { display: none !important; }

    Cheers!
    Yigit

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