Dawn theme - remove empty space between footer and section

Topic summary

A user seeks to eliminate white space between the “text with icons” section and the footer in the Dawn theme.

Proposed Solution:

  • Navigate to: Online Store > Assets > style.css
  • Add CSS code at the bottom:
#content .section-text-with-icons {
  margin-bottom: 0;
}

This CSS rule removes the bottom margin from the text-with-icons section, closing the gap above the footer. The discussion appears resolved with this straightforward styling adjustment.

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

Does anyone know how to remove the white space beneath the “text with icons” section? The section being right above with the footer, and no space in between.

https://american-beauty-supply-4139.myshopify.com/

1 Like
  1. Go to online store > Assets > style.css

and paste this code at the bottom

#content .section-text-with-icons {
    margin-bottom: 0;
}
1 Like