I’m currently writing a bit bigger tutorial on creating a custom contact page in WordPress and the tiny content area we have when we add/edit a post/page is making me feel lost all the time. So i used a little trick to increase the height and thought someone else might also find it useful so here it is.

The code bellow goes in your theme’s functions.php file.

add_action('admin_head', 'content_textarea_height');

function content_textarea_height() { 

	echo'
	<style type="text/css">
		#content{ height:500px; }
	</style>
	';

}

It works for everything where we have the WYSIWYG editor (posts, pages, comments).

Our WordPress themes
We have a few WordPress themes that we would like you to take a look at if you want.
check out the portfolio