Policy Page Title Removal or Font Change.

Solved

Policy Page Title Removal or Font Change.

StudioBlank
Explorer
80 3 29

Capture.PNGHello 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

᥇ꪶꪖꪀᛕ ᦓꪻꪊᦔ꠸ꪮ
Accepted Solution (1)

Made4uo-Ribe
Shopify Partner
10049 2390 3017

This is an accepted solution.

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:

Made4uoRibe_0-1716478044967.png

 

 

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

If this fixed your issue, Likes and Accept as Solution are highly appreciated. Coffee tips fuel my dedication.
Get experienced Shopify developers at affordable rates—visit Made4Uo.com for a quick quote!
Need THEME UPDATES but have custom codes? No worries, for an affordable price.

View solution in original post

Replies 3 (3)

suyash1
Shopify Partner
10743 1326 1706

@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;}
Watch me | To build shopify pages use PAGEFLY | Contact me - suyash.patankar@gmail.com , My timezone is GMT+5:30.

Made4uo-Ribe
Shopify Partner
10049 2390 3017

This is an accepted solution.

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:

Made4uoRibe_0-1716478044967.png

 

 

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

If this fixed your issue, Likes and Accept as Solution are highly appreciated. Coffee tips fuel my dedication.
Get experienced Shopify developers at affordable rates—visit Made4Uo.com for a quick quote!
Need THEME UPDATES but have custom codes? No worries, for an affordable price.
StudioBlank
Explorer
80 3 29

This works perfectly. Thank you!

᥇ꪶꪖꪀᛕ ᦓꪻꪊᦔ꠸ꪮ