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 property to “scale-down”, I can see the full image:
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:
**.media>img{** **object-fit: fill !important;** **}**