How to change background of TinyMCE?

后端 未结 8 1523
慢半拍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:50

    I would suggest that you change the css file content.min.css located in your theme directory. Change the definition of

    body{background-color:#595345;}
    

    to anything your wish

    0 讨论(0)
  • 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";
    }
    
    0 讨论(0)
提交回复
热议问题