How can I modify the color scheme of my policy and cart pages?

winandgetrich
Tourist
90 0 2

2 questions: 

1: I want to change the color of my policy pages, i cannot edit them. I am talking about 'terms of service' 'privacy policy' and 'refund policy'. They are black with white letters but i want the page white with black letters. 

2: I have the same problem for my cart page when there is nothing in my cart. This page is black as well but I want it white with black letters. 

website (no password needed): winandgetrich.com

So it is the same problem on different pages, can someone help me? thanks

Replies 5 (5)

saurav9005
Shopify Partner
99 15 25

what theme are you using?
In shopify 
go to online store > theme -> click on customization and (leftside there will be theme setting). You can change the background and color.

Most of the theme works that way. 

please hit Like and Mark as Solution, If this answer solve your problem.  If you find my reply helpful, a small Coffee Tip would make my coding heart soar!

PageFly-Richard
Shopify Partner
4668 1069 1726

Hi @winandgetrich ,

 

This is Richard from PageFly - Landing page builder, I’d like to suggest this idea:
Step 1: Go to Online Store->Theme->Edit code
Step 2: Layout->/theme.liquid->paste below code before </body>:

<style>
.shopify-policy__container {
	 max-width: 100%;
	 background: #fff;
	 padding-top: 20px;
}
 .shopify-policy__container > * {
	 max-width: 65ch;
	 margin: 0 auto;
	 color: #000;
}
 .shopify-policy__container h1 {
	 color: #000;
	 margin-top: 0;
}
{% if template contains 'cart' %}
 body {
	 --gradient-background: #fff;
	 --color-foreground: #000;
}
 {% endif %}
</style>

I hope it would help you
Best regards,

Richard | PageFly

Please let me know if it works by giving it a Like or marking it as a solution!


➜ Optimize your Shopify store with PageFly Page Builder (Free plan available) 


All features are available from Free plan. Live Chat Support is available 24/7.

winandgetrich
Tourist
90 0 2

my complete website is ruined... i can start all over again now

PageFly-Richard
Shopify Partner
4668 1069 1726

Hi @winandgetrich ,

 

Can you screen shot and link to the broken page so I can help you?

Best regards,

Richard | PageFly

Please let me know if it works by giving it a Like or marking it as a solution!


➜ Optimize your Shopify store with PageFly Page Builder (Free plan available) 


All features are available from Free plan. Live Chat Support is available 24/7.

Asdf
Visitor
1 0 0

thank you so much. I've been looking for a solution for days. Finally, it worked!