How can I can the number of rows for comment textarea?

By the way, I am using the Barlow theme.

Comments

heine’s picture

Open barlows template.php and add (without <?php ?> tags):

/**
  * Change the size of the comment textarea.
  */
function phptemplate_comment_form($form) {
  // Replace 50 with the desired number.
  $form['comment_filter']['comment']['#rows'] = 50;
  return drupal_render($form);
}

--
The Manual | Troubleshooting FAQ | Tips for posting | How to report a security issue.

polar-bear’s picture

Thank you. I works wonderfully.