Hello @isshmen ,
If you want to auto adjust the image container size according to the featured image size put below css into Additional CSS field of customizer:
@media only screen and (min-width: 869px) {
.bloghash-blog-horizontal .bloghash-article:not(.format-quote) .bloghash-blog-entry-wrapper div.post-gallery,
.bloghash-blog-horizontal .bloghash-article:not(.format-quote) .bloghash-blog-entry-wrapper div.post-thumb {
-ms-flex-preferred-size: auto;
flex-basis: auto;
max-width: 50%;
}
}
And change the image resolution to 300×300 from the dropdown like shown in screenshot https://prnt.sc/c06kLyb7R4EE
If you want to hard-code the container size put below css rule into Additional CSS field of customizer:
@media only screen and (min-width: 869px) {
.bloghash-blog-horizontal .bloghash-article:not(.format-quote) .bloghash-blog-entry-wrapper div.post-gallery,
.bloghash-blog-horizontal .bloghash-article:not(.format-quote) .bloghash-blog-entry-wrapper div.post-thumb {
-ms-flex-preferred-size: auto;
flex-basis: auto;
max-width: 300px;
max-height: 250px;
}
.bloghash-blog-horizontal .bloghash-article:not(.format-quote) .entry-media img {
min-height: 250px;
object-fit: cover;
}
}
Thank you