Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

TinyMCE change textarea background-color

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

like image 942
user3128055 Avatar asked Nov 01 '22 08:11

user3128055


1 Answers

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

like image 97
box86rowh Avatar answered Nov 09 '22 16:11

box86rowh