Regular container
The container width is determined by the CSS variable --bde-section-width. To utilize this variable effectively, we duplicate it within each section's custom CSS: --section-width: var(--bde-section-width);
This ensures that --section-width is available for calculating various widths in subsequent layouts.
Additionally, note that the section's horizontal padding is initially set to 0 and adjusted to var(--bde-section-horizontal-padding) in Tablet Landscape mode. This ensures consistent default padding on mobile devices.
The default 2 columns layout
Full Bleed with background image
Two-column layout, using this formula for the width:
calc(var(--section-width) / 2 - (var(--bde-section-horizontal-padding) + var(--bde-column-gap) / 2))
Full Bleed to the left
Full Bleed to the right
Full Bleed with image element
Two-column layout using this formula for the width:
calc(var(--section-width) / 2 - (var(--bde-section-horizontal-padding) + var(--bde-column-gap) / 2)).
Images are configured with lazy load and set to 100% height to fill the column space seamlessly.
Full Bleed to the left
Full Bleed to the right
Full Bleed with slant effect
Select the Columns element and change the CSS variable : --slant:20px;
width: calc(var(--section-width) / 2 - (var(--bde-section-horizontal-padding) + var(--bde-column-gap) / 2) - var(--slant));
Full Bleed to the left
Full Bleed to the right
Full Bleed with overlay effect
Select the Columns element and change the CSS variable : --size:50px;
margin: var(--size) auto var(--size) calc(var(--size) * -1);
width: calc(var(--section-width) / 2 - (var(--bde-section-horizontal-padding) + var(--bde-column-gap) / 2) + var(--size));
z-index:10
Overlay to the left
Overlay to the right
Other Full Bleed layouts
No more Colums element, only Divs! Don't forget to check the Custom CSS of these elements.
Full Bleed on one Div - edge to the left
Full Bleed on one Div - edge to the right
Full Bleed on one Div - edge to the left
Full Bleed on one Div - edge to the right
Full Bleed on a Div - 50% right
Full Bleed on a Div - 50% left
Full Bleed on a Div with paddings
Full Bleed on a Div with paddings
Full Bleed on a Div - border effect right
Full Bleed on a Div - border effect left
