How can I adjust images to full width on mobile view?

Hey @parthpatel05

I hope you are well and safe!!

Please use this code in CSS file
@media screen and (max-width: 750px) {
.product.product–thumbnail_slider.product–mobile-show .grid__item.product__media-wrapper {
left: -1.5rem;
width: calc(100% + 3rem);
max-width: calc(100% + 3rem);
}
}

Thanks

1 Like