Skip to main content

Featured collections

Merchant Developer

Showcases a set of hand-picked collections as clickable image cards in either a horizontal slider or a static grid.

Featured collections displays a curated list of collections, each shown as an image card with the collection title. Store owners add one block per collection, and each card links straight to that collection's page. The layout can be a swipeable slider (with arrow controls) or a fixed grid.

storefront previewResult
Featured collections
Featured collections
storefront previewSettings
Featured Collections section settings - heading, layout and image shape
Featured Collections section settings - heading, layout and image shape

How to use it​

For merchants

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

  1. In the theme editor, add the Featured collections section (or open it if already on your home page).
  2. Set the Heading and Subheading that appear above the cards.
  3. Choose a Layout (Slider or Grid) and an Image shape (Square, Circle, or Angled).
  4. Add a Collection block for each collection you want to feature, and pick the collection in Select collection.
  5. Optionally upload a Custom image per block to override the collection's default image.
  6. Save. In Slider mode, use the arrows at the bottom-right to scroll through the cards.
tip

For custom images, use a square 1200×1200px (1:1) image so cards stay crisp; leave it blank to fall back to the collection's featured image.

tip

If no custom image and no collection image is set, a placeholder graphic is shown, so add images to avoid gray placeholders.

tip

The slider scrolls one card per click on mobile and four cards per click on desktop (screens 750px and wider).

Settings reference​

SettingTypeDefaultWhat it does
Color schemecolor_schemescheme-1Applies a theme color scheme to the section.
HeadingtextShop by CategoryMain title shown above the collection cards.
SubheadingtextExplore our collectionsSupporting line shown under the heading.
LayoutselectsliderSlider shows a horizontal, arrow-navigated row; Grid shows all cards in a static grid.
Image shapeselectcircleShape of each collection image: Square, Circle, or Angled.

Collection blocks​

Each card is a repeatable Collection block. Select a block to choose the collection in the Select collection picker, and optionally set a Custom image to override the collection's default. (@app blocks are also supported, so apps can inject content.)

storefront previewSettings
Collection block - pick the collection and set an optional custom image
Collection block - pick the collection and set an optional custom image

Developer notes​

Developer note

Loads its own stylesheet featured-collection.css and renders section-color-scheme at the top for scoped color variables.

  • Slider navigation is handled by an inline script scoped by section.id; it computes scroll distance from item width plus a 30px gap and moves 1 card on mobile / 4 on desktop via a matchMedia('(min-width: 750px)') check.
  • Card images request a 600px width via image_url and use loading="lazy"; arrow buttons pick up the global settings.button_shape class.
  • Image shape is applied by outputting section.settings.image_shape as a CSS class on the .fc-image-box wrapper.
{% for block in section.blocks %}
{% assign col = block.settings.collection %}
<a href="{{ col.url | default: '#' }}">
<img src="{{ col.featured_image | image_url: width: 600 }}" loading="lazy">
<h3>{{ col.title | default: "Collection" }}</h3>
</a>
{% endfor %}