Need my legal pages text color to be white

Hello, I need help changing my legal pages font color without changing another base color. The current color is orange and I find it hard to read. You can find the legal pages menu at the bottom of the page. Please note that I am using a custom theme and the title is fine orange. https://bubbasgeneralstore.com/ Password: 080299

1 Like

When entering Settings>Policies, you will see all your policies, from there- just choose white (or any desired) color from the “color” parameter on the toolbar. Look at the picture attached

Please mark solved if this helped you :grinning_face:

Hi @Statikk ,

Try this.

  1. From your Shopify admin dashboard, click on “Online Store” and then “Themes”.
  2. Find the theme that you want to edit and click on “Actions” and then “Edit code”.
  3. In the “Assets” folder, click on “base.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:
  4. And Save.
.shopify-policy__body {
    color: white;
}

Result:

I just change the body. Not the title so not all white. If you like all white then use this one.

.shopify-policy__container {
    color: white;
}

Result:

Please check also if all pages on the legal pages changes.

I hope it help.

1 Like

Thank you this worked perfectly.

Can you also help me with the About us page? I would like the same thing, thanks.

1 Like

Yeah sure. Try this.

Same Instructions.

.page-content {
    color: white;
}

Result:

1 Like

Thanks again!

1 Like