Open contents.css in ckeditor root and modify the code to look like this:
/*
/*
Copyright (c) 2003-2012, CKSource - Frederico Knabben. All
rights reserved.
For licensing, see LICENSE.html or
http://ckeditor.com/license
*/
body
{
/* Font */
font-family: Arial, Verdana, sans-serif;
font-size: 12px;
/* Text color */
color: #fff;
/* Remove the background color to make it transparent
*/
background-color: #222;
}
ol,ul,dl
{
/* IE7: reset rtl list margin. (#7334) */
*margin-right:0px;
/* preserved spaces for list items with text
direction other than the list. (#6249,#8049)*/
padding:0 40px;
}
The problem is that the html which is produced by the editor does not display the font color set in the contents.css file, when the html is inserted into the database there is no font color information. In Safari on the MAC clicking on the font color does not change the color of the font, you must first highlight the text and then set the font color!
Safari does not recognize the color set in the contents.css file "body { /* Font */ font-family: Arial, Verdana, sans-serif; or the 'config.startupFocus = true;' set in the config.js file
Re: Change Text Color
Open contents.css in ckeditor root and modify the code to look like this:
Customer and Community Manager, CKSource
Follow us on: Facebook, Twitter, LinkedIn
If you think you found a bug in CKEditor, read this!
Re: Change Text Color
In Safari on the MAC clicking on the font color does not change the color of the font, you must first highlight the text and then set the font color!
Re: Change Text Color
{
/* Font */
font-family: Arial, Verdana, sans-serif;
or the
'config.startupFocus = true;'
set in the config.js file