Hi Community,
I want to change the background color of a section on the main page. I already searched the forum for answers and tried to change the custom.css with suggested solutions - and it did not work. The name of the store is themushroomelixir.de
/*FAQ background main page*/
div#shopify-section-162208888668405d6d {
background-color: black;
}
1 Like
Hello @Alexander_Waino
Can you share page URL?
Hello @Alexander_Waino
Please use the below CSS in theme.css
.template-index .faq.index-section {
background: gray;
}
Change the color of your choice and Save.
Thanks
2 Likes
@Alexander_Waino
You can add code by following these steps
-
Go to Online Store → Theme → Edit code.
-
Open your theme.liquid file
-
Paste the below code before on theme.liquid
.faq.index-section {
background: #000 !important;
}
Was my reply helpful? Click Like to let me know!
Was your question answered? Mark it as an Accepted Solution.
1 Like
Hi @Alexander_Waino
This is Theodore from PageFly - Shopify Page Builder App
Please add this code to your theme.liquid above the to get this solved
Step 1: Online Stores > Themes > More Actions > Edit code
Step 2: click on theme.liquid and paste the code above the
Hope this can help you solve the issue
Best regards,
Theodore | PageFly
1 Like