have a client insisting on using images with text? put this puppy within ur doc.ready. may need to adjust the hero placeholder class/id per site.
if ($(".default-hero .templatecontent.text").length) {
jQ171(window).on("load resize", function() {
$(".default-hero-wrap").each(function() {
var imageHeight = $(this).find("img").outerHeight();
$(".default-hero, .default-hero-wrap").css({
"min-height": imageHeight + "px",
"height": imageHeight + "px"
})
})
})
}