XpressEngine 1.1.0이 되면서, 에디터가 변경이 되었습니다만,
입력할때 글자 크기가 입력후 글을 볼때 나타나는 글자크기보다 조금 크게 나타나서 혼란을 주는 경향이 있습니다.

이 부분을 수정하는 방법입니다.

modules/editor/tpl/js/editor.js 을 여시고,
아래 부분을 찾습니다.

수정하지 않은 상태에서 122번째줄일 겁니다.
    // content 생성
    editor_path = editor_path.replace(/^.//ig, '');
    var contentHtml = ''+
        '<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">'+
        '<html xmlns="http://www.w3.org/1999/xhtml><head><meta http-equiv="content-type" content="text/html; charset=utf-8"/>'+
        '<style type="text/css">'+
        'body {font-size:.8em; line-height:1.6; font-family:Sans-serif; height:'+editor_height+'px; padding:0; margin:0; background-color:transparent; color:'+font_color+';}'+
        '</style>'+
        '</head><body editor_sequence="'+editor_sequence+'">'+
        content+
        '</body></html>'+
        '';

붉은색 부분을 body {font-size:.75em; 으로 변경하면 됩니다.

예전에 변경되기 전의 에디터에서는 body {font-size:9pt; 로 되어 있는데,
이걸 em 단위로 변경하면서 약간 계산이 잘못된 것 같네요.^   ^;

공식적으로 다음 버전에서 수정하실 것 같기는 한데,
필요하신분은 위 내용처럼 수정해서 사용하시면 될 것 같습니다.

출처: http://www.zeroboard.com/17483462