Squarespace 7.1 constrains content within a max-width container. To make a section truly full-width, override the content-wrapper width and remove horizontal padding.
You can target all sections globally or use the section ID for specific ones. This works well for image banners, colored background sections, and full-bleed layouts.
/* Make specific section full width */
[data-section-id="YOUR_SECTION_ID"] .content-wrapper {
max-width: 100% !important;
padding-left: 0 !important;
padding-right: 0 !important;
}
/* Or make ALL sections full width */
.page-section .content-wrapper {
max-width: 100% !important;
padding-left: 0 !important;
padding-right: 0 !important;
}Build full-width sections with our Section Builder toolTry it free →
