Home › Forums › Pro Support › Image hover effect › Reply To: Image hover effect
October 11, 2018 at 2:21 pm
#6161
Participant
Just on the Homepage, the one with just images. I managed to make all images b/w with colored hover using:
img {
filter: grayscale(100%);
-webkit-filter: grayscale(100%);
}
img:hover {
filter: none;
-webkit-filter: grayscale(0);
}
I changed it to the CSS you send me, but unfortunately that didn’t work…
What I would like is to have this hover effect only on the Homepage, but I have no idea if that’s possible….
Thanks again!