--- community_tags.module.orig	2010-05-14 07:00:10.000000000 +0200
+++ community_tags.module	2010-05-14 18:26:05.156250000 +0200
@@ -483,18 +483,24 @@ function community_tags_node_view($node,
 
   if (!count($tags)) {
     // User has not yet added tags to this node yet. Show form.
+    $output .= '<div class="community-tags">';
     $output .= drupal_get_form('community_tags_form', array('node' => $node, 'cloud' => $cloud, 'nid' => $node->nid, 'vid' => $vid, 'tags' => NULL, 'inline' => $inline));
+    $output .= '</div>';
   } 
   elseif (user_access('edit own tags')) {
     // User has already tagged this node, but can edit their tags. Show form
     // with the user's tags pre-populated.
     $names = community_tags_flatten($tags);
     $tags = taxonomy_implode_tags($tags);
+    $output .= '<div class="community-tags">';
     $output .= drupal_get_form('community_tags_form', array('node' => $node, 'cloud' => $cloud, 'nid' => $node->nid, 'vid' => $vid, 'tags' => $tags, 'inline' => $inline));
+    $output .= '</div>';
   }
   else {
     // Sorry, no more adding tags for you!
+    $output .= '<div class="community-tags">';
     $output .= '<p>'. t('You have already tagged this post. Your tags: ') . theme('community_tags', $tags) .'</p>';
+    $output .= '</div>';
   }
 
   drupal_add_js(array('communityTags' => array('n_'. $node->nid => array('tags' => $names, 'url' => url('community-tags/js/'. $node->nid), 'add' => t('Add')))), 'setting');
