Hi! On my website the image banner is really zoomed in on mobile, but on desktop it looks fine (see screenshots attached). I’m using the sense theme - link is eggzworld.co.uk.
Appreciate any help on this, thanks!
A user is experiencing an image banner display issue with the Sense theme on Shopify. The banner appears overly zoomed in on mobile devices while displaying correctly on desktop.
Initial Solutions Offered:
</body> tagobject-fit: fill and mobile-specific height adjustmentsCurrent Status:
Resolution Status:
The discussion remains ongoing with an unresolved desktop stretching issue. The user is seeking additional help to fix the desktop display without breaking the mobile version.
Hi! On my website the image banner is really zoomed in on mobile, but on desktop it looks fine (see screenshots attached). I’m using the sense theme - link is eggzworld.co.uk.
Appreciate any help on this, thanks!
Hey @NekaJay
Follow these Steps:
Go to Online Store
Edit Code
Find theme.liquid file
Add the following code in the bottom of the file above tag
RESULT:
If I managed to help you then, don’t forget to Like it and Mark it as Solution!
Best Regards,
Moeed
Hi @NekaJay
Check this one.
From you Admin page, go to Online Store > Themes
Select the theme you want to edit
Under the Asset folder, open the main.css(base.css, style.css or theme.css)
Then place the code below at the very bottom of the file.
.banner__media.media img {
object-fit: fill;
}
@media screen and (max-width: 749px) {
.banner--small:not(.banner--mobile-bottom):not(.banner--adapt) .banner__content {
min-height: 40rem;
}
}
And save.
result:
Please don’t forget to Like and Mark Solution to the post that helped you. Thanks!
Hi Moeed,
Thank you for the quick reply! That looks better, but the image is not centered so I can see some of the background behind it. Is there a way to center it too?
Thanks!
Hey @NekaJay
Try this updated code instead and remove the previous code.
RESULT:
If I managed to help you then, don’t forget to Like it and Mark it as Solution!
Best Regards,
Moeed