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
2010-03-24 01:32:57
+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
2010-03-24 07:05:47
thanks! that does the trick.
harry_T
2010-03-24 10:31:49