The sale badge on our current website is too big on mobile and looks funky, would love to be able to decrease it but just don’t know how to. Any help would be appreciated ![]()
Website: www.wearthepeace.com
The sale badge on our current website is too big on mobile and looks funky, would love to be able to decrease it but just don’t know how to. Any help would be appreciated ![]()
Website: www.wearthepeace.com
hi @MuradNofal ,
if you want adjust on the mobile about sale badge, this is solve to you.
@media screen and (max-width: 760px){
.sale-badge, .sold-out-badge{
font-size: 13px;
line-height: 13px;
padding:7px 12px;
}
}
you can copy short code above to /assets/custom.css
Hope will helpful to you!
@MuradNofal
if you want adjust on the mobile about sale badge, this is solve to you.
@media screen and (max-width: 760px){
.sale-badge { padding:7px 12px; }
}
you can copy short code above to /assets/custom.css
Hope will helpful to you!
Hello @MuradNofal , Please try this code.
@media screen and (max-width: 760px){
.sale-badge, .sold-out-badge {
padding: 6px 12px;
}
}
Add this CSS at the bottom of Online Store->Theme->Edit code->Assets->custom.css.liquid
Thank you for your help!
Thank you for your help!