Changing font size of the Product Title - DAWN

Topic summary

Goal: Reduce the product title font size on the product page in the Dawn theme.

Proposed fix: Add a small CSS rule to the theme’s stylesheet.

  • Path: Shopify Admin > Online Store > Themes > Actions > Edit code.
  • File: Assets > base.css.
  • Rule: Target .product__title and set a smaller font-size (example provided: 20px). This value can be adjusted as needed.

Notes:

  • The provided CSS snippet is central to the solution; a screenshot was shared to illustrate where to add it.
  • A product page link was included for context/testing.

Outcome: The original poster confirmed the change worked and expressed thanks.

Status: Resolved; no further questions or issues raised.

Summarized with AI on January 27. AI used: gpt-5.

Hi,

I want to decrease the font size of my product title on the product page. It is too big. Can anyone please help me how to do?

Here is the link to a product:

https://onlineshop.sisento.de/products/brecos-italienische-anzugschuhe-brogue-oxford-budapester-mittelbraun-durchgenaeht

thank you!

Karin

1 Like

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:
.product__title {
    font-size: 20px;
}

1 Like

Thank you so much! :slightly_smiling_face: