Hello, I am customizing the theme a bit to give it some extra details and I want to do this, I want that when they rollOver in the portfolio images, they change and are in color, so I have put a color image and with the script of css I want to change them to B&W and do the effect. but I have not succeeded. This is the script I’m using in Classic Row 2:
img {
filter: gray; /* IE5+ /
-webkit-filter: grayscale(1); / Webkit Nightlies & Chrome Canary */
-webkit-transition: all 0.8s ease-in-out;
}
hover.img {
filter: gray;
-webkit-filter: grayscale(0);
-webkit-transform: scale(1.01);
}
Could you help me, surely it is something very simple and that I am not seeing. Thank you
