Hoping you can help. I have a grayscale on hover applied to the images on the page in secure notes. The same CSS is applied for each image and works perfectly, but is not being applied to the first image in the first row.
If I duplicate the row, it works fine on the second row. If i duplicate the image itself, it works fine in the second position. I can’t seem to find the issue.
Here’s the code. I ran it through the CSS Lint as well.
$el img {
filter: grayscale(100%);
-webkit-transition: all .5s ease-in-out;
-moz-transition: all .5s ease-in-out;
-o-transition: all .5s ease-in-out;
}
img:hover {
-webkit-filter: none;
-moz-filter: none;
-ms-filter: none;
filter: none;
}