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
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"; }