March 23, 2014 at 10:03 pm
#10000552
Keymaster
Hello Aaron, we were able to reproduce the issue here (thanks for the information), and it will be fixed in the next version.
To fix that now you can choose one of the following solutions:
1) CSS – css/custom.css:
.thumb-info {
height: auto !important;
}
2) JS – js/custom.js:
$(".thumb-info-list").waitForImages(function() {
$("div.featured-box").css("height", "auto");
$("div.featured-boxes").each(function() {
var wrapper = $(this);
var minBoxHeight = 0;
$("div.featured-box", wrapper).each(function() {
if($(this).height() > minBoxHeight)
minBoxHeight = $(this).height();
});
$("div.featured-box", wrapper).height(minBoxHeight);
});
});
Let me know if the problem persist or if you have any questions.
Thanks.