Page 1 of 1

TinyMCE: I change BG to black, now I have black text on black bg

Posted: Thu Oct 23, 2008 6:29 pm
by areimann
The web site I am creating has a black background.  So I went into the Admin and went to:

Extension > TinyMCE WYSIWYG > Advanced

And I put this into "Additions to stylesheet:"

*, body, textarea, p,div,h1,h2,h3,h4,h5,h6,div,blockquote,dt,dd,code,samp {
color: white;
background: black;
}
li {
  margin-left : 16px;
  color: white;
}

The background is black now, but the default text is black also.  It does turn white once you hit enter.

Anyone know how to make it start text as white?

thanks

Re: TinyMCE: I change BG to black, now I have black text on black bg

Posted: Fri Oct 24, 2008 2:30 pm
by SideshowBob
Hmm, I don't quite see the same thing as you but try adding this:

Code: Select all

body#tinymce {color: white !important;background: black !important;}
Bob

Re: TinyMCE: I change BG to black, now I have black text on black bg

Posted: Fri Oct 24, 2008 3:46 pm
by areimann
nice.... that fixed it.

thanks

Re: TinyMCE: I change BG to black, now I have black text on black bg

Posted: Fri Oct 24, 2008 4:05 pm
by SideshowBob
cool, don't forget to mark the subject of your first post with [Solved]

Bob