I seem to have to created a problem with every list of products when I edited the code. For some reason, the images of the products on any product list on SpaPLUS.co.uk flickers. I think it has something to do with the scroll on trigger as it happens when you scroll upon the page then disappears, but it happens on every single page/list of products.
Please help me fix this so that it is the standard animation for products that slightly zooms in when hovering over a product image in a list of products.
In order to do the requested changes requires to do the custom code in your theme file.
Could you please share the 4 digits collab code along with the store url in the p/m so that I can take a look and make the requested changes.
You’ve diagnosed this perfectly – the flickering you’re seeing is a classic sign of two competing animations.
Your theme (SpaPLUS.co.uk) likely has a “fade/slide in on scroll” animation for the product list. When that JavaScript-driven animation interacts with the browser’s default hover effect (or another CSS animation), they conflict, causing that annoying flicker.
The clean solution is to disable the theme’s built-in scroll animation for that specific product grid, and then implement the zoom-on-hover effect you want using pure, reliable CSS.
The CSS for a simple zoom-on-hover effect would look something like this, applied to your product image wrapper:
The trickiest part is often finding where to disable the theme’s scroll animation without breaking anything else. If you’d like a hand with the precise implementation, this is a quick fix I can certainly help with.