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

    http://kriesi.at/themes/enfold/blog/masonry-blog/

    How can I make it so the Masonry Blog pictures show up grey scaled unless they are hovered over?

    Right now they show up lighter and then full color when hovered over.

    Thanks for the help!!

    #292631

    Hi Micheal0424!

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

    .av-masonry-image-container {
    filter: grayscale(100%);
    -webkit-filter: grayscale(100%);
    -moz-filter: grayscale(100%);
    -o-filter: grayscale(100%);
    filter: grayscale(100%);
    }
    .av-masonry-image-container:hover {
    filter: grayscale(0%);
    -webkit-filter: grayscale(0%);
    -moz-filter: grayscale(0%);
    -o-filter: grayscale(0%);
    filter: grayscale(0%);
    }

    Best regards,
    Yigit

    #292645

    Worked perfectly, thanks for the help!!

Viewing 3 posts - 1 through 3 (of 3 total)
  • The topic ‘Masonry Blog – Change to grey scale until hovered over?’ is closed to new replies.