Some Lazyest Gallery users asked me if it is possible to display random images in rows and columns. The answer is yes! and it’s quite easy. Just some simple css rules should do the trick.
First step is to think about how many image columns you want to display. The images together should fit in the sidebar. The thumbnail you’ve set in Lazyest Gallery settings could be too large, so you have to set the size of your random image thumbnail in your theme style sheet.
Let’s look at the random images on this site. I’ve chosen a size of 48 pixels (the normal thumbs are 120 pixels). Three thumbs fit together in the sidebar. When I set the display rule for the <p> with class lg_thumb_image element as inline, the images display side by side.
The code I have added to my style sheet is:
#sidebar p.lg_thumb_image {
display: inline;
}
#sidebar .lg_thumb_image img {
height:48px;
width:48px;
}
BTW replace #sidebar by your sidebar’s id.

#1 by Lara on 30 January 2010 - 22:19
Hi, I’m using LG with Thickbox. Is it possible to see full sized images with Thickbox? Or is there a way to at least insert a link to the full sized version?
thanks!
#2 by marcel on 30 January 2010 - 23:28
Yes that is possible, but don’t let the thickbox plugin add the codes to your image links
#3 by Lara on 31 January 2010 - 12:41
Thanks, Marcel. What I’m trying to get is a “full image” link placed IN the Thickbox slider, I have navigation links “next” “previous” “close” and captions. But I’d also like to give the option for the user to see the full sized version of the image (outside Thickbox) similar to SmoothBox. But the standard view would still be with Thickbox, the link to the full sized image would be somewhere in the Thickbox bottom navigation area. Is this possible? I know there is a TB_FullSize option but I don’t know how to insert it in the JS file to get this simple link in Thickbox. Any help appreciated! Thanks in advance.
#4 by marcel on 31 January 2010 - 20:37
Sorry Lara, I can’t help you here. Please refer to the Thickbox plugin website.
#5 by Lara on 1 February 2010 - 1:06
I understand, no problem! Thanks anyway, you’re doing an amazing job with Lazyest Gallery.