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
7846 1896 2325

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 is highly appreciated. Coffee tips fuels my dedication.
Get EXPERIENCED Shopify developers at affordable rates—visit Made4Uo.com for quick quote!
Do not lost your Shopify store! Get FREE trial with ✔️ Rewind Backup: Automatic, reliable, stress-free.
Need THEME UPDATES but has custom codes? No worries, contact us for affordable price.

View solution in original post

Replies 2 (2)

Made4uo-Ribe
Shopify Partner
7846 1896 2325

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 is highly appreciated. Coffee tips fuels my dedication.
Get EXPERIENCED Shopify developers at affordable rates—visit Made4Uo.com for quick quote!
Do not lost your Shopify store! Get FREE trial with ✔️ Rewind Backup: Automatic, reliable, stress-free.
Need THEME UPDATES but has custom codes? No worries, contact us for affordable price.
SilkyX
Visitor
2 0 1

Thank you very much, this fixed it!