Hi community! 
It seems that whenever I create a new page, or for all my policy pages, it is applying a white background as default. Is there a CSS code to override this, and have the same background color apply for all pages? There are limitations to what I can change in Customize. I need the background color to be #E8F4F8. I’m going crazy trying to work out what CSS code to use.
Examples below:
Hi @BeautyEcommerce ,
Can you please share preview URL of the store?
Thank you
Hi @BeautyEcommerce ,
Add below css to base.css file.
body.gradient {
background: #E8F4F8;
}
If you require further help to optimize or customize your store, please don’t hesitate to reach out. If you find this information useful, a Like would be greatly appreciated. And if this solves the problem, please Mark it as Solution!
Best Regards,
LuffyOnePiece
1 Like
Thanks heaps @LuffyOnePiece , I really appreciate you looking at it.
Do you know by any chance how I can retitle my policy pages?
I’m trying to get the following:
Privacy policy > Privacy Policy
Terms of service > Terms of Service
Refund policy > Refund Policy
Seems small, but I think it looks more professional 
Hi @BeautyEcommerce
Add below css to base.css file.
.shopify-policy__title {
text-transform: capitalize;
}
If you require further help to optimize or customize your store, please don’t hesitate to reach out.
Best Regards,
LuffyOnePiece
1 Like