How can I remove the word 'SALE' from the top right corner in my ecom theme?

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.

  1. Go to your theme.scss.liquid

  2. 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?

@meir1 ,

Would you mind sharing your store URL so we can take a look and let you know?

@KetanKumar

Thanks

https://beautyroon.com/

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!