How to change title fonts (Refresh Theme)

Hey team,

Looking to change title fonts across my store (see attached).

Any help would be appreciated!

Store URL: https://ap-perform.com/products/smartcup%E2%84%A2-recovery-massager

You can do that by going store admin > Sale channels > Online store > Themes > Edit code > open base.css, go to line 449, replace this line of code

font-size: calc(var(--font-heading-scale) * 4rem);

With this one

font-size: 28px;

1 Like

Hello There,

  1. In your Shopify Admin go to online store > themes > actions > edit code
  2. Find Layout >base.liquid and paste this at the bottom of the file:
.product__info-container .product__title h1 {
    font-size: 25px;
}
.image-with-text .grid__item .image-with-text__heading.h1 {
    font-size: 25px;
}

Thanks for your help! Will this change the font or the size? I’m wanting to customize the font. What’s the best way to do this?

Thanks for your help! Will this change the font or the size? I’m wanting to customize the font. What’s the best way to do this?