I’ve added a rich text section to my store homepage and I’d like to change the background color to black. The Responsive theme doesn’t offer built-in functionality for changing just this section and I have zero knowledge of custom coding. Can someone please provide some guidance on how I can make this change manually? Any help would be greatly appreciated!!
hello @RM00316
Please provide website url and if your store is password protected then also provide password So I will check and provide a solution here.
Website is ellovatestore.com and PW should be paga2388. Just and FYI - I’m still in the middle of building the website so it’s still very bare right now. Thanks and look forward to your response!
Kindly send a screenshot of the section you wish to change the background color.
hello @RM00316
please Go to Online Store->Theme->Edit code then go to assets/theme.css ->paste below code at the bottom of the file.
#shopify-section-1480990842836 {
background: #d6d2d2ba;
padding :20px;
}
#shopify-section-1480990842836 h2.section-header.home {
border-bottom: transparent !important;
}
@RM00316 , do this to fix it in 20 seconds:
- In your Shopify Admin go to: online store > themes > actions > edit code
- Find Asset > styles.css and paste this at the bottom of the file:
.shopify-section--rich-text[id]{
background-color: #000000;
padding-bottom: 0 !important;
padding-top: 40px !important;
margin-top: -9px !important;
margin-bottom: 0 !important;
border-bottom: unset !important;
padding-bottom: 30px !important;
border: unset !important;
}
.shopify-section--rich-text *{
color: #ffffff !important;
}
#slideshow-slideshow{
padding-bottom: 0 !important
}
You can change the background color by changing the value #000000
You can change the text color by changing the value #FFFFFF
Please let me know whether it works.
Kind regards,
Diego
Hi Diego,
Your suggestion worked perfectly! Is there any way for me to manually change the color of the divider line within that section as well? Thank you for all your help.
- Ryan

