Dawn theme/ Product Card/ Change Title and Price font size

Topic summary

A user seeks to modify the Dawn theme’s product card styling by increasing the title font size and decreasing the price font size.

Solution Provided:

  • Navigate to Shopify admin → Online Store → Themes → Actions → Edit code
  • Open the component-card.css file in the Assets folder
  • Add custom CSS at the bottom:
    • .card__heading { font-size:1.6rem !important; }
    • .price { font-size: 1.3rem !important; }
  • Save changes

Outcome:
The original poster confirmed the solution worked perfectly. However, another user reported the same code did not work for their store and requested additional help. The solution provider offered to assist if they share their store URL.

Status: Resolved for the original poster; troubleshooting ongoing for the second user.

Summarized with AI on November 3. AI used: claude-sonnet-4-5-20250929.

Hi there,

My url: andrejewelry.com

Password: Thankyouverymuch121

I would love to switch the font size of Title and Price.

Make title larger and price smaller. Thank you!

2 Likes

Hi @AndreaHuang

Check this one.

  • From your Shopify admin dashboard, click on “Online Store” and then “Themes”.
  • Find the theme that you want to edit and click on “Actions” and then “Edit code”.
  • In the “Assets” folder, click on “component-card.css” file, depending on which file your theme uses to store its CSS styles. At the bottom of the file, add the following CSS code:
.card__heading {
    font-size:1.6rem !important;
}
.price {
    font-size: 1.3rem !important;
}

Please don’t forget to Like and Mark Solution to the post that helped you. Thanks!

4 Likes

It is perfect! Thank you for helping a lot lol.

1 Like

did not work for me why? can anyone help please

thanks

Hi @TGRF

Did you already solve the problem? If not please share your store URL. Thanks!