Hi everyone, can someone please help me figure out the best way to remove some of the padding around the sides and in the middle of a collection section? I am using the prestige theme 
Current look β
What we would like (still has spacing/padding but itβs more refined) β
URL: https://oneaddington.com/
Password: testOA
Please paste the following code in the end of theme.css file.
.section-spacing.section-spacing--tight.color-scheme.color-scheme--scheme-1.color-scheme--bg-3387a22cfd4e69c2ccecc46cc961deeb .container {
padding: 0 !important;
margin: 0 !important;
}
Here is how you can find the theme.css file.
Go to Shopify Admin > Online Store > Edit Code > theme.css
Results:
Let me know if you need more adjustments.
Hi @emilyaugstudios
- Go to Online Store β Theme β Edit code.
- Open your theme.liquid file
- In theme.liquid, paste the below code before
If my reply is helpful, kindly click like and mark it as an accepted solution.
Thanks!
Hello @emilyaugstudios ,
Please add the following code in your theme.css file:
@media(min-width:980px){
.section-stack{
padding:0! important;
}
}
It should resolve your issue. Let me know if you are still facing any problems.