(Squarespace) How to add border to top of Footer

To add border to top of Footer, like this.

You can use this code to Custom CSS.

footer.sections {
    border-top-style: solid;
    border-top-width: 3px;
    border-top-color: red;
}

1 Like