Thank you, Locopon. Your provided very detailed instructions, bringing me right to a solution.
However, I find that your option #1 below is not changing the FCKeditor Font list. After I make the change you recommend, leaving only the font 'Verdana" in the FCKConfig.FontNames setting, the Font list still shows all the original fonts (Arial, Comic Sans, Courier New, Tahoma, Times New Roman, Verdana). I even cleared my IE7 cache, restarted the application, and rebooted the server, but still - no change to the Font list.
And because you provided clear instructions for a resolution, I also found the fckconfig.js located in:
\Providers\HtmlEditorProviders\FckhtmlEditorProvider\FCKeditor
.. and changed the FCKConfig.FontNames setting, (just incase) removing all but the Verdana font, and still all the fonts show in the Font dropdown list when using the editor.
I also made your option #2 'default font' change by modifying the body { } selector in the file:
Providers\HtmlEditorProviders\Fck\FCKeditor\editor\css\fck_editorarea.css
from:
body, td
{
font-family: Arial, Verdana, Sans-Serif;
font-size: 12px;
}
to:
body, td
{
font-family: Verdana, Sans-Serif;
font-size: 12px;
}
... just incase this #2 option was needed, too. Still, all the default fonts are showing in the Font dropdown list.
Am I missing a step somewhere?