How can I change the price font size and color on the Dawn theme?

Hello

I am wanting to change the size and colour of the price on the product page - but not sure how to do so.
I have the Dawn Theme.

New to Shopify - help would be much appreciated.

1 Like

Hey @karagwebshop
Kindly share your Store URL and Password if enabled

You can do that by adding this CSS code at the bottom of your page

.product .price__container { font-size: 24px !important; }

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:
.price__regular .price-item--regular {
    font-size: 25px;
    color: #df4343;
}