Changing the Candidate Space font family

Candidate Space is delivered with a font family setting of Helvetica, Arial, sans-serif. The font family can be changed with a plain text editor, such as Notepad or Notepad++. Do not use Wordpad or Microsoft Word, as they may introduce invalid characters.

  1. Select themes/styles.css.
  2. Edit these lines, replacing the existing font family.
    font-family: Helvetica, Arial, sans-serif;
        font-size: 13px;
        font-weight: normal;
    
  3. Save and close the file.
  4. Select js/userTheme.js.
  5. Edit the fontFamily line, replacing none with another font or comma-separated list of fonts.
    var UserTheme = {
    
        fontFamily : 'none', //example, 'Times New Roman'
    
    ...
        colorScheme : 'none'
    
    }