Minimal Theme - How do You Reduce The Spacing Between Sections On Home Page

ElsieWolfe
Excursionist
24 0 6

Hi.

Can someone please tell me where to find the code to adjust the spacings between sections on the home page.

Thanks Will

Replies 3 (3)

Hardik29418
Shopify Partner
2913 419 1081

Please provide website url and if your store is password protected then also provide password

- Need a Shopify developer? Chat on WhatsApp or EMAIL ME!


- Your Coffee Tip would do Magic code ❤️
- For Shopify Design Changes | Shopify Custom Coding | Custom Modifications
- Email
ElsieWolfe
Excursionist
24 0 6

Hi Mate, just looking to find out where the code is hiding, don't mind learning.

Thanks

tim
Shopify Expert
3292 236 1184

It's just different versions of the same theme may have different code. For example, Minimal in my test shop has this in theme.scss.liquid Asset:

/*================ Index sections ================*/
.index-section {
  padding-top: $section-spacing-small / 2;
  padding-bottom: $section-spacing-small / 2;

  @include at-query($min, $large) {
    padding-top: $section-spacing / 2;
    padding-bottom: $section-spacing / 2;
  }

  .shopify-section:first-child & {
    padding-top: 0;
    border-top: 0;
  }

  .shopify-section:last-child & {
    padding-bottom: 0;
  }
}
If my post is helpful, consider liking it -- it will help others with similar problem to find a solution.