MyBB Community Forums

Full Version: Change default color in editor
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
I am running a paid version of fragstar theme, and my board isn't published so i am using it on a localhost server.

The current default color of text is black and i want it to be white in the editor.

I am presuming I have to edit css in the sceditor files in the jscript directory. Anyone know which specific file?

Here is what i mean:

[Image: Ad2wuif.png]
You can modify the css in global.css
.textarea {
color: #fff; }

If you want to modify the background to be white and text same as black than use

.textarea {
background: #fff; }

Regards
WallBB
Thanks mate, i'll have my web designer look at it.