20m ago
I would like to reduce the size of the normal price like done in the picture is this possible?. Is this possible?
Thank you!
URL: https://suq5b8csct01fyzg-61270851797.shopifypreview.com/collections/rappid-test
Im using the Trade theme.
20m ago
I would like to reduce the size of the normal price like done in the picture is this possible?. Is this possible?
Thank you!
URL: https://suq5b8csct01fyzg-61270851797.shopifypreview.com/collections/rappid-test
Im using the Trade theme.
Hi @KimGottwald
Check this one.
@media only screen and (max-width: 500px){
span.price-item.price-item--sale.price-item--last {
font-size: 1.4rem;
}
}
Please don’t forget to Like and Mark Solution to the post that helped you. Thanks!
It look like you already manage the font-size. i just adjust the size between sale and normal price.
Add this code.
@media only screen and (max-width: 335px){
.price {
line-height: 1.5rem;
padding-top: 1rem;
}
}
And save.
result:
Please don’t forget to Like and Mark Solution to the post that helped you. Thanks!