Shopify themes, liquid, logos, and UX
Hello,
how can i remove the square outline behind photos on mobile device (the big one). I want it to be the same as on desktop device, clear. Thank you very much 🙂
Solved! Go to the solution
This is an accepted solution.
Hi RadaApeta,
Go to Online store > Themes > click ... (three dot next to theme) > Edit code
Find a file called 'section-main-product.css' and find a line of code matches the following
.product-media-container.constrain-height.media-fit-contain {
--contained-width: calc(var(--constrained-height)* var(--aspect-ratio));
width: min(var(--contained-width), 100%);
}
and before the last line of code '}' add the following extra line
border: none;
making it look like this:
.product-media-container.constrain-height.media-fit-contain {
--contained-width: calc(var(--constrained-height)* var(--aspect-ratio));
width: min(var(--contained-width), 100%);
border: none;
}
this will remove all the border on image but if it didn't work let me know and I can update
This is an accepted solution.
Hi RadaApeta,
Go to Online store > Themes > click ... (three dot next to theme) > Edit code
Find a file called 'section-main-product.css' and find a line of code matches the following
.product-media-container.constrain-height.media-fit-contain {
--contained-width: calc(var(--constrained-height)* var(--aspect-ratio));
width: min(var(--contained-width), 100%);
}
and before the last line of code '}' add the following extra line
border: none;
making it look like this:
.product-media-container.constrain-height.media-fit-contain {
--contained-width: calc(var(--constrained-height)* var(--aspect-ratio));
width: min(var(--contained-width), 100%);
border: none;
}
this will remove all the border on image but if it didn't work let me know and I can update
Discover how to increase customer engagement on your store with articles from Shopify A...
By Jacqui Apr 23, 2025Hey Community 👋 Did you know that March 15th is National Everything You Think Is W...
By JasonH Apr 1, 2025Discover how to increase the efficiency of commerce operations with Shopify Academy's l...
By Jacqui Mar 26, 2025