Setting font for editor textarea

  •  07-15-2008, 5:14 PM

    Setting font for editor textarea

    I am trying to set the default font for the editor textarea programatically - i.e. based on the selection by a user on a "login" page.
     
    The way I decided to go about this is to have several css stylesheets, each with a different font specified for the textarea of the editor.  Then when the page with the editor loads, I set the EditorWysiwigModeCss to the required stylesheet.
     
    The problem I have is that changing the stylesheet doesnt seem to change the default font?  By default the dropdown still has verdana selected.  To make sure, I typed in some text in the editor window and compared it to ms word and the fonts are different.  If I then highlight the text in the editor and select the proper font in the dropdown then it changes font.  But the point is I need several fonts to be "default" based on user selection.
     
    Verdana works (see css code for the textarea below) but not arial or times new roman?  I note that for verdana, more than one font is specified.  Do I need to specify serveral fonts for the others as well? 
     
    Verdana works:
     
    TEXTAREA
    {
     font-size: 10pt;
     color: black;
     font-family: Verdana, Tahoma, Arial;
    }
     
     
    Arial doesnt?
     
    TEXTAREA
    {
     font-size: 10pt;
     color: black;
     font-family: Arial;
    }
     
     
     
    If I need to specify several fonts as per the verdana example, then what do I have to specify for the following fonts?  Is there documentation somewhere that specifies what font family has to be specified for other fonts we might consider in the future?
     
    Arial
    Arial Black
    Arial Narrow
    Comic Sans MS
    Courrier New
    system
    Tahoma
    Times New Roman
    Verdana
    Wing Dings
View Complete Thread