I have made some changes for the feature images
authorIan Weller <ian@gaslightmedia.com>
Fri, 11 Aug 2017 19:22:21 +0000 (15:22 -0400)
committerIan Weller <ian@gaslightmedia.com>
Fri, 11 Aug 2017 19:22:21 +0000 (15:22 -0400)
I changed the layout of the blog feed if it has a featured image.  It
should be good now.

parts/blog-feed-front.php

index 1fc434e..35c7af3 100644 (file)
@@ -7,10 +7,10 @@ foreach($lastposts as $post) : setup_postdata($post); ?>
     <div class="home-feed-post">
         <div class="row">
             <?php if (has_post_thumbnail( $post->ID )) { ?>
-            <div class="small-11 small-centered columns text-center home-feed-post-image">
+            <div class="small-11 small-centered medium-uncentered medium-3 columns text-center home-feed-post-image">
                 <?php echo get_the_post_thumbnail($post->ID, array(190, 190), array('class' => 'blog-excerpt-img-wrap')); ?>
                 </div>
-                <div class="small-12 medium-12 columns home-feed-post-content">
+                <div class="small-12 medium-9 columns home-feed-post-content">
                  <?php } else { ?>
                 <div class="small-12 columns home-feed-post-content">
                 <?php } ?>