Footer backgroud

Can I change the background and text color of the footer?Thanks

Hello,

This is the CSS to change the footer background and text color:

#footer{
background-color: #f5f5f5;
}
#footer .widget .widget-title h3{
    color: #888;
}
#footer .copyright {
    color: #888;
}
#footer .widget ul li a{
    color: #888;
}

This code should be placed in a child’s theme stylesheet.css, ideally.
But you can use a Custom CSS plugin or place it inside Dashboard > Appearances > Editor > Style.css but keep in mind that this will get erased if you update the theme.

Regards