MyBB Community Forums

Full Version: Change The 'Monocons' Text Editor's Color
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Pages: 1 2
The title says it all, please see this: http://prntscr.com/5ri35c

I tried to use the CSS color property but nothing worked.
The text editor background you mean? All I see in your screenshot is a huge black square that doesnt really say anything to me.
(2015-01-12, 09:57 AM)Leefish Wrote: [ -> ]The text editor background you mean? All I see in your screenshot is a huge black square that doesnt really say anything to me.

See this: http://prntscr.com/5ri42t this is the Monocons text editor but the text color is not getting changed in the editor box, I tried to use the CSS property: 

color: #fff;


But as I stated, it didn't work Sad
try this....

.sceditor-container textarea {
color: white !important;
}
(2015-01-12, 10:31 AM)mmadhankumar Wrote: [ -> ]try this....


.sceditor-container textarea {
color: white !important;
}

I already tried that, didn't work, I'm not that noob lol

(2015-01-12, 10:26 AM)Leefish Wrote: [ -> ]http://www.sceditor.com/documentation/theming/  ???

What?
You have to edit the file >> "ROOT/jscripts/sceditor/textarea_styles/jquery.sceditor.monocons.css"

Find:
html, body, p, code:before, table {
	margin: 0;
	padding: 0;
	font-family: Tahoma, Verdana, Arial, Sans-Serif;
	font-size: 14px;
	color: #111;
}

Replace with:
html, body, p, code:before, table {
	margin: 0;
	padding: 0;
	font-family: Tahoma, Verdana, Arial, Sans-Serif;
	font-size: 14px;
	color: #fff;
}
(2015-01-12, 11:42 AM)SvePu Wrote: [ -> ]You have to edit the file >> "ROOT/jscripts/sceditor/textarea_styles/jquery.sceditor.monocons.css"

Find:

html, body, p, code:before, table {
	margin: 0;
	padding: 0;
	font-family: Tahoma, Verdana, Arial, Sans-Serif;
	font-size: 14px;
	color: #111;
}

Replace with:

html, body, p, code:before, table {
	margin: 0;
	padding: 0;
	font-family: Tahoma, Verdana, Arial, Sans-Serif;
	font-size: 14px;
	color: #fff;
}

Oh, didn't even see that, thanks anyway Smile
My pleasure! Wink
I have done this with jquery.sceditor.square.css and its not changing. I can even see that in the file I upload it's changed to #fff but keeps reverting back to default color of #111

At a loss here... a little help would be appreciated!
Pages: 1 2