Skip to main content

Column

A responsive column inside a row, with fine-grained control over width, offset, alignment and order across breakpoints. The column width itself (twelfths plus a single one-fifth 1_5) is set from the builder's width tiles; the remaining controls live across the Layout, Styling, Animations, and Advanced tabs.

A column renders as an outer <div> (the grid column, carrying width / offset / order / alignment) and — only when a styling control needs it — an inner "card" <div> (carrying Box Preset, Background, Spacing and Full Height). Each setting is routed to the leanest layer:

  • Grid / flex utility class — width, offset, order, direction and alignment toggle classes defined once in the builder's frontend-grid.css.
  • Generated preset class — Gap, Box Preset, palette Background and Spacing are generated by css-tokens.php into the shared, cached presets-{hash}.css.
  • Inline style= — reserved for a custom-hex Background, Max Width, and (from the Advanced tab) Position / Z-Index.

The Animations and Advanced tabs are shared, cross-shortcode controls and are covered on the Common controls page. Rows below are in the same order as the actual Layout and Styling tabs. Hover any cell for more detail.

Layout

Optionatts keyControlDefaultResponsiveRenders asStylesheet
Content Alignmentcontent_hResponsive image-pickerDefaultYes<div class="… d-flex align-items-center">frontend-grid.css
Content Directioncontent_directionImage-pickerStackedNo<div class="… d-flex flex-row flex-wrap">frontend-grid.css
Content Vertical Alignmentcontent_vResponsive image-pickerDefaultYes<div class="… justify-content-center h-100">frontend-grid.css
Full Heightfull_heightSwitchNoNo<div class="… h-100"> (inner)frontend-grid.css
Gapcontent_gapResponsive short-selectNoneYes<div class="… sc-cgap-3 sc-cgap-md-4">presets-{hash}.css
Column Vertical Alignmentalign_selfResponsive image-pickerDefault (stretch)Yes<div class="fw-col-6 align-self-center">frontend-grid.css
Width Overridecol_widthResponsive image-pickerDefaultYes<div class="fw-col-12 fw-col-md-6 fw-col-lg-4">frontend-grid.css
Max Widthmax_widthUnit-inputNoneNo<div class="fw-col" style="max-width:640px">Inline style
Offsetcol_offsetResponsive image-pickerNoneYes<div class="fw-col-6 fw-offset-2 fw-offset-lg-0">frontend-grid.css
Reverse Ordercontent_orderResponsive switchDefaultYes<div class="… d-flex flex-column-reverse">frontend-grid.css
Ordermobile_orderResponsive short-selectDefaultYes<div class="fw-col-6 fw-order-first fw-order-md-0">frontend-grid.css
  • Content Alignment — align the whole column's content at once (the simplest way to center a column, including a Special Heading's overline).
  • Content DirectionStacked (default) stacks elements vertically; Inline lays them side-by-side (wrapping if they don't fit). In Inline mode the flex axes swap, so Content Alignment drives horizontal distribution and Content Vertical Alignment works the cross axis.
  • Content Vertical Alignment — position elements within the column's height: Top / Default, Middle, Bottom, or Space Between (needs height, e.g. Full Height or a taller sibling).
  • Full Height — stretches the inner card to the full row height so colored cards line up next to siblings.
  • Gap — space between the column's elements, from the site Gap Scale; works in both directions once the column has 2+ elements.
  • Column Vertical Alignment — align this column against its row siblings (visible only with unequal-height columns).
  • Width Override — Phone / Tablet / Desktop — mobile-first per-breakpoint width. Phone is the base (applies at all widths); Tablet overrides from md up, Desktop from lg up; a device left on Default inherits the smaller one. Each offers Default, 1/1212/12, a fifth, or Auto.
  • Max Width — an exact cap for an Auto-width column.
  • Offset — Phone / Tablet / Desktop — per-breakpoint indent (1/1211/12), pushing the column right by that many twelfths.
  • Reverse Order — show this column's own elements in reverse, per device, without changing the markup (flips the stack in Stacked direction, swaps the row in Inline).
  • Order — reorder this whole column relative to its siblings per breakpoint: Default, First, 112, or Last.

Styling

Optionatts keyControlDefaultResponsiveRenders asStylesheet
Text Alignmenttext_alignAlignment buttonsInheritNo<div class="fw-col-6 text-center">frontend-grid.css
Background Colorbg_colorCompact color pickerNoneNo<div class="… bg-primary"> (inner)presets-{hash}.css / inline
Box Presetborder_presetBox-style pickerNoneNo<div class="… boxp-card"> (inner)presets-{hash}.css
Margin & PaddingspacingSpacingNoneNo<div class="… pt-4 pb-3"> (inner)presets-{hash}.css
  • Text Alignment — sets text-align for the whole column; nested content inherits it. Distinct from Content Alignment (which is flexbox).
  • Background Color — a compact color picker for the column's inner card. A palette preset applies a bg-{slug} class; a custom hex is written inline.
  • Box Preset — a reusable box style (border, corners, shadow and optional background fill, with a Default/Hover state) defined in Theme Settings → Components → Box Presets, applied as a .boxp-{name} class on the column's inner card wrapper.
  • Margin & Padding — a spacing control: All Sides applies to every side at once; any per-side value (Top, Right, Bottom, Left) overrides it for that direction.
Outer column vs. inner card

Grid and flex-slot controls (Width, Offset, Order, Column/Content Alignment, Text Alignment) sit on the outer column <div>. Styling controls (Box Preset, Background, Margin & Padding, Full Height) render on an inner card <div> — created only when one of them (or an Advanced Inner Wrapper Class) is set. When no inner card exists, the content-alignment classes fall back onto the outer column.

Animations

Standard entrance-animation controls (Effect, Duration, Delay, Offset), shared across all elements — see Common controls → Animations.

Advanced

Shared per-element controls — see Common controls → Advanced — including Position (Static / Relative / Absolute / Sticky / Fixed) and Z-Index, which render as an inline style= on the outer column. Column also adds an Inner Wrapper Class field: when set, an inner <div> is rendered around the column content carrying those classes (e.g. card p-4 rounded-3) without affecting the grid wrapper.