Change content area box size

      No Comments on Change content area box size

Just add this code to your functions.php and its done.You can change the size 500px to any……….

<?php

function reduce_editor_height() {
    echo '<style>
        #postdivrich {
            max-height: xxpx; /* Reduce content editor height */
            overflow-y: auto;
        }
    </style>';
}
add_action('admin_head', 'reduce_editor_height');

Leave a Reply

Your email address will not be published. Required fields are marked *