Reduce size of price on collection page?

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.

  1. From you Admin page, go to Online Store > Themes
  2. Select the theme you want to edit
  3. Under the Asset folder, open the main.css(base.css, style.css or theme.css)
  4. Then place the code below at the very bottom of the file.
@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!