I’m building on the Palo Alto theme & I’m looking to remove the padding between images on the default product page so that the image fits the screen fully on mobile so there is no white space around the sides or padding, can someone help me with this please?
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 only screen and (max-width: 767px){
.product-single .wrapper--full-padded {
padding: 0;
}
.product-single__details {
padding: 0 var(--gutter-mobile);
}
}