From 605a839cef6d8602aff3880e5c098462820b9fa7 Mon Sep 17 00:00:00 2001 From: Ian Weller Date: Mon, 13 Feb 2017 15:47:52 -0500 Subject: [PATCH] Fixed the problem with the feature image I found the min-height in the feature image code was being set to the original height of the image. I changed the min-height to 400px to match the max-height. --- functions.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/functions.php b/functions.php index c6f2155..c1b8b2a 100755 --- a/functions.php +++ b/functions.php @@ -107,7 +107,7 @@ function GLM_get_header() { if (has_post_thumbnail()) { $image_data = wp_get_attachment_image_src(get_post_thumbnail_id(), "full"); echo '
'; + . 'min-height: 400px;max-height: 400px">'; } else { echo '
'; -- 2.17.1