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.
Text in WYSIWYG Editor is white (Not visible) (Solved)
-
ctrujillo45
- Forum Members

- Posts: 20
- Joined: Tue Jul 07, 2009 5:29 am
Text in WYSIWYG Editor is white (Not visible) (Solved)
Last edited by ctrujillo45 on Tue Sep 01, 2009 4:51 am, edited 1 time in total.
Re: Text in WYSIWYG Editor is white (Not visible)
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)
For TinyMCE go to Advanced tab and put this CSS in the "Additions to stylesheet" field:
Code: Select all
body { color: #000; }
