Index: image.css
===================================================================
RCS file: /cvs/drupal/contributions/modules/image/image.css,v
retrieving revision 1.3
diff -H -u -r1.3 image.css
--- image.css	15 Apr 2005 15:14:52 -0000	1.3
+++ image.css	15 Jun 2005 16:04:46 -0000
@@ -4,7 +4,8 @@
   padding : 0;
 }
 
-ul.galleries li { 
+ul.galleries li {
+  position : relative;
   background : #eeeeee;
   border : 1px #cccccc solid;
   margin : 1em 0;
@@ -13,12 +14,17 @@
 
 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 { 
@@ -35,4 +41,4 @@
 ul.images li { 
   float : left;
   margin : 1em;
-}
\ No newline at end of file
+}
Index: image.module
===================================================================
RCS file: /cvs/drupal/contributions/modules/image/image.module,v
retrieving revision 1.157
diff -H -u -r1.157 image.module
--- image.module	13 Jun 2005 07:48:52 -0000	1.157
+++ image.module	15 Jun 2005 16:04:47 -0000
@@ -507,7 +507,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";
