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!