Question

Can I change background-color of TinyMCE's textarea from white to black? I've tried some old tricks, but it doesn't work.

Was it helpful?

Solution

The tinyMCE loads in a stylesheet that controls the background color. Usually the file name is content.css or content.min.css

If you can find this file in your particular configuration and set the background color of the body element to black, you should be set.

For example: http://www.tinymce.com/tryit/basic.php

The style sheet is located at:

http://tinymce.cachefly.net/4.0/skins/lightgray/content.min.css

OTHER TIPS

You can change the css file content.min.css located in your theme directory. Change the definition of body{background-color:#fff; ...} to body{background-color:#000; ...}

Licensed under: CC-BY-SA with attribution
Not affiliated with StackOverflow
scroll top