1. <div>
  2. <h2> Public Data Sources for Community Health</h2>
  3. <h3>      Paperwork Reduction Act Submission Form</h3>
  4. </div>
  5. <div><fieldset style="display: left;margin-left:0;padding-left:0;">
  6. <?php
  7. $form['title']['#size'] = 20;
  8. $form['field_datasource_organization'][0]['value']['#size'] = 20;
  9. print drupal_render($form['title']);
  10. print drupal_render($form['field_datasource_organization']);
  11. ?>
  12.  
  13. <?php
  14. print drupal_render($form['body_field']);
  15. ?>
  16. <?php
  17. print drupal_render($form['field_contact_name']);
  18. print drupal_render($form['field_contact_title']);
  19. print drupal_render($form['field_contact_address1']);
  20. print drupal_render($form['field_contact_address2']);
  21. print drupal_render($form['field_contact_city']);
  22. print drupal_render($form['field_contact_state']);
  23. print drupal_render($form['field_contact_zip']);
  24. //print drupal_render($form);
  25. ?>
  26. </fieldset></div>
  27. <pre style="background:#eee;border:1px solid black;clear:both;"><?php print_r($form) ?></pre>