Skip to main content

Creative Reveal Banner

Merchant Developer

A row of up to five portrait image panels whose headings and buttons reveal on interaction, built from repeatable Slide blocks.

The Creative Reveal Banner displays a row of tall portrait image panels, each with a subheading, heading, and a button that is revealed as the panel becomes active. It is ideal for showcasing collections or seasonal campaigns side by side, and supports up to five Slide blocks plus optional app blocks.

storefront previewResult
Creative Reveal Banner
Creative Reveal Banner
storefront previewSettings
Creative Reveal Banner section settings (the panels are built from Slide blocks below)
Creative Reveal Banner section settings (the panels are built from Slide blocks below)

How to use it​

For merchants

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

  1. In the theme editor, add the Creative reveal banner section (or open it if already placed on your home page).
  2. Add a Slide block for each panel you want, up to a maximum of five.
  3. In each Slide, choose an Image (portrait works best) and enter the Subheading and Heading.
  4. Set the Button label and Link so shoppers can jump to the matching collection or page.
  5. Optionally adjust the Button shape and Button colors per slide, then pick a Color scheme for the section.
  6. Choose a section Layout - Expand, Diagonal, or Overlap - to change how the panels arrange and reveal.
  7. Save and preview to check the reveal effect on desktop and mobile.
tip

Use consistent portrait images around 1200×1500px (4:5) so all panels line up; a dark gradient overlay is applied automatically so light text stays readable.

tip

Leave Button colors on Theme default to keep a consistent look, and only switch to Custom when a specific slide needs its own button colors.

tip

If a slide has no image, a numbered placeholder graphic is shown, so add images before publishing.

Settings reference​

SettingTypeDefaultWhat it does
Color schemecolor_schemescheme-1Sets the section's background and text colors from the theme's color schemes.
LayoutselectexpandPanel arrangement/reveal style: Expand, Diagonal, or Overlap. Applied to the whole section as data-layout.
Imageimage_picker-Portrait image filling the panel; the heading and button overlay its lower area. Recommended: 1200×1500px (4:5). (Per Slide block.)
SubheadingtextNEW SEASONSmall text shown above the heading. (Per Slide block.)
HeadingtextCOLLECTIONMain heading shown on the panel. (Per Slide block.)
Button labeltextSHOP NOWText on the revealed button; leave blank to hide the button. (Per Slide block.)
Linkurl-Destination for the button. (Per Slide block.)
Button shapeselectdefaultTheme default, Rectangle, Rounded, or Rounded rectangle. (Per Slide block.)
Button colorsselectdefaultSelect 'Custom' to override the global button colors set in Theme Settings. (Per Slide block.)
Custom button backgroundcolor#ffffffOnly used when 'Button Colors' is set to Custom. (Per Slide block.)
Custom button textcolor#000000Only used when 'Button Colors' is set to Custom. (Per Slide block.)

Slide blocks​

Each panel is a repeatable Slide block (up to five). Select a Slide block to set its own image, subheading, heading, and button - this is where you build each panel. The section also accepts Shopify @app blocks.

storefront previewSettings
Slide block - image, subheading, heading and button for one panel
Slide block - image, subheading, heading and button for one panel

Developer notes​

Developer note

Styles live in section-creative-reveal.css (loaded via stylesheet_tag); there is no section-specific JS in the Liquid file, so the reveal/active state is driven by CSS with the first panel marked is-active.

  • Per-block button colors are emitted in an inline {% style %} block scoped to #RevealBtn-{{ block.id }}; the theme-default colors come from the section color-scheme tokens rgb(var(--color-button)) / rgb(var(--color-button-text)) unless button_color_style == 'custom'.
  • Images render at width: 1400 with loading="lazy"; empty slides fall back to a numbered placeholder_svg_tag.
  • {% render 'section-color-scheme' %} applies the selected color scheme, and each panel carries block.shopify_attributes for theme-editor targeting.
{%- for block in section.blocks -%}
<div class="reveal-panel {% if forloop.first %}is-active{% endif %}">
<img src="{{ block.settings.image | image_url: width: 1400 }}">
<h2 class="reveal-heading">{{ block.settings.heading }}</h2>
</div>
{%- endfor -%}