2015-01-12, 09:56 AM
Pages: 1 2
2015-01-12, 09:57 AM
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, 10:00 AM
(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
2015-01-12, 10:26 AM
2015-01-12, 10:31 AM
try this....
.sceditor-container textarea {
color: white !important;
}
2015-01-12, 11:29 AM
(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?
2015-01-12, 11:42 AM
You have to edit the file >> "ROOT/jscripts/sceditor/textarea_styles/jquery.sceditor.monocons.css"
Find:
Replace with:
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:50 AM
(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
2015-01-12, 11:53 AM
My pleasure!
2015-03-18, 05:53 PM
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!
At a loss here... a little help would be appreciated!
Pages: 1 2