When you get a black background in the HTML Editor.
The solution is easy.
Look for the file found here:
\Providers\HtmlEditorProviders\Telerik\Config\ConfigDefault.xml
Edit it to add this line:
<property name="CssFiles">~/Providers/HtmlEditorProviders/Telerik/Config/EditorCustom.css</property>
Looking like this:
Then edit this file:
\Providers\HtmlEditorProviders\Telerik\Config\EditorCustom.css
To look like this:
body
{
background-color: white;
background-image: url(image_path);
color: black;
}
That’s about it.