does anyone know how to update the sale badge on product pages from top left to bottom left and make the font larger?
Yeah with a bit of css that’s easily doable. Share your store url and a shot of where you need it to be
Best
Please add this code to Custom CSS in your theme settings to do that
.custom-badge, .preorder-badge, .sale-badge, .sold-out-badge {
font-size: 12px !important;
top: calc(100% - 40px) !important;
}
Result:
Best regards,
Dan from Ryviu: Product Reviews App
@Shanelllenise it is possible using css, can you please share your website link?
Short answer (Shopify way using Dawn theme):
-
Go to Shopify Admin → Online Store → Themes → Customize.
-
Open Theme Settings → Sections → Product pages (or Product grid if for collections).
-
Look for “Badge” or “Sale badge” settings:
- Some versions of Dawn allow changing position and font size directly.
-
If no direct option exists:
-
Go to Online Store → Themes → Edit Code.
-
Open
assets/component-product.cssorassets/base.cssand add: -
.badge--sale { position: absolute; bottom: 10px; left: 10px; font-size: 18px; /* make it bigger */ }
-

