Change background color of Instafeed to #242832 color

I am unable to change the background color of my instafeed app. Need help here

https://6864ee-74.myshopify.com/

Pass: yauped

Hello @hydrogro23 ,

Follow these steps:

  1. Go to Online Store β†’ Theme β†’ Edit code

  2. Open your base.css file and paste the following code at the bottom:

section#shopify-section-template--23135624495404__1722333869bb945b28 {
    background-color: #242832 !important;
}

Thanks

Thank you! It’s working now

1 Like

It was resolved! Thank you

Hello @hydrogro23
Go to online store ---------> themes --------------> actions ------> edit code------->base.css ----> line number 155.
search this code

@media screen and (min-width: 750px) {
.section+.section {
margin-top: var(--spacing-sections-desktop);
}
}

and replace with this code

@media screen and (min-width: 750px) {
.section+.section {
margin-top: var(--spacing-sections-desktop);
background-color: #242832 !important;
}
}

and the result will be

If this was helpful, hit the like button and mark the job as completed.
Thanks