Find main CSS file and Paste CSS code at the very bottom
CSS example
/* === Move SALE badge to top-left and make it slightly wider (product cards only) === */
/* Make sure the card can hold an absolute badge */
.card, .card-wrapper, .card--product { position: relative; }
/* Position: top-left */
.card--product .card__badge,
.card .card__badge,
.product-card__badge,
.grid-view-item__badge {
position: absolute;
top: 8px !important; /* distance from the top edge */
left: 8px !important; /* distance from the left edge */
right: auto !important; /* cancel right positioning if theme had it */
bottom: auto !important; /* cancel bottom positioning if theme had it */
z-index: 2;
}
/* Size/shape: just a tiny bit wider with comfy padding */
.card__badge .badge,
.product-card__badge .badge,
.grid-view-item__badge .badge,
.price__badge--sale,
.price__badge-sale {
display: inline-block;
padding: 6px 10px; /* <-- widen by increasing left/right padding */
min-width: 52px; /* <-- gentle width floor (change to taste) */
line-height: 1.1;
font-size: 12px; /* keep it tidy; adjust if you want */
border-radius: 6px; /* optional: small rounded corners */
}
/* (Optional) If your theme shows multiple badges, keep them tidy */
.card__badge .badge + .badge {
margin-left: 6px;
}