Footer blocks in Squarespace 7.1 often default to left alignment. You can force everything to center using text-align on the footer wrapper and centering flex children.
Social icon blocks and navigation links inside the footer use flexbox, so they need justify-content: center in addition to text-align.
#footer .page-section .sqs-block {
text-align: center !important;
}
#footer .sqs-block-content {
display: flex;
flex-direction: column;
align-items: center;
}
/* Center social icons row */
#footer .sqs-svg-icon--list {
justify-content: center !important;
}
/* Center footer nav links */
#footer .footer-nav-list {
justify-content: center !important;
}Build a centered footer layout with our Footer Layout toolTry it free →
