When I go to mobile view, the images on my home page are too zoomed in, as seen below:
How do I zoom out?
When I go to mobile view, the images on my home page are too zoomed in, as seen below:
How do I zoom out?
Hi @Windsorvintage ,
Add the following code to your theme.scss.liquid file if you want the image to be displayed completely and not zoomed in (In my opinion it won’t look good unless your image is fit for mobile view by dimensions, so use it accordingly)
@media only screen and (max-width: 480px) {
.template-index .feature-row__item .feature-row__image {
background-size: contain !important;
}
}
Let me know if you need help with anything else.