Resize tiny mce editor box area!!!

The edit box area is very small how do you make it bigger?
Csampson
Quote · 27 Jan 2012

where in what form, 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 


Quote · 27 Jan 2012

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" 

Quote · 27 Jan 2012

 

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.





Quote · 27 Jan 2012

Excellent post @  prolaznik

 

That is what I call excellent detailed support and the kind of clear and concise answers that this forum needs. Very well done Sir.

Thank you,  thank you, thank you.

Quote · 27 Jan 2012
 
 
Below is the legacy version of the Boonex site, maintained for Dolphin.Pro 7.x support.
The new Dolphin solution is powered by UNA Community Management System.