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

    Hey guys … How can I get the 1st 2 profile pics to turn from B&W to color as seen in the last remaining 4. Thanks.
    Yigit closed out my last incomplete request by accident on this…

    JS

    #627138

    Hey Justin,

    Please change this code

    .team-img-container img:hover {
        filter: grayscale(0%);
        -webkit-filter: grayscale(0%);
        -moz-filter: grayscale(0%);
        -o-filter: grayscale(0%);
        filter: none;
    }

    to following one

    .team-img-container:hover img {
        filter: grayscale(0%);
        -webkit-filter: grayscale(0%);
        -moz-filter: grayscale(0%);
        -o-filter: grayscale(0%);
        filter: none;
    }

    Best regards,
    Yigit

    #627572

    Thanks Yigit!

Viewing 3 posts - 1 through 3 (of 3 total)
  • The topic ‘Team Member Icons’ is closed to new replies.