How can I remove the white space in-between section - streamline theme
1 Like
Hello There,
- In your Shopify Admin go to online store > themes > actions > edit code
- Find Asset > theme.css and paste this at the bottom of the file:
.index-section {
margin: 0!important;
}
1 Like
Hello @ProvenGrit
You can try this code: it will be helpful to you
Go to the Online Store->Theme->Edit code->Assets->theme.css>Add this code at the bottom.
.index-section {
margin-bottom: 0 !important;
}
Hi, @ProvenGrit
- In your Shopify Admin go to online store > themes > actions > edit code
- Find Asset > theme.css and paste this at the bottom of the file:
.index-section {
margin-top: -60px !important;
}
- In your Shopify Admin go to online store > themes > actions > edit code
- Find Asset > theme.css and paste this at the bottom of the file:
.index-section {
margin-top: 0 !important;
margin: 0px !important;
}