How can I hide the sale badge in Sense theme?

Hi can someone please help me figure out how to hide the sale badge with sense theme

Thanks in advance.

Hello @ALPHA_2 ,

Could you please share your store url ( with pass if your store password is enabled ) then I can see and suggest something for you?

Best regards,
GemPages Support Team

Hello There,

  1. In your Shopify Admin go to online store > themes > actions > edit code
  2. Find Asset >base.css and paste this at the bottom of the file:
.card__badge.bottom.left {
display: none;
}
span.badge.price__badge-sale.color-accent-2 {
display: none;
}

@ALPHA_2
Put below css into base.css file (online store->themes->asset->base.css)

.card__badge.bottom.left {
    display: none !important;
}

Hi thanks, the badge is still showing

ALPHA_0-1670311925745.png

Hello There,

Please share your store URL and password.
So that I will check and let you know the exact solution here.

Hi @ALPHA_2 ,

This is Victor from PageFly - Landing Page Builder App.
You can go to Online store => themes => actions => edit code and add this code on file base.css

.card__badge{
display:none !important;
}

Hope this answer helps.
Best regards,
Victor | PageFly

That worked perfectly! Thanks for sharing your skills!