Agree - I am using a high resolution widescreen monitor and the Tiny MCE editor box area is about the size of a postage stamp!
Please take into account Boonex designers that more and more people are / will be using higher resolution monitors these days and just about everything here looks like it was designed for old CRT monitors at 1024x768 - Try using this stuff on a widescreen 1680x1050, or worse on the newer 1920x1080p monitors !!!
Thanks for the answer but can you be somewhat clearer on what / where you are referring to?
"it's easy you can change what editor it's using by adding this to the form
'html' => 2, options (1 2 3) are available"
that's why i asked him what part he is looking to change so i could explain how to
but lets take the contact form
/contact.php
find
'message_text' => array(
'type' => 'textarea',
'name' => 'body',
'caption' => _t('_Message text'),
'required' => true,
'checker' => array(
'func' => 'length',
'params' => array(10, 5000),
'error' => _t( '_ps_ferr_incorrect_length' )
),
),
and add 'html' => 2,
so it looks like this
'message_text' => array(
'type' => 'textarea',
'name' => 'body',
'caption' => _t('_Message text'),
'required' => true,
'html' => 2,
'checker' => array(
'func' => 'length',
'params' => array(10, 5000),
'error' => _t( '_ps_ferr_incorrect_length' )
),
),
now you have the contact form with full tiny_mce editor
bellow are the 1,2 and 3
0 is the small one blank if you need to modify that one you need to make some changes to /templates/base/scripts/BxBaseConfig.php but that will effect the small form site wide.