When using CKEditor in text areas of my form, I encountered an issue with the default style not matching the black background of the site. Here is the basic toolbar setup:
CKEDITOR.replace( 'editor1',
{
toolbar : [ [ 'Bold', 'Italic', '-', 'NumberedList', 'BulletedList', '-',
'Link', 'Unlink','-']]
});
The default span style that needs to be changed looks like this:
<span style="color: rgb(0, 0, 0); font-family: Arial, Helvetica, sans; font-size: 11px;
line-height: 14px; text-align: justify; ">
I am looking for guidance on where I can modify these default values. Any help would be appreciated.