Index: editors/tinymce.inc =================================================================== RCS file: /cvs/drupal-contrib/contributions/modules/wysiwyg/editors/tinymce.inc,v retrieving revision 1.9 diff -u -p -r1.9 tinymce.inc --- editors/tinymce.inc 19 Oct 2008 21:29:21 -0000 1.9 +++ editors/tinymce.inc 29 Oct 2008 00:27:17 -0000 @@ -121,6 +121,7 @@ function wysiwyg_tinymce_settings($edito 'remove_linebreaks' => $config['remove_linebreaks'], 'theme' => $theme, 'verify_html' => $config['verify_html'], + 'width' => '100%', ); if ($config['css_classes']) { Index: editors/css/tinymce-2.css =================================================================== RCS file: /cvs/drupal-contrib/contributions/modules/wysiwyg/editors/css/tinymce-2.css,v retrieving revision 1.1 diff -u -p -r1.1 tinymce-2.css --- editors/css/tinymce-2.css 19 Oct 2008 21:29:22 -0000 1.1 +++ editors/css/tinymce-2.css 29 Oct 2008 00:31:17 -0000 @@ -2,7 +2,12 @@ /** * TinyMCE 2.x - * + */ +table.mceEditor { + clear: left; +} + +/** * Align all buttons and separators in a single row, so they wrap into multiple * rows if required. */ Index: editors/css/tinymce-3.css =================================================================== RCS file: /cvs/drupal-contrib/contributions/modules/wysiwyg/editors/css/tinymce-3.css,v retrieving revision 1.2 diff -u -p -r1.2 tinymce-3.css --- editors/css/tinymce-3.css 20 Oct 2008 12:45:09 -0000 1.2 +++ editors/css/tinymce-3.css 29 Oct 2008 00:27:23 -0000 @@ -2,7 +2,12 @@ /** * TinyMCE 3.x - * + */ +table.mceLayout { + clear: left; +} + +/** * Align all buttons and separators in a single row, so they wrap into multiple * rows if required. */