Page title size in Dawn Theme

Hi there,

I’m having trouble making the page title smaller for my “About Us” and “Store Policies” pages. My “Contact” page title is the size I’d like it to be, but I can’t seem to get the other 2 pages smaller based on solutions I’ve looked up on the Shopify Discussions. Can someone help me please? Thanks so much in advance!

Here is the link to one of the pages I’m having trouble with: https://studioaccomplice.com/pages/about-us

You can try this code by following these steps:
Step 1: Go to the online store ->Theme ->Edit Code.
Step 2: Find the theme.liquid file and add the following code above the tag


Hopefully it will help you. If yes then Please don’t forget hit Like and Mark it as solution!

Hi AnneLuo,

Thanks for your quick response. I tried this but it didn’t have an effect. Anything else I can try?

I can help you add it directly. So I need to access your store as a collaborator if possible.

I’m not sure how to add you as a collaborator. How would I do this?

@sh617 ,

Step 1. Go to Admin → Online store → Theme > Edit code

Step 2. Find the file base.css.

Step 3. Add this code to the end of file

@media screen and (min-width: 768px) {
  .main-page-title.page-title{
    font-size: 2rem !important;
  }
}

Result:

Please send me a private message.

1 Like

Hi BSSCommerce-B2B,

Thank you for your response. I tried putting the code in as you instructed but it doesn’t seem to have an effect. Would you have any other suggestions?

Hello @sh617 ,

You can try this code: it will be helpful to you.

Go to the Online Store->Theme->Edit code->Assets->section-main-page.css>add this code at the bottom of the file.

h1.main-page-title.page-title.h0.scroll-trigger.animate--fade-in {
    font-size: 20px !important;
}

Hi ICart_App,

Thanks so much for your suggestion but that didn’t work either. Would you have any other suggestions?

Hi @sh617 ,

  1. Go to Online Store → Theme → Edit code.
  2. Open your theme.liquid file
  3. In theme.liquid, paste the below code before

If my reply is helpful, kindly click like and mark it as an accepted solution.

Thanks!