How to change the Fonts in the Privacy policy, Shipping policy and return policy

I want to create a privacy policy, return policy, and shipping policy page


.
The problem is I can’t change the color of the text and the font from Shopify Native add page option. (See the Photo).

I have used “Merriweather Sans Bold” and Oswald Bold with Debutify editor.

1 Like

@Yopi

Please share your store URL.

I haven’t published it yet. But here is the URL: https://haurangi-530.myshopify.com/

hello @Yopi

your store is password protected can you please share your password

the password is geawao

1 Like

hello @Yopi

can you please share your Privacy policy, Shipping policy and return policy page url

https://haurangi.com/pages/privacy-policy

The font has been fixed. But there are still 2 problems. One is the white bar between the header and the body part. How to get rid of it?
Second I want the title of the page to be the same font as the content font. Look at photo.

hello @Yopi

please Go to Online Store->Theme->Edit code then go to assets/theme.css ->paste below code at the bottom of the file.

#privacy-policy .breadcrumbs.text-accent.text-small{
	    display: none;
}
  #privacy-policy  #mainContent .box .section-header h1.page-title{
     font-family: Oswald,sans-serif !important;
}

@Yopi

Please add the following code at the bottom of your assets/theme.scss.liquid file.

#privacy-policy nav.breadcrumbs{
display: none;
}
#privacy-policy h1.page-title{
font-family: Oswald,sans-serif !important;
}

Hope this works.

Thanks!

Thank You. I Will do add that to the themeliquid.

Can you tell me how to remove the white bar? And does the “title font” changes too after adding your code to the css?

hello @Yopi

yes remove the white bar and title font" changes after you added this code into the theme.css file