Posted by nicozzz on January 19, 2008 at 3:31pm
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.
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:
<?phpfunction 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.