Change footer background color overlay

To change footer overlay color, you can add custom CSS (this is default color overlay example):

footer .social {
    background: rgba(8,3,37,.45);
}
footer .copyright {
    background: rgba(8,3,37,.7);
}

Example with completely transparent background overlays:

footer .social,
footer .copyright {
    background: none;
}
Was this page helpful?