Hi jotv73,
Go to Appearance -> Theme Options -> Design Options Tab -> Custom CSS paste the following CSS code and Click on save all changes button:
.category .post-featured-image {
float: left;
margin-right: 4.67%;
margin-bottom: 22px;
}
After doing it go to theme folder-> library-> functions-> functions.php on line no 376 and replace this code $image .= get_the_post_thumbnail( $post->ID, 'featured', array( 'title' => esc_attr( $title_attribute ), 'alt' => esc_attr( $title_attribute ) ) ).'</a>';
with `$image .= get_the_post_thumbnail( $post->ID, ‘featured-medium’, array( ‘title’ => esc_attr( $title_attribute ), ‘alt’ => esc_attr( $title_attribute ) ) ).'</a>’;
Before making any changes in the code first of all create a child theme then only customize the code. Because if you update to our new version you customized code will be lost, if you didn’t make any child theme.
Thank you!`