How do I change the gray color of the footer text?
2 Answers
Found the answer: In Custom wp_head() code add:
<style>
#colophon.dark a {
color: #c0c0c0;
}
#colophon.dark a:hover {
color: #ffffff;
}
</style>
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 !
Please login or Register to submit your answer