Index: taxonomy_delegate.module
===================================================================
RCS file: /cvs/drupal-contrib/contributions/modules/taxonomy_delegate/taxonomy_delegate.module,v
retrieving revision 1.1.2.4
diff -u -p -r1.1.2.4 taxonomy_delegate.module
--- taxonomy_delegate.module	10 Mar 2008 16:38:09 -0000	1.1.2.4
+++ taxonomy_delegate.module	5 Nov 2008 21:28:39 -0000
@@ -240,11 +240,10 @@ function taxonomy_delegate_edit_form($vi
      
   $form['vocab'] = array(
     '#type' => 'fieldset',
-    '#title' => '<big>'. $vocab->name ." (vid $vid)</big>",
+    '#title' => $vocab->name ." (vid $vid)",
     '#description' => '<h2>'. $vocab->description .'</h2>',
     '#collapsible' => true,
-    '#collapsed' => false,
-    '#prefix' => '<br/>',
+    '#collapsed' => false
     );
       
   $form['vocab']['roles'] = array(
@@ -303,7 +302,7 @@ function taxonomy_delegate_edit_form_sub
  */
 function taxonomy_delegate_mycategories($op=null, $vid=null) {
   global $user;
-  $output = '<br/>';
+  $output = '';
 
 // In the op checking sections below, we have to make sure we should be here to help prevent
 // cheaters who might be typing in the paths to avoid the legitimate security.
@@ -346,9 +345,9 @@ function taxonomy_delegate_mycategories(
   $vocabs = _taxonomy_delegate_my_vocabularies();
   
   foreach ($vocabs as $vid => $name) {
-    $rows[] = array('<big>'. $name .'</big>',
-      '&nbsp;&nbsp;'. l(t('List terms'), 'category_admin/list/'. $vid),
-      '&nbsp;&nbsp;'. l(t('Add terms'), 'category_admin/add/'. $vid), 
+    $rows[] = array($name,
+      l(t('List terms'), 'category_admin/list/'. $vid),
+      l(t('Add terms'), 'category_admin/add/'. $vid), 
       );
   }
   $header = array(
@@ -377,7 +376,7 @@ function taxonomy_delegate_overview_term
   }
 
   drupal_set_title(t('Terms for ') . check_plain($vocabulary->name));
-  $output = '<br/>';
+  $output = '';
 
   if ($vocabulary->tags) {
     $output .= '<p>'. t('This is a freetagging vocabulary.') .'</p>';
@@ -504,7 +503,7 @@ function taxonomy_delegate_settings_form
     '#default_value' => variable_get('taxonomy_delegate_hides', array()),
     '#description' => t('The selected fields will be hidden on the term add/edit page. Users with "administer taxonomy" permission will always see them.'),
     '#prefix' => '<div class="taxonomy_delegate_checkboxes">',
-    '#suffix' => '</div><div class="clear-block"></div><br/>',
+    '#suffix' => '</div><div class="clear-block"></div>',
     );
   
   $form['taxonomy_delegate_menu'] = array(
