I want to disable the mouse hover effect on Elle theme whenever Mouse enters the product sections, it gives circle background written drag Arrow.
How i can disable that options. You can see demo store here https://new-ella-demo-11.myshopify.com/
Hi @Noman5
You can try follow this path:
Themes => edit code => asset => base.css
and add this code to bottom of the file base.css
.products-cursor{
display: none!Important;
}