Rich text section showing a black background cant change color

hey guys

as the title says, my ‘rich text’ section is showing a black background and I cant change it

please help

dawn 11.0 theme

thank you

Hi, @massmonster

It can be changed by custom code. Please share the store URL so that I can assist you.

@massmonster Please follow below steps to change the background color of “Rich text”. Let me know whether it is helpful for you.

  1. From admin go to “Online Store” → “Themes”.
  2. Click “Customize” button from the current theme.
  3. Click “Rich text”.

  1. Click “Change” button in “Color scheme”.

  1. Then change the other option like “Scheme 1”, “Scheme 2” as per your need.

If the provided solutions not works you. Please let me know and provide your store URL to check further on this.

Please provide your support by click “Like” and “Accepted” if our solution works for you. Thanks for your support.

I should have mentioned that the scheme was already set to a white background, hence why the issue is stumping me.

here is URL

https://14ahxbeh101holtc-61384720617.shopifypreview.com

Hello @massmonster
Go to online store ---------> themes --------------> actions ------> edit code------->assets-----> custom.css ----> line number 60
search this code and -----> delete and the save.

.rich-text.sunday-txt-mass {
background: #bd6060 !important;
}

and then try to change the color schemes from here

and the result will be ( i have changed to white.)

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

1 Like

You can try this code by following these steps:
Step 1: Go to the online store ->Theme ->Edit Code.
Step 2: Find the line 60 in custom.css and change the color value like below.

.rich-text.sunday-txt-mass {
    background: #fff !important;
}

Hopefully it will help you. If yes then Please don’t forget hit Like and Mark it as solution!