--- photosOrig.css	2010-03-28 12:42:54.307609091 +0200
+++ photos.css	2010-03-27 18:52:32.000000000 +0100
@@ -1,4 +1,15 @@
 /*$Id: photos.css,v 1.1.4.3 2009/03/11 02:37:43 eastcn Exp $*/
+/* added by TSG */
+.BlockContent-body .photos_block ul li{
+  list-style: none;
+  background-image: none;
+ }
+
+.Post .photos_block li{
+  background-image: none;
+  float: left;
+}
+
 /*admin*/
 .photos-admin-inline{
   margin: 5px 0;
@@ -438,4 +449,4 @@ a.jQueryeditable_edit_delete{
 
 a.photos_imagehtml_thickbox:hover{
   background:#5AA224 url(thickbox.gif) no-repeat center;
-}
\ No newline at end of file
+}
--- photosOrig.module	2010-03-28 12:40:07.571984583 +0200
+++ photos.module	2010-03-27 18:40:18.000000000 +0100
@@ -774,10 +774,12 @@ function _photos_block_image($type, $lim
 		$image[] = photos_get_info(0, $images);
 	}
   if($image[0]['fid']){
-    $content = theme('photos_block', $image, 'image');
+    $content = "<div class=\"photos_block\">";
+    $content .= theme('photos_block', $image, 'image');
 		if($url && count($image) >= $limit){
 			$content .=theme('more_link', url($url), t('View more'));
 		}
+    $content .= "</div>";
     if($type == 'user') {
       return array($content, $image[0]['name']);
     }else{
@@ -809,10 +811,12 @@ function _photos_block_album($type, $lim
     ++$i;
 	}
   if($i){
-    $content = theme('photos_block', $album, 'album');
+    $content = "<div class=\"photos_block\">";
+    $content .= theme('photos_block', $album, 'album');
 		if($url && $i >= $limit){
 			$content .=theme('more_link', url($url), t('View more'));
 		}
+    $content .= "</div>";
     if($type == 'user') {
       return array($content, $album[0]['node']->name);
     }else{
@@ -1670,4 +1674,4 @@ function _photos_filter_process($mat) {
       }
     }
   }
-}
\ No newline at end of file
+}
