Hi @tronquini,
sorry for the late reply!
Changing the color of the footer gray bar font will require adding some CSS. This is best done by either creating a child theme or using a custom CSS plugin to ensure you don’t lose you changes when you install a theme update in the future. I recommend SiteOrigin’s CSS editor – https://www.ads-software.com/plugins/so-css/
Once you’ve installed that go to Appearance > Customs CSS and use the following CSS to change the color of the footer gray bar font:
.site-footer-bottom-bar {
color: #FFFFFF;
}
.site-footer-bottom-bar a {
color: #dd3333;
}
.site-footer-bottom-bar a:hover {
color: #1e73be;
}
That will change the color of the text, links and link rollovers respectively.
Hope this helps!