How can i change font on product prices

Topic summary

A Shopify store owner is experiencing an issue where product prices display in “Segoe UI” font instead of the desired “Poppins” font. Despite attempting changes through typography settings, the font inspector shows an unexpected font not listed in their theme options.

Visual comparison provided:

  • Target appearance: Poppins font (shown in screenshot)
  • Current appearance: Segoe UI font (shown in screenshot)

Resolution provided:
A community member offered a CSS solution by adding specific code to the base.css file targeting the price element class. The code snippet explicitly sets the font-family to ‘Poppins’ for large price items with badges.

Status: Solution proposed but not yet confirmed as implemented or tested by the original poster.

Summarized with AI on October 24. AI used: claude-sonnet-4-5-20250929.

Hello i had an issue with changing price font on product prices, nothing helps i want to change it to Poppins but akwardly when i inspect with font finder it shows me a font that is not even on my typography selecion :confused:

I want the price to look like this (Poppins)

Toypop_0-1729161819148.png

but mine looks like this(segoe ui somehow)

Toypop_1-1729161876288.png

1 Like

Hi @Toypop

Please, Share your store URL. Thanks!

https://www.toypop.lt/

Hello @Toypop,

Please add this following code into your base.css file:

.price.price--large.price--show-badge .price-item.price-item--regular {
    font-family: 'Poppins';
}

It will resolve your issue.