I changed the layout of the blog feed if it has a featured image. It
should be good now.
<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 } ?>