Fckeditor uses css classes rtecenter, rteindent1, etc., in drupal because the html filter removes styles such as "style=align-center". But under many themes these classes don't work properly. This can be rectified in general by adding specifications to the fckeditor css file itself. In fckeditor/editor/css/fck_editorarea.css, add these lines:
That fixes the editor window. If the main display is also not showing indents and justification correctly, add these same lines also to the fckeditor.css file, which comes with the drupal fckeditor module.
I would recommend adding these lines to the standard distro fck_editorarea.css file, so as to make these styles work in general for anyone wishing to use fckeditor.
.rteindent1 { margin-left: 1cm; } .rteindent2 { margin-left: 2cm; } .rteindent3 { margin-left: 3cm; } .rteindent4 { margin-left: 4cm; } p.rteleft { text-align: left; } p.rteright { text-align: right; } p.rtecenter { text-align: center; } p.rtejustify { text-align: justify; }
That fixes the editor window. If the main display is also not showing indents and justification correctly, add these same lines also to the fckeditor.css file, which comes with the drupal fckeditor module.
I would recommend adding these lines to the standard distro fck_editorarea.css file, so as to make these styles work in general for anyone wishing to use fckeditor.