Hi @Sportingoodz , you can try this code
product-info#MainProduct-template--24664982749566__main .page-width {
padding-left: 5px !important;
padding-right: 10px !important;
}
Result:
A user seeks to remove padding from product images on their Shopify Dawn theme product page, wanting images to extend closer to the page edge on desktop while maintaining proper mobile display.
Initial Solutions Offered:
theme.liquid or base.cssWorking Solution:
The issue was resolved using targeted CSS code:
product-info#MainProduct-template--[ID] .page-width {
padding-left: 0px !important;
padding-right: 10px !important;
}
Key Implementation Details:
theme.liquid file@media screen and (min-width: 990px) to apply only on desktopStatus: Resolved. The user confirmed the solution works perfectly with their adjustments.
An alternative no-code solution (Easy Edits app) was also suggested for visual padding adjustments.
Hi @Sportingoodz , you can try this code
product-info#MainProduct-template--24664982749566__main .page-width {
padding-left: 5px !important;
padding-right: 10px !important;
}
Result: