Change font style for price on product page - prestige theme

Hi, l am trying to change the font style for the price on my product page and also on my collection pages. Can someone recommend how to do this? I am using prestige theme.

Hi there @houseof9 Follow the steps and paste the code in the reply marked as a solution here https://community.shopify.com/topic/1405601

In order to change the font-style of the Product price in prestige then you need to paste the following code in the end of theme.css file.

.price-list sale-price.h4.text-subdued {
    font-style: italic !important;
}

Here is how you can find the theme.css file.

Go to Shopify Admin > Online Store > Edit Code > theme.css

Currently I use the font-weight: italic. You can choose any value from the following one.

  1. normal
  2. italic
  3. oblique
  4. initial
  5. inherit

By using of the value of the font-style then you can change the font-style of the product price.

Let me know if you need further help.

Thanks

Thanks for this and sorry l probably wasn’t clear with my question! I want to change the actual font. It is current the seasons font and l want to change it to Avenir Next font. Is there a way to do this?

  1. If you just want to change for the Product Price Only then you need to paste the following code in the end of base.css file.
.price-list sale-price.h4.text-subdued {
    font-family: Avenir Next font !important;
}

Here is how you can find the theme.css file.

Go to Shopify Admin > Online Store > Edit Code > theme.css

  1. OR if you just want to change it for whole Store then you need to follow these steps.

Go to Shopify Admin > Online Store > Go to Customization > Settings from the Left side > Typography.

From here you can change the font-family for your whole store.

Thank you! That worked

I am happy it could fulfill your requirements. If this was really helpful then don’t forget toBuy me a Coffee :hot_beverage:

It will help me to continue the helping each merchant like you.

Thanks