1. Copy three (mt home)/ tools/default_templates/*.tmpl.add files into (mt home)/default_templates/ folder.
  2. Open fck_editorarea.css.tmpl.add file under (mt home)/default_templates/ folder.

  3. Remove all lines above "__DATA__" (including __DATA__ line itself), and save it.

  4. Rename fck_editorarea.css.tmpl.add file to fckeditor_css.tmpl
  5. Repeat step 2~4 in other two files. ( fckstyles.xml.tmpl.add ==> fckeditor_css_mapping.tmpl, fcktemplates.xml.tmpl.add ==> fckeditor_templates.tmpl )

  6. Open (mt home)/lib/MT/default-templates.pl file.

  7. Add following lines and save it.
    my $templates = [
    ### adding starts
    { 'outfile' => 'fck_editorarea.css', 'name' => 'FCKeditor CSS', 'type' => 'index', 'rebuild_me' => '0' },
    { 'outfile' => 'fcktemplates.xml', 'name' => 'FCKeditor Templates', 'type' => 'index', 'rebuild_me' => '0' },
    { 'outfile' => 'fckstyles.xml', 'name' => 'FCKeditor CSS Mapping', 'type' => 'index', 'rebuild_me' => '0' },

    ### adding ends
    {
    'outfile' => 'index.html',
    'name' => 'Main Index',
    'type' => 'index',
    'rebuild_me' => '1'
    },

  8. Open (mt home)/plugins/TemplateRefresh/TemplateRefresh.pl file.

  9. Add following lines and save it.

    $dict->{'index'}{'Site JavaScript'}{'7d7fee169eff2197beb2d402a760f3983ed215b5'} = 1;
    ### add starts
    $dict->{'index'}{'FCKeditor CSS Mapping'}{'edb4b3fc6b70afc0df0b0b932e2c30a83a320566'} = 1;
    $dict->{'index'}{'FCKeditor Templates'}{'b9368894d494c5f3eef9e0290dcf56eb1d2242f9'} = 1;
    $dict->{'index'}{'FCKeditor CSS'}{'9097e8769ce50ae6fd7e29bb7849143156abfbe5'} = 1;

    ### add ends
    ];

    $dict;