Index: project.inc
===================================================================
RCS file: /cvs/drupal-contrib/contributions/modules/project/project.inc,v
retrieving revision 1.127
diff -u -p -r1.127 project.inc
--- project.inc	29 Oct 2008 00:19:39 -0000	1.127
+++ project.inc	4 Dec 2008 02:18:45 -0000
@@ -358,7 +358,12 @@ function project_project_view($node, $te
         $node->content[$section] = array(
           '#value' => theme('item_list', $values['links'], $values['name']),
           '#weight' => !empty($values['weight']) ? $values['weight'] : 0,
+          '#prefix' => '<div class="project-links-section" id="' . "project-links-$section" . '">',
+          '#suffix' => '</div>',
         );
+        if (!empty($values['clear'])) {
+          $node->content[$section]['#suffix'] .= '<br style="clear:both" />';
+        }
       }
     }
   }
Index: project.css
===================================================================
RCS file: /cvs/drupal-contrib/contributions/modules/project/project.css,v
retrieving revision 1.35
diff -u -p -r1.35 project.css
--- project.css	5 Jan 2007 00:21:08 -0000	1.35
+++ project.css	4 Dec 2008 02:18:45 -0000
@@ -45,3 +45,8 @@
 ul.project-terms {
   padding-left: 1.5em;
 }
+.project-links-section {
+  float: left;
+  padding-right: 2em;
+  padding-bottom: 1em;
+}
Index: release/project_release.module
===================================================================
RCS file: /cvs/drupal-contrib/contributions/modules/project/release/project_release.module,v
retrieving revision 1.74
diff -u -p -r1.74 project_release.module
--- release/project_release.module	29 Oct 2008 00:19:39 -0000	1.74
+++ release/project_release.module	4 Dec 2008 02:18:48 -0000
@@ -1644,6 +1644,7 @@ function project_release_project_page_li
     // it's actually printed as part of the output of the
     // theme_project_release_project_download_table() function above.
     'weight' => 2,
+    'clear' => TRUE,
     'links' => array(
       'view_all_releases' => l(t('View all releases'), 'node/'. $node->nid .'/release')
     ),
