I can’t figure out why the image size is jumping up in size when I roll over it. How can I disable the effect completely so it stops this behavior. I’ve tried many combinations in CSS and think there’s a bit of javascript that doesn’t something wonky with images on a mouse hover…
http://newsite.rifirechiefs.com/vendors/
I’d like the image to not move, not have any effect – just be there.
Thanks!
Hey!
Where is this element coming from? i’m not sure if this is exactly a theme issue but i think the root of the issue is in the transform: translate(0, 0) scaleX(1.0) property assigned to the #cn-list span.cn-image img elements.
Regards,
Josue
No, it’s not the CSS – the root of the issue seems to be the javascript. Even without the CSS you can see (using Firebug) that that weird behavior persists.
Hey!
Try adding this code to the Quick CSS:
#cn-list span.cn-image img {
pointer-events: none;
}
Cheers!
Josue