I want to remove this word “SALE” in the top right corner. How can I do it? i have ecom theme
thank you
Hey @meir1 ,
You will need to edit your theme code in order to remove the sale tag.
Go to your theme.scss.liquid
Add the following code at the bottom of your theme.scss.liquid
.badge--sale {
display: none;
}
Let me know how you get on!
Hi Moira!
It didn’t work for me, it’s in the layout or assets folder?
Please add below css in bottom of assets/theme.scss.css file
.grid-product__tag.grid-product__tag–sale {
display: none;
}
Thank you.
excellent thank you very much everyone!