Hello,
I'm currently using the mouseover image for thumbnails option and would like the mouseover image to fade in. I'm not sure if I have the correct classes for the thumbnails, is this right?
.thumb has-mouseover-img mo_thumb{
opacity:0;
transition-duration: 150ms;
transition-timing-function: ease-out;
}
.thumb.has-mouseover-img:hover mo_thumb{
opacity:1;
transition-duration: 150ms;
transition-timing-function: ease-out;
}
Thank you!