how to make same font as the website

Topic summary

A user encountered a font inconsistency issue where product descriptions displayed a different font than dropdown menus on their e-commerce site.

Proposed Solutions:

  • One suggestion was to adjust font settings through the typography section in the theme customizer
  • Another identified the root cause: custom CSS code in the base.css file was forcing a specific font family (“The Seasons”) on product descriptions using !important declarations

Resolution:
Removing the problematic CSS code snippet from the bottom of the base.css file successfully resolved the font mismatch. The issue is now closed with the user confirming the solution worked.

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

Hello! Tried several codes but cant seem to make the description the same font as the dropdown.

Please kindly advice! https://fitnessflair.co/products/weekender-tote

1 Like

Hi nicolewx,

Change the font from typography section like the below font and save,

Thanks

Hi @nicolewx

Please remove this code below at the bottom base.css file to solve it

.product__description span {
    font-family: The Seasons, sans-serif !important;
    font-size: 1rem !important;
}

Thank you!

1 Like

You are very welcome!