Update the crop for the featured images to use center.
authorSteve Sutton <steve@gaslightmedia.com>
Fri, 14 Jul 2017 12:50:18 +0000 (08:50 -0400)
committerSteve Sutton <steve@gaslightmedia.com>
Fri, 14 Jul 2017 12:50:18 +0000 (08:50 -0400)
Updating from top to center for the background-position of the featured
images.

functions.php
style.css

index eb528e7..6c64a6d 100644 (file)
@@ -82,12 +82,12 @@ function glm_get_header() {
 
     if (has_post_thumbnail() && is_post_type('page')) {
             $image_data = wp_get_attachment_image_src(get_post_thumbnail_id(), "full");
-            echo ' style="background-image: url('.$image_data[0].');height:0;padding:0;padding-bottom:20%;background-position:top center;background-size: 100%;background-repeat:no-repeat;max-height: 300px;overflow-y: hidden; "';
+            echo ' style="background-image: url('.$image_data[0].');height:0;padding:0;padding-bottom:20%;background-position:center center;background-size: 100%;background-repeat:no-repeat;max-height: 300px;overflow-y: hidden; "';
     } else if(is_post_type('post') ){
-            echo ' style="background-image: url('.get_template_directory_uri().'/assets/blog-default.png);height:0;padding:0;padding-bottom:20%;background-position:top center;background-size: 100%;background-repeat:no-repeat;max-height: 300px;overflow-y: hidden;"';
+            echo ' style="background-image: url('.get_template_directory_uri().'/assets/blog-default.png);height:0;padding:0;padding-bottom:20%;background-position:center center;background-size: 100%;background-repeat:no-repeat;max-height: 300px;overflow-y: hidden;"';
             echo ' class="no-featured"';
     } else if(!has_post_thumbnail() && is_post_type('page')){
-         echo ' style="background-image: url('.get_template_directory_uri().'/assets/page-default.png);height:0;padding:0;padding-bottom:20%;background-position:top center;background-size: 100%;background-repeat:no-repeat;max-height: 300px;overflow-y: hidden;"';
+         echo ' style="background-image: url('.get_template_directory_uri().'/assets/page-default.png);height:0;padding:0;padding-bottom:20%;background-position:center center;background-size: 100%;background-repeat:no-repeat;max-height: 300px;overflow-y: hidden;"';
             echo ' class="no-featured"';
     }
     echo '>';
index 942182b..c1dc2b2 100644 (file)
--- a/style.css
+++ b/style.css
@@ -3,5 +3,5 @@ Theme Name: GreatLakesCenterfortheArts
 Author: Gaslight Media
 Author URI: http://www.gaslightmedia.com
 Description: A theme for GreatLakesCenterfortheArts
-Version: 1.0.6
+Version: 1.0.10
 */