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.
2 Likes
Go to your page In Shopify Customizer and add custom CSS
main#MainContent, main#MainContent h1 {
color: #000 !important;
}
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
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:
Please don’t forget to Like and Mark Solution to the post that helped you. Thanks!
1 Like
Thank you very much for the quick response, this worked perfectly.
1 Like