How to change website footer color in v12

Hello Everyone,

Can anyone please let me know how to change the footer color in v12. In the website theme option i have created a custom theme by using configure theme option, but couldn’t find the option to change the color of the footer. The footer color remains same as that of the website body color.

Can anyone please let me know how to change the color. If possible can you share me the code of it?

Thanks & regards,
Sujay

you have to over ride the class used by default theme and add color in that, i havent treid color yet, but display condition works with this,

In your ‘Web Theme’ screen, add this code

.web-footer {
background-color: #000000;
}

*Replace #000000 with the hex color of your choice

3 Likes

@hashir, Thank you so much. This worked.

1 Like