How to remove gap between sections? Dawn theme

Topic summary

A user is experiencing an unwanted gap with black background appearing between their featured collection section and collage section on their Shopify store using the Dawn theme.

Another user provided a solution:

  • Navigate to the section settings for the affected section
  • Add custom CSS code under “Custom CSS”
  • The suggested CSS rule involves setting overflow properties to hidden

The discussion appears to be resolved with this CSS-based fix to eliminate the spacing issue between sections.

Summarized with AI on November 11. AI used: claude-sonnet-4-5-20250929.

There is a space between my featured collection section and collage section, i don’t know why it is happening.

You can see the black background in between the sections.

How can I fix it? my site is https://heshskates.com/

Thanks!

In section settings for this section, under “Custom CSS” add this rule:

.isolate {
  overflow: hidden;
}
2 Likes