Hi!
I am using dawn theme and my website is carcleansweden.se. I was wondering how I can change the sale badge location as shown in this picture:
Hi!
I am using dawn theme and my website is carcleansweden.se. I was wondering how I can change the sale badge location as shown in this picture:
Hi @CarCleanCC !
Head to Admin > Online Store > customise > Edit Code > component-card.css > line 273:
Change .card_badge from:
.card__badge {
align-self: flex-end;
grid-row-start: 3;
justify-self: flex-start;
}
to:
.card__badge {
justify-self: flex-end;
}
This will achieve this:
Hope this helps!