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

Reduce size of price on collection page?

Reduce size of price on collection page?

KimGottwald
Trailblazer
235 0 34
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.

 

Bildschirmfoto 2024-07-12 um 10.37.51 PM.png

  

Replies 3 (3)

Made4uo-Ribe
Shopify Partner
10211 2427 3079

Hi @KimGottwald 

Check this one. 

  1. From you Admin page, go to Online Store > Themes
  1. Select the theme you want to edit
  2. Under the Asset folder, open the main.css(base.css, style.css or theme.css)
  3. 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;
}
}

 

  • And Save. 
  • Result:
  • Made4uoRibe_0-1720818035840.png

     

 

Please don't forget to Like and Mark Solution to the post that helped you. Thanks!

If this fixed your issue, Likes and Accept as Solution are highly appreciated. Coffee tips fuel my dedication.
Get experienced Shopify developers at affordable rates—visit Made4Uo.com for a quick quote!
Need THEME UPDATES but have custom codes? No worries, for an affordable price.
KimGottwald
Trailblazer
235 0 34

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?

 

Bildschirmfoto 2024-07-12 um 10.37.51 PM.png

Made4uo-Ribe
Shopify Partner
10211 2427 3079

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:

Made4uoRibe_0-1720821804574.png

 

 

Please don't forget to Like and Mark Solution to the post that helped you. Thanks!

If this fixed your issue, Likes and Accept as Solution are highly appreciated. Coffee tips fuel my dedication.
Get experienced Shopify developers at affordable rates—visit Made4Uo.com for a quick quote!
Need THEME UPDATES but have custom codes? No worries, for an affordable price.