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.
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.
1 Like
- Go to online store > Assets > style.css
and paste this code at the bottom
#content .section-text-with-icons {
margin-bottom: 0;
}
1 Like
