hi
i wanted to modify the width of the wysiwyg editor, so i searched for it in the documentation and found this:
http://wiki.moxiecode.com/index.php/TinyMCE:Configuration/width
i tried to place it into my _config.php file and my Page.php file, but this didnt work.
then i tried and added this code to my Page.php:
public function getCMSFields() {
$fields = parent::getCMSFields();
HtmlEditorConfig::get('cms')->setOption('width', '460');
return $fields;
}
But this somehow messed my editor up. there are no buttons displayed anymore, instead i only see bb codes listed below the textbox.
how can i reset the config for the editor?