Okay so I want to display a series of images on a line... not multiple lines. Problem is I don't know how much space I will have. I will only be able to fit 2, maybe 3 on an 800x600 while I could fit more in 1600x1200... How should I combat this issue so as to not overload an 800x600 user with the # of images yet not being "too empty" in the 1600x1200?
Not tested. Create a container of fixed height, just tall enough for the images, and overflow: hidden. All that will fit will go on the first row. The leftovers will go on the next row, which won't show. cheers, gary