Have you tried after removing the class “attachment-blog-shortcode-thumb” from the img tag.
<img src="https://wp-themes.com/wp-content/themes/connexions-lite/images/front-blog-img.jpg" alt="Elements" class="attachment-blog-shortcode-thumb wp-post-image">
The problem is related to
.home .news_blog .skt_blog_top img {
max-height: 240px;
}
If I change the max-height in the css, the thumbnails appear as desired, but the grid layout breaks down and the post boxes start jumbling up. I haven’t been able to figure out why this is yet.
Tanay
(@tanaykhandelwal-1)
Hi there,
The theme is using image size for the front blog thumbnails check
1. https://themes.trac.wordpress.org/browser/connexions-lite/1.0.4/front-page.php#L56
2. https://themes.trac.wordpress.org/browser/connexions-lite/1.0.4/functions.php#L72
You can set image size in functions.php or simply change the thumbnail size parameter to ‘full’ refer-> how to get original image wp.
Cheers!