Remove white space between categories on my page

Solved

Remove white space between categories on my page

SilkyX
Visitor
2 0 1

https://silkyx.shop/

 

Issue is present on the home, categories, and contact page. Can't figure out how to remove the white lines between sections. Any help would be appreciated.

SilkyX_0-1722286003296.png

 

Accepted Solution (1)

Made4uo-Ribe
Shopify Partner
10038 2387 3014

This is an accepted solution.

Hi @SilkyX 

Check this one. 

  1. From your Shopify admin dashboard, click on "Online Store" and then "Themes"
  2. Find the theme that you want to edit and click on "Actions" and then "Edit code".
  3. In the "theme. Liquid" file. Find the </body> tag and paste the code below before the tag. 

 

@media screen and (min-width: 750px) {
    .section+.section {
        margin-top: 0;
    }
}
.section+.section {
    margin-top:0;
}

 

  • And Save. 
  • Reuslt:
    Made4uoRibe_0-1722290863694.png

     

Please don't forget to Like and Mark Solution to the post that helped you. Thanks!

If this fixed your issue, Likes and Accept as Solution are highly appreciated. Coffee tips fuel my dedication.
Get experienced Shopify developers at affordable rates—visit Made4Uo.com for a quick quote!
Need THEME UPDATES but have custom codes? No worries, for an affordable price.

View solution in original post

Replies 2 (2)

Made4uo-Ribe
Shopify Partner
10038 2387 3014

This is an accepted solution.

Hi @SilkyX 

Check this one. 

  1. From your Shopify admin dashboard, click on "Online Store" and then "Themes"
  2. Find the theme that you want to edit and click on "Actions" and then "Edit code".
  3. In the "theme. Liquid" file. Find the </body> tag and paste the code below before the tag. 

 

@media screen and (min-width: 750px) {
    .section+.section {
        margin-top: 0;
    }
}
.section+.section {
    margin-top:0;
}

 

  • And Save. 
  • Reuslt:
    Made4uoRibe_0-1722290863694.png

     

Please don't forget to Like and Mark Solution to the post that helped you. Thanks!

If this fixed your issue, Likes and Accept as Solution are highly appreciated. Coffee tips fuel my dedication.
Get experienced Shopify developers at affordable rates—visit Made4Uo.com for a quick quote!
Need THEME UPDATES but have custom codes? No worries, for an affordable price.
SilkyX
Visitor
2 0 1

Thank you very much, this fixed it!