Damn, And yes, it will make them far more visible, the pictures are the covers of books and if the picture is cropped the user cant see the book. Ok, well i guess im going to have to do some custom coding then, probably steal a few lines from gallery 2, thanks for the help.
I think I maybe didn't get you right. If you want to have all thumbs the same height without cropping what would be useful for book covers you just need to disable the cropping, set "Images size is longest size" and all thumbs should have the same height, even if they are landscape images. Of course that could mangle the look of the theme, you need to adjust that manually.
Please take a look at our functions guide, too, maybe you find what you are looking for: http://www.zenphoto.org/documentation
yes since ZP crops to the minimum side it is harder to have a theme with thumbnails of different widths and heights without them overlapping each other OR causing them to block the wrap around when the window is resized.
I found a solution loosely based on flickr's contacts' stream
wrap your thumbnails [i]inside[/i] a Div by the class .imagethumb
`
.imagethumb {
float: left;
position: relative !important;
display: block;
border: 0pt;
padding: 0px;
margin-right: 8px;
margin-bottom: 0px;
text-align: center;
min-width: 100px;
height: 250px !important; // play around with this
}
`
this way the thumbnails will reside in boxes of equal height but variable width. When the height is equal the wrap around is done smoothly.
some of that code might be extra, but as long as it works i don't give a ...
you'll have to choose a theme and mess with the css until it works
good luck :]
Hmm, ok well If you look at my current gallery
http://www.thechaosnode.com/index.php?album=book
With it set not to crop and Images size is longest size set as on.
As you can see it is quite garbled up, but if i have crop set on you cannot tell what the books are. Thats the situation, if they where resized to be the same size the site wouldn't be garbled, the quality would be less however you could still make out the title.
Seems like you need to use the function getCustomImageURL() to make you thumbnails. Documentaton for this and other functions is at: http://www.zenphoto.org/documentation/
Take a closer look, for example: http://www.zenphoto.org/documentation/zenphoto/_template-functions.php.html#functiongetCustomImageURL
hey Infidel
i added the bellow to your css file
.album {
min-height: 180px;
}
/ mac hide \/
180 should be bigger than the crop height you set in your ZP options (i am guessing it definitely is)
and viola it seems to clear out your problem! =]
yay for you!
and as both the developers mentioned you could call for customized thumbnails using the mentioned function for the extra customized feel