The slide banner image on the mobile phone is not completely displayed

The slide banner image on the mobile phone is not completely displayed

Jim
Explorer
80 2 25
Reply 1 (1)

Joseph_W
New Member
16 0 0

Hey Jim, the issue is not only on mobile, but on desktop as well. It has to do with the size of the images. If I changed the banner's <img> property to "scale-down", I can see the full image: 

Joseph_W_0-1749512125004.png

 

It's just a matter of image rendering. If you were to change the .media>img declaration's "object-fit" property to "fill" for example, then you will be able to see the full image in the banner on both desktop and mobile. So, if you know where the CSS stylesheet is for that banner, you can find it and add the change, or just add this to you your theme.liquid file:

 

<style>

.media>img{

object-fit: fill !important;

}

</style>