Side padding on collection section – prestige theme

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 :slightly_smiling_face:

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

  1. Go to Online Store → Theme → Edit code.
  2. Open your theme.liquid file
  3. 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.