How to make price text in collection small on Craft theme?

Looking to price text smaller as referenced in screenshot.

https://prnt.sc/vw5QGVOs9uEL

The shop: https://b898f2.myshopify.com/

Any help will be appreciated and correct solution liked and accepted.

thank you

Find component-card.css

@media screen and (max-width: 989px){
.prict{
font-size:14px;
}
}

You can add code by following these steps to reduce price text as shows in screenshot

  1. Go to Online Store → Theme → Edit code.

  2. Open your theme.liquid file

  3. Paste the below code before on theme.liquid

@media screen and (max-width: 767px){ .card-information .price { font-size:12px !important; } }

Hi @Trapesthetics

You can try this code by following these steps:

Go to Online store => themes => actions => edit code and add this code on file theme.liquid before tag


Hope this answer helps.

Best regards,

Victor | PageFly

Hi @Trapesthetics ,

Please go to Actions > Edit code > Assets > base.css file and paste this at the bottom of the file:

.price {
   font-size: 1.4rem !important;
}

you can also change the rem yourself, it will work fine

1 Like