Reduce the size of the font on product pages using Dawn Theme

website is funkobros.com

and I am trying to make this font smaller, but am unable to figure out how to do so

1 Like

Hi @FunkoBros ,

You can try this code.

  1. From your Shopify admin dashboard, click on “Online Store” and then “Themes”.
  2. Find the theme that you want to edit and click on “Actions” and then “Edit code”.
  3. In the “Assets” folder, click on “theme.scss.liquid, styles.scss.liquid or base.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:
  4. And Save.
.product__title h1 {
    font-size: 30px;
}

Ok. That worked for the product pages. But how about for “Featured Product”?

1 Like

Im not sure which is the featured product is its a bit confusing. Is this one?

.product-block.product-block--title.product-block--first h1 {
    font-size: 20px;
}

If not this, can you tell me which one? Thanks!

1 Like

Thank you for the information.

Yes, it is in the different selector. Try this.

h2.product__title.h1 {
    font-size: 20px;
}

Result:

I hope it help.