How can I increase the font size of the price on my product page?

Hi guys,

I would like to increase the font size of the price on the product page without affecting any other fonts. Product page only. I would very much appreciate your help. Thanks

URL: https://basicbastard.co/products/basic-hood-green

@basicbastardco - add this css to the very end of base.css file and check, adjust number 18 as per the need

.product .price span.price-item {font-size: 18px !important;}

Hello @basicbastardco

It’s GemPages support team and glad to support you today.

You can follow these steps:

  1. Go to Online Store → Theme → Edit code
  2. Open your base.css file and paste the following code below:
.product__info-container .price .price-item {
      font-size: 21px !important;
   }

If you require any further information, feel free to contact me.
Best regards,
GemPages Support Team

Hello there,

  1. In your Shopify Admin go to online store > themes > actions > edit code
  2. Find Asset >base.css and paste this at the bottom of the file:
.product__info-container span.price-item.price-item--regular {
font-size: 20px!important;
}