Hi all,
So I am using the Dawn theme. I love it. But I am noticing in the footer of my website, that the text is like a greyish color instead of white. Like in my footer, if you look at “About Your Membership Dues” or “Explore Our Site” you will notice the text is white. But the rest of the text is a grey color. How do I make all the text in my footer white? Anyone have any idea?
My website is www.PennsylvaniaParks.org
Thanks in advance 
Hi,
Please add the code below to assets/section-footer.css file.
.footer-block__details-content, .footer-block__details-content.rte {
color: #fff !important;
}
If you resolve the issues, please click “Like” and “Accept solution”.
Hope it helps.
Thanks.
Hi DavidEKim…
That helped… the one section is all white now however the footer navigation is still grey. Is there something I should add to that code to include to footer navigation?
Thanks so much!
@Justin34
Hi,
If you add the code below, the footer navigation will be white too.
a.link.link--text.list-menu__item.list-menu__item--link {
color: #fff !important;
}
Hope it helps.
If you resolve the issues, please click “Like” and “Accept solution”.
If you have any other questions, please let me know.
Thanks.
1 Like
Almost perfect… only portion that isnt white now is the copyright section at the very bottom. Everything else is white text. Thanks for all your help 
@Justin34
Hi,
Please add the code below for the copyright part to be white.
.copyright__content {
color: #fff !important;
}
If you have any other questions, please let me know.
If you resolve the issues, please click “Like” and “Accept solution”.
Hope it helps.
Thanks.
1 Like
Worked perfectly!! Thanks so much for all your help!