How to change text colour to white on all policy pages

Solved

How to change text colour to white on all policy pages

Emiway
Trailblazer
263 0 50

I want to change colours of text on my all policy pages I have a background of black so I want white text

URL https://lokel.in/policies/terms-of-service

  1. Screenshot_2024-05-18-16-20-02-30_40deb401b9ffe8e1df2f1cc5ba480b12.jpg
Accepted Solution (1)
Futuremerce
Shopify Partner
16 8 6

This is an accepted solution.

 

Update the code to this:

 

<style>
body {
color: #fff;
}
</style>

 

 This will update the text on all pages not just policy pages.

 

Hope this helps!

★ Need help with your store? Feel free to reach out ★

https://www.futuremerce.com
hello@futuremerce.co

View solution in original post

Replies 4 (4)

Futuremerce
Shopify Partner
16 8 6

Hi there,

 

Add the following code to your theme.liquid file just before the </body> tag to solve that issue.

 

<style>
.shopify-policy__title, .shopify-policy__body {
color: #fff !important;
}
</style>

 

This will change the color of the text to white across all of your policy pages.

 

Thanks,

Blake

★ Need help with your store? Feel free to reach out ★

https://www.futuremerce.com
hello@futuremerce.co

Emiway
Trailblazer
263 0 50

This Is Happening On All Pages 

Emiway
Trailblazer
263 0 50

I want all pages text to be white not only policy pages

Futuremerce
Shopify Partner
16 8 6

This is an accepted solution.

 

Update the code to this:

 

<style>
body {
color: #fff;
}
</style>

 

 This will update the text on all pages not just policy pages.

 

Hope this helps!

★ Need help with your store? Feel free to reach out ★

https://www.futuremerce.com
hello@futuremerce.co