i wanna remove some padding on my home page from here
Hi @Emiway1
You can achieve this by adding this CSS code:
You just need to follow these steps:
- Go to the Online Store
- Edit Code
- Find theme.css / base.css
And past that CSS Code:
.shopify-section--featured-collections .section {
margin-top: 10px;
}
The result will be like this:
I hope this solution works for you!
If it does, please Like It and Mark It As A Solution, or support me by Buying Me A Coffee to keep me going!
Hello @Emiway1
You can add code by following these steps
-
Go to Online Store → Theme → Edit code.
-
Open your theme.liquid file
-
Paste the below code before on theme.liquid
Result:
my reply helpful? Click Like to let me know!
your question answered? Mark it as an Accepted Solution.
Hello @Emiway1
- In your Shopify Admin go to online store > themes > actions > edit code
- Find Asset > theme.css and paste this at the bottom of the file:
.shopify-section--featured-collections .section {
margin-top: 5px;
}
Hello, @Emiway1
- Go to Online Store
- Edit Code
- Find theme.css/base.css file
- Add the following code in the bottom
.section {
display: block;
margin: 0px !important;
}
Thanks!



