Problem with configuration

Hello,
I have two problems concerning the system in version 7.13.4
Sugar Version 6.5.25 (Compilation 344).

is it possible to declare somewhere in the settings that the email entry field by default is larger and that it does not have to be widened each time?

Create a file: ./custom/include/tinyMCEDefaultConfig.php

Edit the file and put this text:

<?php

    $defaultConfig = array(
        'convert_urls' => false,
        'valid_children' => '+body[style]',
        'height' => 300,
        'width'    => '100%',
        'theme'    => 'advanced',
        'theme_advanced_toolbar_align' => "left",
        'theme_advanced_toolbar_location' => "top",
        'theme_advanced_buttons1' => "",
        'theme_advanced_buttons2' => "",
        'theme_advanced_buttons3' => "",
        'strict_loading_mode' => true,
        'mode'    => 'exact',
        'language' => 'en',
        'plugins' => 'advhr,insertdatetime,table,preview,paste,searchreplace,directionality',
        'elements' => '',
        'extended_valid_elements' => 'style[dir|lang|media|title|type],hr[class|width|size|noshade],@[class|style]',
        'content_css' => 'include/javascript/tiny_mce/themes/advanced/skins/default/content.css',
    );

Change height from 300 to '100%', save, reload page, and report back here if this was your Solution.

1 Like