Reporting & research on Shopify and ecommerce
Merchants assume Dawn's collage section is a simple image grid they can style freely, when the code caps it at three blocks and four block types and leaves layout decisions to two binary switches.
Most people searching “shopify dawn collage section” assume it is a flexible image grid they can stretch into a lookbook or a portfolio wall. It is not. The section file sections/collage.liquid defines a layout with 8 settings, 4 block types, and a hard ceiling of 3 blocks, so the entire feature is smaller than its name suggests. This is a look at what the section actually contains, what it cannot do, and where merchants keep confusing it with other Dawn sections that live nearby in the same file tree.
Dawn’s collage section, labeled “t:sections.collage.name” in the schema, tops out at 3 blocks per section. That number comes directly from the section file at commit 258f00f, dated 2026-08-10, in the Shopify/dawn repository. There are 4 block types to choose from when filling those 3 slots, so the creative decision is which types go in which position, not how many tiles you can add. A merchant who wants six or eight collage tiles on one screen will not get there with this section, and no combination of the 8 available settings changes that ceiling.
The section separates responsive behavior into two settings rather than one shared grid definition. desktop_layout is a select with 2 variants, and mobile_layout is a separate select, also with 2 variants. That means the desktop arrangement and the mobile arrangement are chosen independently, but each choice is binary. There is no numeric column count, no range slider, and no custom breakpoint logic inside this section. Compare that to Horizon’s sections/collection-list.liquid, which carries layout_type with 4 variants, a columns range from 1 to 8, and a separate mobile_columns select with 2 variants alongside mobile_card_size. That section is built for granular column control across breakpoints; Dawn’s collage section is not, and the gap between “2 layout variants” and “a 1-to-8 column range” is the clearest evidence of what collage was designed to do versus what it was not.
| Setting | Type | Options |
|---|---|---|
| heading | inline_richtext | free text with inline formatting |
| heading_size | select | 5 variants |
| desktop_layout | select | 2 variants |
| mobile_layout | select | 2 variants |
| card_styles | select | 2 variants |
| color_scheme | color_scheme | theme scheme picker |
That table is the complete settings list relevant to appearance, drawn from the 8 total settings in the section file. There is a heading field typed as inline_richtext, so basic formatting is allowed but there is no subheading or body text field attached to the section itself. card_styles gives 2 variants, and color_scheme assigns one of the theme’s color schemes to the whole section as a block, not per tile. If a merchant wants each collage tile styled differently, that has to happen inside the 4 block types themselves, because the section-level settings apply uniformly.
A recurring pattern in search behavior around this term is confusion between the collage section and Dawn’s main blog layout, sections/main-blog.liquid. That file has 7 settings of its own: layout with 2 variants, show_image, image_height with 4 variants, show_date, show_author, and a padding_top range running from 0 to 100 in steps of 4px. None of these settings reference collage, blocks, or a grid of images beyond the single blog post thumbnail per entry. The two sections do not share a settings schema and were not built to substitute for one another, confirmed by reading both files at the same commit, 258f00f, dated 2026-08-10.
Across the tracked market of 329 themes, checked on themescout.co on 2026-09-04, the median theme price is $300 with a range running from $100 to $500, and the average rating across 308 themes sits at 4.53 out of 5, with a median of 23 reviews per theme. None of that pricing or rating data is specific to Dawn’s collage section, but it frames the context a merchant is choosing inside: a market where the typical theme sits near $300 and carries a rating close to 4.5. On performance, the July 2026 CrUX dataset shows a median of 85.5% of mobile visits passing all Core Web Vitals across 247 themes with sufficient data, with the best theme in the market reaching 98.6% and the worst falling to 46.1%. On desktop, the median across 199 themes with sufficient data is 86.2%, with a top score of 99.2% and a bottom score of 30.3%. These are real visitor measurements, not lab runs, and they matter for any image-heavy section like collage because the images inside those 3 blocks still have to load fast enough to keep a store inside that passing range. Shopify’s own Theme Store rules require a minimum average Lighthouse performance score of 60 and a minimum average Lighthouse accessibility score of 90 across the product, collection, and home pages, for both desktop and mobile, so any published theme carrying a collage-style section already cleared that floor before merchants could install it.
Open the theme customizer, count how many blocks you actually need, and if the number is above 3, stop trying to force it into this section and look at a different homepage layout instead. If 3 blocks and 2 layout variants per breakpoint is genuinely enough for the homepage you want, this section will do the job with no code changes required.
The section file sections/collage.liquid caps the collage at a maximum of 3 blocks, confirmed in the Dawn codebase at commit 258f00f dated 2026-08-10. There are 4 block types available to fill those 3 slots, so you are choosing which types to use, not how many blocks to add. If you need more than 3 visual tiles on a homepage, this section is not built for that and you would need a different section or a custom one.
Yes, but only within 2 options each. The setting desktop_layout controls the desktop arrangement with 2 variants, and mobile_layout controls the mobile arrangement separately with its own 2 variants. That means you pick one of two desktop looks and one of two mobile looks, and there is no slider or custom grid definition sitting underneath either setting.
It has a heading setting typed as inline_richtext, so it accepts basic inline formatting rather than plain text only. Heading size is controlled by heading_size, a select with 5 variants. There is no separate subheading field and no block dedicated to descriptive text beyond what the 4 block types allow.
Yes, card_styles is a select setting with 2 variants, plus color_scheme lets you assign a color_scheme value to the whole section. That is the entire visual styling surface: 2 card style choices and one scheme picker, with no per-block override for color or card style inside the collage section itself.
Because Dawn's other content sections sit nearby in the same theme and get confused with collage. The main blog section, sections/main-blog.liquid, is a separate file with 7 settings of its own, including layout with 2 variants, show_image, image_height with 4 variants, show_date, show_author, and a padding_top range from 0 to 100 in steps of 4px. It shares no code with collage.liquid and cannot produce a collage grid.