Here's the code for a custom metabox. Very simply, how would I resize the textarea box? I'd like to add an expression such as cols="50" rows="5".
// Echo out the field
echo '<p>Enter the location:</p>';
echo '<div class="customEditor"><input type="textarea" name="_location" value="' . $location . '" class="widefat" /></div>';
echo '<p>How Should People Dress?</p>';
echo '<input type="textarea" name="_dresscode" value="' . $dresscode . '" class="widefat" />';
(Source: http://wptheming.com/2010/08/custom-metabox-for-post-type/)
Thanks.