How to reduce the title size of policy pages?

Topic summary

A user encountered an oversized title on their Shopify policy pages and sought a solution to reduce its size.

Solution Provided:

  • Add custom CSS to the theme’s stylesheet (theme.scss.css or theme.scss file)
  • Target the .shopify-policy__title h1 selector
  • Adjust font-size and margin-bottom properties to desired dimensions

Outcome:
The CSS solution was accepted and successfully resolved the issue. The discussion is closed with the problem solved.

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

The title of the policy page looks very big and bad, how to reduce the size of the title?

Website link> https://ayabaya.be/

Hello @Fayed

Please paste the below css in theme.scss.css or theme.scss file at the bottom:

.shopify-policy__title h1 {
  font-size: 40px;
  margin-bottom: 20px;
}

OUTPUT:

Thanks

Awesome! Thank you very much