How do you change the font style of a price?

How to change font style of price ?

1 Like

Hello There,

Please share your store URL and password.
So that I will check and let you know the exact solution here.

Hey @mutelord

Could you please provide your Store URL and, if applicable, the Password too? Your cooperation is greatly appreciated!

Best Regards,
Moeed

You can change the font style of the price with a quick CSS edit.
Go to Online Store β†’ Edit Code β†’ Assets β†’ base.css (or theme.css) and add:

.price-item {
  font-family: 'YourFontName', sans-serif; /* change to your font */
  font-weight: 600; /* optional */
  font-size: 18px;  /* optional */
}

Replace 'YourFontName' with the font you’re using in your theme.

That will update the price font style across your store.