Go to Appearance > Customize > Additional CSS and add the following:
.site-footer {
background: #ff0000 !important; /* Please change color as per requirement */
}
Hope this will help.
Thanks for helping out, Subrata Sarkar.
I just want to mention that !important should be avoided in CSS, as it can cause problems when adding further custom CSS. It can usually be eliminated by choose a more specific element.
For Toujours, this should do the trick:
#colophon {
background-color: #bb00bb;
}
Replace the test purple colour code with anything you like.
Hi @zoonini, thank you for your appreciation! Regarding !important I agree with you.