My template features a main image with thumbnails below it, but each product may have a different number of thumbnails with varying aspect ratios.
To ensure that the thumbnails look appealing, I scaled them all using the following CSS:
#product-thumbnail {
height: 100px;
}
#product-thumbnail a img {
height: 100%;
}
All these thumbnails are contained within a 630px wide container. If there are multiple thumbnails, they spill over to a second row, overlapping my description text.
I attempted to use 'clear: both' on my description div, but unfortunately, it didn't work as expected.
Here is the link to my jsFiddle for reference: http://jsfiddle.net/7eY3M/1/
Any assistance would be greatly appreciated!