Support

Account

Home Forums Feature Requests Adjustable height/number of rows on textarea Reply To: Adjustable height/number of rows on textarea

  • Thirded. As a temporary fix, you can use the following in functions.php:

    add_filter('admin_head','textarea_temp_fix');
    function textarea_temp_fix() {
    	echo '<style type="text/css">.acf_postbox .field textarea {min-height:0 !important;}</style>';
    }