[ad_1]
Hi @nuelles
Actually, this is somewhat normal, because the cover type of posts automatically adjust the image so it looks good on any kind of device. You’ll see that in many cases, adjusting from the desktop view to the mobile view will shift the image to the remaining available space. Think of it as a safeguard to make sure everything looks good on any kind of device.
With this said, there’s an easy fix you could try, via CSS. It goes something like this —
.entry-card .ct-image-container img {
object-position: 100% 10% !important;
}Just modify the 10% value to whatever you wish, to make it look how you’d like.
Attention! This snippet modifies the behaviour for all devices, not just for the desktop view. If you want to target just a specific kind of device, wrap the snippet into a @media query. The breakpoints are 699px for mobile and 999px for tablet.
Hope this helps!
Thanks.
