How do you I reduce the font-size of the reduction label and make it less bolt?
Thank you in advance!
Hey @Rickyxane
Follow these Steps:
<style>
.product-label--sale span {
font-size: 14px !important;
}
.product-label--sale {
font-weight: 100 !important;
}
</style>
RESULT:
If you require any other help, feel free to reach out to me. If I managed to help you then a Like would be truly appreciated.
Best,
Moeed
font-size: 12px; → makes the text smaller. You can also use em, rem, or % depending on your theme.
font-weight: normal; → removes the bold effect. If you want even lighter, you can use 300 or 200 depending on the font.
If you share the exact class or HTML snippet of your reduction label, I can give you the precise CSS code to drop into your theme.