When editing the description of an image, the alignment appears off. (Centered suddenly on the screen instead of where the description was originally.) This patch fixes the problem. The patch is small:
diff -r -u -b zenphoto/themes/stopdesign/css/photos.css zenphoto-2/themes/stopdesign/css/photos.css
--- zenphoto/themes/stopdesign/css/photos.css 2008-02-14 09:36:29.000000000 -0800
+++ zenphoto-2/themes/stopdesign/css/photos.css 2008-03-07 17:35:56.000000000 -0800
@@ -767,7 +767,10 @@
padding:0 15px 0 0;
}
#desc #imageDesc {
- padding-left:265px;
+ margin-left:265px;
+ }
+#desc div[style="display: block;"] {
+ margin-left:255px;
}
#desc p.posted {
margin-top:1.25em;
I haven't tested it extensively -- it works for me and my family. This fix makes me able to edit the description of videos as well.