Shopify themes, liquid, logos, and UX
We're moving the community! Starting July 7, the current community will be read-only for approx. 2 weeks. You can browse content, but posting will be temporarily unavailable. Learn more
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!
Thank you, it worked!
But I want to make all prices the same size then so it does not look irregular.
In addition to that I would like to move the new price below the crossed out one, like done in the picture. Is that possible?
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!