Search code examples
teleriksitecorerich-text-editor

How to change Telerik's Rich Text Editor background?


I have a white text in Rich Text Editor and background is white as well. How can I change background in editor, so user will be able to see text. Here is screenshot how it looks like at the moment:

enter image description here


Solution

  • There is “Editor.css” file in “..\website\sitecore\shell\controls\Rich Text Editor” folder. I added following css style there:

    body {
      background-color:black;
    }
    

    And it works as expected.