• Hello good people,

    Just a small issue – an issuelette, almost:

    in a video tutorial I saw that someone’s ‘add new post’ area on the dashboard was huge. Mine, in contrast, is tiny. I can scroll through it, but never have a good overview.

    Can’t see any way that it’s customizable. Anyone know how to go about that?

    Thanks,

    Charlotte

    http://www.charlotteneumann.com/wordpress

Viewing 3 replies - 1 through 3 (of 3 total)
  • Place this in your theme’s functions.php, and adjust to suit..

    function wp_extra_admin_css() {
    		?>
    		<style type="text/css">textarea#content { height:500px!important; }</style>
    		<?php
    	}
    	add_action( 'admin_head' , 'wp_extra_admin_css' );

    Ensure this code is correctly placed into the file, inside the PHP tags. Backup the file if in doubt..

    Thread Starter Sharlot

    (@sharlot)

    Thanks, t3. Right now I’m a little afraid to try it, but I’ll keep it in mind when I’ll be more audacious with such edits.

    It will also work in your theme stylesheet to, just this part..

    textarea#content { height:500px!important; }

    At the bottom should be fine.

Viewing 3 replies - 1 through 3 (of 3 total)

The topic ‘Edit area damndably small’ is closed to new replies.