views:

42

answers:

2

I would like to additional instructions to a custom Drupal form, similar to hook_help, but at the bottom of the form. Is there a function or hook available for this?

+1  A: 

theming forms: http://www.lullabot.com/articles/modifying-forms-drupal-5-and-6
you can cck or other modules...

Nikit
+2  A: 

If you add an element to the form with no type, its' value will be displayed as HTML on the page.

See here

$form['contact_information'] = array(
  '#value' => t('You can leave us a message using the contact form below.'),
);
Jeremy French
thanks! that does the trick.
harry_T

related questions