How can I remove the space in-between section - streamline theme

How can I remove the white space in-between section - streamline theme

provengrit.us

1 Like

Hello There,

  1. In your Shopify Admin go to online store > themes > actions > edit code
  2. 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

  1. In your Shopify Admin go to online store > themes > actions > edit code
  2. Find Asset > theme.css and paste this at the bottom of the file:
.index-section {
    margin-top: -60px !important;
}

@ProvenGrit

  1. In your Shopify Admin go to online store > themes > actions > edit code
  2. Find Asset > theme.css and paste this at the bottom of the file:
.index-section {
    margin-top: 0 !important;
    margin: 0px !important;
}