Skip to main content

About - Team

Merchant Developer

Displays a responsive grid of team member cards, each with a photo, name, role, and short bio.

tip

Not on the About page by default. Add it in the theme editor with Add section → Team on your About page (or any other page).

The About - Team section presents your people in a tidy grid of cards. Each Team member block shows a photo, name, role, and short bio. The grid automatically adjusts its column count to the number of members so rows always divide evenly.

storefront previewSettings
Team section settings - heading and show section (people are built from Team member blocks below)
Team section settings - heading and show section (people are built from Team member blocks below)

How to use it​

For merchants

In the Shopify theme editor, add or open this section, then:

  1. In the theme editor, open your About page and add the Team section (or find it if already present).
  2. Set the Heading (defaults to "Meet the Team") and pick a Color scheme.
  3. Add a Team member block for each person, then upload a Photo and fill in Name, Role, and Short bio.
  4. Reorder blocks by dragging them to control the display order in the grid.
  5. Use Show section to toggle the whole section on or off, then save.
tip

Use the same square crop for every photo so the grid stays even. Recommended size is 800×800px (1:1).

tip

Desktop shows up to 4 members per row and tablet caps at 2; a 5th member wraps to the next row.

tip

The role text color follows the theme's global accent color.

Settings reference​

SettingTypeDefaultWhat it does
Color schemecolor_schemescheme-1Sets the background and text colors for the section.
Show sectioncheckboxtrueToggle to show or hide the entire section.
HeadingtextMeet the TeamThe section heading, hidden if left blank.

Repeatable Team member blocks each hold a Photo, Name, Role, and Short bio; @app blocks are also supported.

Team member blocks​

Each person is a repeatable Team member block. Select a block to upload their Photo and fill in Name, Role, and Short bio.

storefront previewSettings
Team member block - photo, name, role and short bio
Team member block - photo, name, role and short bio
SettingTypeDefaultWhat it does
Photoimage_picker-Member portrait; a placeholder shows when empty. Use a square crop, around 800×800px.
NametextJane SmithMember name; hidden when blank.
RoletextFounder & CEOJob title, shown in the theme accent color.
Short biotextareaA short description about this team member.One or two lines under the role.

Developer notes​

Developer note

Loads about-main.css and renders section-color-scheme; the role color is injected inline from settings.color_accent.

  • Grid columns are computed in Liquid from the member count: capped at 4 on desktop (min-width 990px) and 2 on tablet (min-width 641px) via a scoped <style> block keyed to #AboutTeam-{{ section.id }}.
  • Member photos render at width: 500 with responsive widths: '300, 500, 700' and lazy loading; a placeholder SVG shows when no image is set.
  • Empty fields (name, role, bio, heading) are conditionally hidden with != blank checks.
{%- for block in section.blocks -%}
<article class="about-team-card" {{ block.shopify_attributes }}>
{{ block.settings.image | image_url: width: 500 | image_tag: loading: 'lazy', widths: '300, 500, 700', alt: block.settings.name }}
<h3>{{ block.settings.name }}</h3>
</article>
{%- endfor -%}