Policy Page Title Removal or Font Change

Topic summary

A user sought to remove or modify the default “Privacy & Policy” title appearing on Shopify policy pages in the Dawn theme.

Solution Provided:
Two community members offered the same CSS-based fix:

  • Navigate to Shopify admin → Online Store → Themes → Actions → Edit code
  • Open the Assets folder and locate the CSS file (base.css, style.css, or theme.css)
  • Add the following code at the bottom of the file:
.shopify-policy__title {
  display: none;
  visibility: hidden;
}

Outcome:
The original poster confirmed the solution worked perfectly. The discussion is resolved.

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


Hello everyone,

Is there a way to remove “Privacy & Policy” title or any default Shopify title or at least change the font from all policy pages with code?
I want to add a custom title and I want to get rid of these page titles in DAWN theme.

Thanks.

www.blankstudiocy.com/policies/privacy-policy

1 Like

@StudioBlank - to hide, please add this css to the very end of your base.css file and check

.shopify-policy__title {display: none;    visibility: hidden;}
1 Like

Hi @StudioBlank

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 “base.css, style.css or theme.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:

.shopify-policy__title {
    display: none;
}

And Save.

Result:

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

1 Like

This works perfectly. Thank you!