Viewing 3 posts - 1 through 3 (of 3 total)
  • Author
    Posts
  • #349059

    I tried the code suggested in another thread, but it didn’t apply. I’d like the greyscale overlay to apply to any call to the portfolio (I use it on the home page as well as the portfolio page) and, on hover, return to full color.

    Thanks!

    #349294

    Hey Veronica!

    Thank you for using Enfold.

    Please use this on Quick CSS or custom.css:

    .isotope_activated .isotope-item img {
    display: block;
    filter: grayscale(100%);
    -webkit-filter: grayscale(100%);
    filter: gray;
    -webkit-transition: all .6s ease;
    }
    
    .isotope_activated .isotope-item:hover img {
    filter: grayscale(0%);
    -webkit-filter: grayscale(0%);
    filter: none; 
    }

    Cheers!
    Ismael

    #350334

    Wonderful! Thank you!

Viewing 3 posts - 1 through 3 (of 3 total)
  • The topic ‘Greyscale Overlay for Portfolio’ is closed to new replies.