How can I change font colour on my policy pages?

Solved

How can I change font colour on my policy pages?

Solomond
Explorer
69 2 5

Hi

I would like to request some help as the font colours on my policy pages have changed to white, on a white background, making them impossible to read. The rest of the font colours on my site are correct, this issues is limited only to the following pages:

 

Refund policy – Hobbster

Privacy policy – Hobbster

Terms of service – Hobbster

Shipping policy – Hobbster

Contact information – Hobbster

 

I would like the font colour to be black.

I am using the Dawn theme and the site address is www.hobbster.co.uk

Thank you in advance.

Accepted Solution (1)

Made4uo-Ribe
Shopify Partner
10202 2422 3067

This is an accepted solution.

Hi @Solomond 

Check this one. 

From your Shopify admin dashboard, click on "Online Store" and then "Themes".

Find the theme that you want to edit and click on "Actions" and then "Edit code".

In the "Assets" folder, click on "base.css, style.css or theme.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:

 

.shopify-policy__container * {
    color: black;
}

 

And Saved. 

Result:

Made4uoRibe_0-1705589582824.pngMade4uoRibe_1-1705589618879.png

 

 

Please don't forget to Like and Mark Solution to the post that helped you. Thanks!

If this fixed your issue, Likes and Accept as Solution are highly appreciated. Coffee tips fuel my dedication.
Get experienced Shopify developers at affordable rates—visit Made4Uo.com for a quick quote!
Need THEME UPDATES but have custom codes? No worries, for an affordable price.

View solution in original post

Replies 4 (4)

stefansweb2020
Shopify Partner
134 10 5

Go to your page In Shopify Customizer and add custom CSS

main#MainContent, main#MainContent h1 {
    color: #000 !important;
}
banned

PageFly-Henry
Shopify Partner
1184 335 299

Hi @Solomond 

 

This is Henry 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

 

 h1, body {

    color: initial !important;

}

 

Hope that my solution works for you.

Best regards,

Henry | PageFly

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


PageFly - #1 Page Builder for Shopify merchants.


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

Made4uo-Ribe
Shopify Partner
10202 2422 3067

This is an accepted solution.

Hi @Solomond 

Check this one. 

From your Shopify admin dashboard, click on "Online Store" and then "Themes".

Find the theme that you want to edit and click on "Actions" and then "Edit code".

In the "Assets" folder, click on "base.css, style.css or theme.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:

 

.shopify-policy__container * {
    color: black;
}

 

And Saved. 

Result:

Made4uoRibe_0-1705589582824.pngMade4uoRibe_1-1705589618879.png

 

 

Please don't forget to Like and Mark Solution to the post that helped you. Thanks!

If this fixed your issue, Likes and Accept as Solution are highly appreciated. Coffee tips fuel my dedication.
Get experienced Shopify developers at affordable rates—visit Made4Uo.com for a quick quote!
Need THEME UPDATES but have custom codes? No worries, for an affordable price.
Solomond
Explorer
69 2 5

Thank you very much for the quick response, this worked perfectly.