Remove White Background from App Section (Dawn Theme)

I’m having trouble removing the white background behind our instagram app section. Anyone know how to do this? Would love it to be black like the rest of the site but there’s no option in the section to choose the colour for this background.

Thanks in advance!!

https://www.stayhighislandcampingco.co.nz/

Hi @JessCoopy ,

Go to Online store > Themes > Actions > Edit code > base.css and add this code at the bottom

.shopify-section { overflow: hidden; }

Hope this solution can work perfectly for you.

Hi There,

Thank you for reaching out to the Shopify forums!

Let me quickly fix that issue for you.

Please add the below CSS in your base.css file:

.content-for-layout.focus-none {
    background-color: #121212;
}

Please do not forget to accept the solution when its working on yours store :face_savoring_food:

Thanks & Regards,
Prezen Tech

Hi @JessCoopy ,

You can follow the instruction below:
Go to Online Store->Theme->Edit code->base.css->paste bellow code in bottom of file.

section.ooo-instagram {
    margin: 0 !important;
}
.ooo-instagram .ooo-instagram-container {
    padding: var(--ooo-instagram-section-vertical-margin) 0 !important;
}

Please try it and let me know

I tested all of these options and they all worked great. Thanks so much everyone!!