Hi Community,
I am puzzled to remove extra spacing between containers / sections, I had tried every option but unable to remove it. Can you help me in this regards?
URL: https://qcam90oia206z7jv-61554688170.shopifypreview.com/
Theme: Glozin version 1.8.1
Moeed
April 4, 2025, 7:37am
2
Hey @usmekhan91
Follow these Steps:
Go to Online Store
Edit Code
Find theme.liquid file
Add the following code in the bottom of the file above tag
RESULT:
If I managed to solve your problem then, don’t forget to Like it and Mark it as Solution!
Best Regards,
Moeed
Hey @usmekhan91 You should try out the following steps and you’d be able to reduce the extra space between the sections
Log in to your Shopify admin panel.
Click on Online Store and then Themes .
On the right-hand side, click Customize for the theme you want to edit.
In the left-hand side navigation, click Theme settings .
Scroll down to the Custom CSS section.
Paste the CSS code below in the box.
.index-section {
margin: 0px 0;
}
You can adjust the px value above, then click Save.
Feel free to update me on this if it works for you.
Hi @usmekhan91
You try to find and remove it from your store admin > Sales channels > Online Store > Themes > Customize > Theme settings > Layout, check and reduce section padding option
Hello @usmekhan91
Go to online store ----> themes ----> actions ----> edit code ----> theme.css
add this code at the end of the file and save.
#MainContent section:not(:last-child) .section:not(.remove_spacing) {
margin-bottom: 0px !important;
}
result
Thanks