MyBB Community Forums
[How To?] Change The 'Monocons' Text Editor's Color - Printable Version

+- MyBB Community Forums (https://community.mybb.com)
+-- Forum: 1.8 Support (https://community.mybb.com/forum-175.html)
+--- Forum: General Support (https://community.mybb.com/forum-176.html)
+--- Thread: [How To?] Change The 'Monocons' Text Editor's Color (/thread-165491.html)

Pages: 1 2


Change The 'Monocons' Text Editor's Color - Whoaranki - 2015-01-12

The title says it all, please see this: http://prntscr.com/5ri35c

I tried to use the CSS color property but nothing worked.


RE: Change The 'Monocons' Text Editor's Color - Leefish - 2015-01-12

The text editor background you mean? All I see in your screenshot is a huge black square that doesnt really say anything to me.


RE: Change The 'Monocons' Text Editor's Color - Whoaranki - 2015-01-12

(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


RE: Change The 'Monocons' Text Editor's Color - Leefish - 2015-01-12

http://www.sceditor.com/documentation/theming/ ???


RE: Change The 'Monocons' Text Editor's Color - mmadhankumar - 2015-01-12

try this....

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



RE: Change The 'Monocons' Text Editor's Color - Whoaranki - 2015-01-12

(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?


RE: Change The 'Monocons' Text Editor's Color - SvePu - 2015-01-12

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



RE: Change The 'Monocons' Text Editor's Color - Whoaranki - 2015-01-12

(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


RE: Change The 'Monocons' Text Editor's Color - SvePu - 2015-01-12

My pleasure! Wink


RE: Change The 'Monocons' Text Editor's Color - Edwin - 2015-03-18

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!