Increase the excerpt field height
wordpress snippet
Adding this snippet to the functions.php of your wordpress theme will increase height of the excerpt field within your post editing screen.
snippet : PHPcopy
add_action('admin_head', 'excerpt_textarea_height');
function excerpt_textarea_height() {
echo'
<style type="text/css">
#excerpt{ height:500px; }
</style>
';
}











