Index: contrib/image_gallery/image_gallery.css
===================================================================
RCS file: /cvs/drupal-contrib/contributions/modules/image/contrib/image_gallery/image_gallery.css,v
retrieving revision 1.1
diff -u -r1.1 image_gallery.css
--- contrib/image_gallery/image_gallery.css	2 May 2006 06:54:35 -0000	1.1
+++ contrib/image_gallery/image_gallery.css	26 Feb 2007 03:21:21 -0000
@@ -1,38 +1,44 @@
-ul.galleries { 
+ul.galleries {
   list-style-type : none;
   margin : 0;
   padding : 0;
 }
 
-ul.galleries li { 
+ul.galleries li {
+  position : relative;
   background : #eeeeee;
   border : 1px #cccccc solid;
   margin : 1em 0;
   padding : 1em;
 }
 
-ul.galleries li img { 
+ul.galleries li img {
   float : left;
+  position : relative;
   padding-right : 4px;
   margin-right : 4px;
 }
 
-ul.galleries li div.count { 
-  clear : both;
+ul.galleries li .count,
+ul.galleries li .last {
+  clear : left;
+  margin : 0;
+  padding : 0;
+  font-style : italic;
 }
 
-ul.galleries h3 { 
+ul.galleries h3 {
   margin : 0;
   padding : 0;
 }
 
-ul.images { 
+ul.images {
   list-style-type : none;
   margin : 0;
   padding : 0;
 }
 
-ul.images li { 
+ul.images li {
   float : left;
   margin : 1em;
 }
\ No newline at end of file
Index: contrib/image_gallery/image_gallery.module
===================================================================
RCS file: /cvs/drupal-contrib/contributions/modules/image/contrib/image_gallery/image_gallery.module,v
retrieving revision 1.5
diff -u -r1.5 image_gallery.module
--- contrib/image_gallery/image_gallery.module	20 Nov 2006 04:23:06 -0000	1.5
+++ contrib/image_gallery/image_gallery.module	26 Feb 2007 03:23:01 -0000
@@ -14,7 +14,7 @@
 }
 
 function image_gallery_menu($may_cache) {
-  $items = array();  
+  $items = array();
 
   if ($may_cache) {
     $items[] = array('path' => 'image', 'title' => t('Image galleries'),
@@ -54,7 +54,7 @@
 
 function image_gallery_admin_settings() {
   _image_check_settings();
-  
+
   $form['gallery'] = array('#type' => 'fieldset', '#title' => t('Gallery settings'));
   $form['gallery']['image_images_per_page'] = array('#type' => 'textfield', '#title' => t('Images per page'), '#default_value' => variable_get('image_images_per_page', 6), '#size' => 3, '#description' => t('Sets the number of images to be displayed in a gallery page.'));
 
@@ -147,7 +147,7 @@
   if ($_POST['op'] == t('Delete') || $_POST['confirm']) {
     return drupal_get_form('image_gallery_confirm_delete', $edit['tid']);
   }
-  
+
   return drupal_get_form('image_gallery_admin_form', $edit);
 }
 
@@ -161,7 +161,7 @@
  $form['parent']['#tree'] = TRUE;
  $form['parent'][0] = _image_gallery_parent_select($edit['tid'], t('Parent'), 'forum');
  $form['weight'] = array('#type' => 'weight', '#title' => t('Weight'), '#default_value' => $edit['weight'], '#delta' => 10, '#description' => t('When listing galleries, those with with light (small) weights get listed before containers with heavier (larger) weights. Galleries with equal weights are sorted alphabetically.'));
- 
+
  $form['vid'] = array('#type' => 'hidden', '#value' => _image_gallery_get_vid());
  $form['submit' ] = array('#type' => 'submit', '#value' => t('Submit'));
  if ($edit['tid']) {
@@ -254,7 +254,7 @@
   if (count($galleries)) {
     $content.= '<ul class="galleries">';
     foreach ($galleries as $gallery) {
-      $content .= '<li style="height : '.$height .'px">';
+      $content .= '<li>';
       if ($gallery->count)
         $content.= l(image_display($gallery->latest, 'thumbnail'), 'image/tid/'.$gallery->tid, array(), NULL, NULL, FALSE, TRUE);
       $content.= "<h3>".l($gallery->name, 'image/tid/'.$gallery->tid) . "</h3>\n";

