How to change background of TinyMCE?

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

    Add BODY_CLASS To init like this:

    
    

    Within content.css of correct theme, simply add the following entry:

    body.mceBlackBody {background:#000; color:#fff;}
    

    This will make the body black and the text white within the editor

提交回复
热议问题