I am unable to change the background color of my instafeed app. Need help here
https://6864ee-74.myshopify.com/
Pass: yauped
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:
Go to Online Store β Theme β Edit code
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
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