Currently, I've implemented a hover opacity effect on my images using the following CSS:
img {
opacity: 1.0;
filter: alpha(opacity=1.0);
}
img:hover {
opacity: 0.6;
filter: alpha(opacity=0.6);
}
However, I now have a specific image for which I'd like to disable this hover effect entirely.
Can you provide guidance on how to achieve this?