Hi, I am looking to remove this zoom feature on the product listing images. How can I remove this? I am using Expanse theme. The code from another Shopify question does not work for me. I seem to have a different code and different liquide.
Shop UrL: https://king-shakerz.com/
Hello @JuliusBerlin
You can try this code: it will be helpful to you
Go to the Online Store->Theme->Edit code->Assets->product-grid-item.css>Add this code at the bottom.
.grid-product__actions {
display: none !important;
}
Hello There,
- In your Shopify Admin go to online store > themes > actions > edit code
- Find Asset > base.css and paste this at the bottom of the file:
.grid-item.grid-product .grid-item__content .grid-product__actions {
display: none !important;
}