Working on building a sortable portfolio grid, but the images are all different sizes. The ideal final product would have all the thumbnails the same size, but with the pop-up images being the actual uploaded size. The gallery module has the ability to make all the thumbnails the same size, but lacks the sorting option.
Hey bsheppar!
Try adding this to a codeblock element in the same page.
<style type = "text/css">
.grid-image img {
max-height: 200px !important;
min-height: 200px !important;
}
</style>
Cheers!
Elliott
Hey Elliott,
That worked great for the landscape photos, but not so much for the portrait photos. Since there were only two, I just removed them from the portfolio.
Thank you for solution!