Hi @marketimpress,
Thank you for writing in, please remove all your custom CSS with regards to the topbar and footer color, then work on this following custom CSS instead.
/*topbar text*/
header .x-topbar .p-info {
color: #139257;
}
/*topbar links*/
header .x-topbar .p-info a {
color: #139257;
}
/*topbar social icon links*/
header .x-topbar .x-social-global a {
color: #139257;
}
/*topbar social icon and links hover*/
header .x-topbar .p-info a:hover,
header .x-topbar .x-social-global a:hover {
color: red;
}
/*footer text*/
footer.x-colophon.bottom .x-colophon-content,
footer.x-colophon.bottom .x-colophon-content p {
color: #139257;
}
/*footer links idle*/
footer.x-colophon.bottom .x-colophon-content a {
color: #139257;
}
/*footer menu idle*/
footer.x-colophon.bottom .x-nav li a {
color: #139257;
}
/*footer links and menu hover*/
footer.x-colophon.bottom .x-colophon-content a:hover,
footer.x-colophon.bottom .x-nav li a:hover {
color: red;
}
See code comments for which block is for, feel free to change those color values.
Hope it helps,
Cheers!