I have the latest version of Zenphoto. When I look at my images while logged in as administrator, the image's description is under the image name and everything looks fine. When I log out, the description is centered and over the photo!
Any ideas on how to fix it?
www.natashajapp.com
Mac OSX, Firefox.
I can confirm the problem as well. I don't normally use the Stopdesign theme but I took a look after I read you post.
Unfortunately, I'm have my own problems with page rendering ZP 1.2.2 (see here: http://www.zenphoto.org/support/topic.php?id=4429#post-26196) I hope they get things sorted out soon.
Ok, after a few cups of coffee and some cussing, it seems like I fixed the problem!
Changed the photos.css file:
Under Description, I added:
max-width:30em;
margin:0;
padding:10px 15px 5px 265px;
border-width:0;
font:100% Verdana,Sans-serif;
line-height:1.6em;
letter-spacing:0;
text-transform:none;
text-align:left;
}
Then I changed the style for the description at image.php file, line 35:
Seems to work for now. If someone comes up with another solution I'd love to know!
Version 1.2 is working fine with the descriptions being in the proper place. But none of the nightly builds since then that I've tried work. The first line of a description is properly to the right of the picture under the Photo ID, but other lines of descriptions are in the middle of the image.
Try this in "photo.css":
Look for
position:absolute;
top:170px;
right:0;
width:50%;
text-align:left;
[b]and add[/b]
text-indent: 265px;
}
Look for
background:url("../images/divider_r.gif") no-repeat 265px 0;
max-width:30em;
margin:0;
padding:10px 15px 5px 265px;
border-width:0;
font:bold 100% Verdana,Sans-serif;
line-height:1.6em;
letter-spacing:0;
text-transform:none;
text-align:left;
[b]and add[/b]
text-indent: 0px;
}