Use flexbox on the section's content wrapper to vertically center everything inside. Set a min-height on the section so there's vertical space to center within.
This is especially useful for hero sections where you want text and buttons centered in the viewport. Combine with text-align: center for full centering.
[data-section-id="YOUR_SECTION_ID"] {
min-height: 80vh !important;
display: flex !important;
align-items: center !important;
justify-content: center !important;
}
[data-section-id="YOUR_SECTION_ID"] .content-wrapper {
display: flex !important;
align-items: center !important;
justify-content: center !important;
text-align: center;
}Build centered sections with our Section Builder toolTry it free →
