Hi.
Can someone please tell me where to find the code to adjust the spacings between sections on the home page.
Thanks Will
Hi.
Can someone please tell me where to find the code to adjust the spacings between sections on the home page.
Thanks Will
Please provide website url and if your store is password protected then also provide password
Hi Mate, just looking to find out where the code is hiding, don’t mind learning.
Thanks
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;
}
}