Reply To: The shop full with page will only load 1/2 of each picture sometimes

#10000552
Support
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.