Changing Text Color On Policy Pages Dawn Theme

Hi,

I want to change the color of my text on all my policy pages without changing the rest of the website. Currently the color is white on white so can’t be seen. My website is apexgolfclo.com

Hello @amaan4

You can try this code: it will be helpful to you

Go to the Online Store->Theme->Edit code->Assets->theme.css>Add this code at the bottom.

.shopify-policy__title h1 {
    color: black !important;
}
.shopify-policy__body {
    color: black !important;
}

Hi,

There is no theme.css

Hi @amaan4

This is Richard from PageFly - Landing Page Builder App

You can try this code by following these steps:

Step 1: Go to Online Store->Theme->Edit code.

Step 2: Search file base.css

Step 3: Paste the below code at bottom of the file → Save

.shopify-policy__body, .shopify-policy__title h1, .shopify-policy__body h1, .shopify-policy__body h2 {

color: black !important;

}

Hope that my solution works for you.

Best regards,

Richard | PageFly

Hello @amaan4

You can try this code: it will be helpful to you

Go to the Online Store->Theme->Edit code->Assets->base.css>Add this code at the bottom.

.shopify-policy__title h1 {
    color: black !important;
}
.shopify-policy__body {
    color: black !important;
}