Ron Hendriks
asked 10 years ago

How do I change the gray color of the footer text?

2 Answers
Ron Hendriks
answered 10 years ago

Found the answer: In Custom wp_head() code add:

<style>
#colophon.dark a {
color: #c0c0c0;
}
#colophon.dark a:hover {
color: #ffffff;
}
</style>

DominicStaff
answered 10 years ago

Hello Ron !

I think you find the solution to change color in the Footer of the DW Focus. However, You can add the following code to the Custom wp_head() code:

<style>
#colophon.dark {
    color: #FFF;
}
#colophon.dark #site-tools .footer-toggle:after {
    color: #FFF;
}
#colophon.dark a {
color: #c0c0c0;
}
#colophon.dark a:hover {
color: red;
}
</style>

Hope this helps !

Powered by DW Question & Answer Pro