Hey, I am designing my store but I ran into a design problem, the product image is not full width on mobile! Could anybody help me with this? Thanks in regards! I will show the problem down below.
LINK:https://e8aaa0-3.myshopify.com/products/body-cleanser?variant=41569514881161
PASSWORD: mohwhi
THEME: taste
1 Like
Hi
Check this one.
- From your Shopify admin dashboard, click on “Online Store” and then “Themes”.
- Find the theme that you want to edit and click on “Actions” and then “Edit code”.
- In the “Assets” folder, click on “base.css, style.css or theme.css” file, depending on which file your theme uses to store its CSS styles. At the bottom of the file, add the following CSS code:
@media screen and (max-width: 749px){
.product__media-list .product__media-item {
width: 100% !important;
}
.slider.slider--mobile .slider__slide {
padding-top: 0px !important;
}
}
Please don’t forget to Like and Mark Solution to the post that helped you. Thanks!