How can I change the background color of a rich text section completely?

Hi, there, i need help with changing the background of a rich text section. I have put in the code below but there are still patches of white I can not get rid of. Can someone please give me the correct code to make this rich text section completely grey. If you have code that will change the background that is shorter than what I have that would be great. Thank you everyone.

Screen shot and preview url below

https://fjj528vwupdhbidw-54993551588.shopifypreview.com

(this link will last 2 days from 30 November)

#shopify-section-4af9f5d9-db96-41b9-9304-10ea8bfed24a h2 {font-size: 40px !important; background: #E8E9EB;} #shopify-section-4af9f5d9-db96-41b9-9304-10ea8bfed24a {background: #E8E9EB;} #shopify-section-4af9f5d9-db96-41b9-9304-10ea8bfed24a grid {background: #E8E9EB;} #shopify-section-4af9f5d9-db96-41b9-9304-10ea8bfed24a page-width.rich-text {background: #E8E9EB;}

Hi @Timstar
You can try follow this path:
Themes => edit code => asset => theme.scss.liquid
and add this code to bottom of the file theme.scss.liquid

.page-width.rich-text{background: transparent!important;}

Hi @Timstar

I see a mistake on your code that makes it not work. https://prnt.sc/N1sUVtqps_GS

You can replace the code in the image above with the code below.

#shopify-section-4af9f5d9-db96-41b9-9304-10ea8bfed24a .page-width.rich-text {
    background: #E8E9EB;
}

Best regards,
GemPages Support Team

Hi @Timstar ,

This is Victor from PageFly - Free Landing Page Builder.

Please add this code to your theme CSS file

Step 1: Online Stores > More action > edit code > search for your .css file ( could be theme.css

Step 2: Paste the code at the end of the file

.page-width.rich-text {
background: unset !important;
}

Hope this can help you solve the issue.

Best regards,

Victor | PageFly

Hello There,

  1. In your Shopify Admin go to online store > themes > actions > edit code
  2. Find Asset >theme.scss.css and paste this at the bottom of the file:
.index-section .page-width.rich-text {
background: transparent!important;
}

Screenshot :- https://prnt.sc/W2C43IzpcuW-