I'd like the format of the editor area to mimic the page on which the content will be displayed, so I've made changes to fck_editorarea.css to set background color, font size, etc:
===================================
/* CSS Document */
body {
width: 225px;
background: #efefef;
FONT-SIZE: 12px; COLOR: #000000; FONT-FAMILY: Arial
}
===================================
When I call fckeditor, the background color and font are set as specified, but the width seems to be ignored; text is displayed for the entire width of the editor area instead of wrapping at 225px. How can I fix this?
Note: I do NOT want to change the width of the editor area itself. I want to change the width of content displayed inside the editor area.
Thanks for any suggestions.
--Jeff
===================================
/* CSS Document */
body {
width: 225px;
background: #efefef;
FONT-SIZE: 12px; COLOR: #000000; FONT-FAMILY: Arial
}
===================================
When I call fckeditor, the background color and font are set as specified, but the width seems to be ignored; text is displayed for the entire width of the editor area instead of wrapping at 225px. How can I fix this?
Note: I do NOT want to change the width of the editor area itself. I want to change the width of content displayed inside the editor area.
Thanks for any suggestions.
--Jeff