Nothing you change in this file appears to make any difference to the default font shown in the toolbar or any difference to anything that I can see - however much you refresh the page, delete temporary internet files or open new instances of IE..
Surely there must be someone out there who has managed to change the default font for the editor area!!
I have eventually found out how to make this all work!!
You must have :-
FCKConfig.FullPage = false ;
or the defaults from IE are always picked up and also if FCKConfig.EditorAreaCSS is not set to the absolute path of where fck_editorarea.css actually is, the editor appears to ignore it.
RE: SET DEFAULT FONT
/editor/css/fck_editorarea.css
RE: SET DEFAULT FONT
Surely there must be someone out there who has managed to change the default font for the editor area!!
RE: SET DEFAULT FONT
You must have :-
FCKConfig.FullPage = false ;
or the defaults from IE are always picked up and also if FCKConfig.EditorAreaCSS is not set to the absolute path of where fck_editorarea.css actually is, the editor appears to ignore it.
So originally I had :-
FCKConfig.EditorAreaCSS = FCKConfig.BasePath + 'css/fck_editorarea.css' ;
and this didn't work, so I changed this to :-
FCKConfig.EditorAreaCSS = '/website/fckeditor/editor/css/fck_editorarea.css' ;
and now all is OK.