Hello,
I am trying to change the color of the background of the footer on my site, but when changed in the panel it will not change on the actual page. Could someone let me know what I could possibly be doing wrong?
Thank you!!
Hello,
I am trying to change the color of the background of the footer on my site, but when changed in the panel it will not change on the actual page. Could someone let me know what I could possibly be doing wrong?
Thank you!!
Hello, can you share your website link?
My guess is that you are having custom CSS codes that are targeting the footer and is overwriting the changes you are applying within the editor.
Cheers!
Here is our link- https://binkyandlulu.com/
Thanks for the help!
Adding the below code at the end of your theme.css file would change your footer background. Adjust the HEX color as you please.
footer#section-footer {
background: #292929 !important;
}
Furthermore, you can adjust your footer headings by using the following:
footer h2 {
color: #ff0000 !important;
}
And your footer list items by:
footer ul li a {
color: green !important;
}
Hope that helps!
Kind regards