Community & Support

HTMLArea/Xinha textarea width

Hi,

I'm using Xinha on Drupal with the Htmlarea module, but the textarea is very small with the two lines of formatting toolbars inside :

Is it possible to fix this?

Thanks.

Comments

I found that the textarea

I found that the textarea gets a normal width when I don't use the Hide Log Message code in template.php:

<?php
function phptemplate_node_form($form) {
 
// Remove 'Log message' text area
 
$form['log']['#access'] = FALSE;
  return
drupal_render($form);
}
?>

It there any way to hide the log message form without having the textbox horribly small?

Thanks.

nobody click here