Page 1 of 1

Text in WYSIWYG Editor is white (Not visible) (Solved)

Posted: Sun Aug 30, 2009 6:52 pm
by ctrujillo45
Hello there-

I have recently started using CMSMS. The body text of my website is set to be color "white". I altered this is my CSS, however it now appears "white" when I attempt to edit the content of the page in the WYSIWYG editor?

Here is my link to the site:

http://www.renegademikesportfishing.com ... e=the-boat

As you can see, the content is all white, which looks perfect. It's just when I try to edit the content in the admin section it is not visible. I am assuming this is a CSS issue.

My css code is posted below:

body{
     background-image:url(/images/bg.jpg);
background-color: #0a2c45;
text-align: left;
font-family: Tahoma;
font-size: 11px;

    }


a:link {color:white}
a:hover {color:white}
a:visited {color:white}

.whiteBodyText {
font-family: Tahoma;
font-size: 11px;
color: #FFFFFF;
}


body {
  text-align: left;
   font-family: Tahoma;
  color: #FFFFFF;
background-color: #0a2c45;

}

Any help is greatly appreciated.

Re: Text in WYSIWYG Editor is white (Not visible)

Posted: Sun Aug 30, 2009 8:19 pm
by Dr.CSS
There is a place in tiny admin on Advanced tab to reset the css, try adding color:#000 there and it should help...

Re: Text in WYSIWYG Editor is white (Not visible)

Posted: Mon Aug 31, 2009 1:27 am
by sn3p
For TinyMCE go to Advanced tab and put this CSS in the "Additions to stylesheet" field:

Code: Select all

body { color: #000; }