Hello There,
To resolve your issue, you must have this code replaced:
.blog a.entry-thumb:not(.skinny):not(.big){
background-size: contain;
width: 300px;
height:300px;
}
.blog .x-main .hentry>.entry-featured {
width: 25%;
}
.blog .x-main .hentry.has-post-thumbnail>.entry-wrap {
width: 72%;
}
@media(max-width:1550px) {
.blog a.entry-thumb:not(.skinny):not(.big) {
width:100% !important;
height:auto !important;
}
You will be using this code instead:
.blog a.entry-thumb:not(.skinny):not(.big){
background-size: contain;
max-width: 300px;
height:300px;
}
.blog .x-main .hentry>.entry-featured {
width: 25%;
}
.blog .x-main .hentry.has-post-thumbnail>.entry-wrap {
width: 75%;
}
@media (max-width: 1550px){
.blog a.entry-thumb:not(.skinny):not(.big) {
width: 100% !important;
height: auto !important;
background-size: auto 100%;
background-position: top center;
min-height: 225px;
}
}
Hope this helps. Please let us know how it goes.