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
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
Thanks Yigit!