How to change background of TinyMCE?

后端 未结 8 1560
慢半拍i
慢半拍i 2020-12-17 10:19

I have just install TinyMCE editor for my website. But the default background is black and text colour is gray. Anybody can tell me how to change background to white and tex

8条回答
  •  清酒与你
    2020-12-17 10:53

    Or you can change the color using js:

    tinyMCE.init(
            mode : "textareas",
            theme : "simple",
            oninit : "postInitWork"
        });
    
    function postInitWork()
    {
      var editor = tinyMCE.getInstanceById('myEditorid');
      editor.getBody().style.backgroundColor = "#FFFF66";
    }
    

提交回复
热议问题