Table Thumbnail Image Percentage Related Sizing
The following is a solution to make the thumbnail images on a table larger with consistent height regardless of the image's width.
One Easy Step
Add the following code to the CSS tab of the page.
.thumb-wrap {
max-height: 200px;
max-width: 100%;
}
.thumb-wrap img {
max-height: 200px;
max-width: 100%;
height: 200px;
}
We'd love to hear your feedback.