Thanks for your help everyone, I actually figured it out:
Adding this to base.css works wonders.
#MainProduct-template–22649331319059__main {
–page-width: 200rem !important; /* Adjust the value as needed */
}
A user seeks to reduce side padding on their Shopify Dawn theme product page to widen the product description column while keeping product images the same size. They provide before/after screenshots showing the desired layout change.
Attempted Solutions:
</body> tag proved unsuccessfulResolution:
The issue was resolved by adding custom CSS to the base.css file:
#MainProduct--template-[ID] {
--page-width: 200rem !important;
}
The user successfully implemented this solution, adjusting the value as needed. An alternative media query approach targeting .page-width padding was also suggested but not confirmed as the final solution.
Thanks for your help everyone, I actually figured it out:
Adding this to base.css works wonders.
#MainProduct-template–22649331319059__main {
–page-width: 200rem !important; /* Adjust the value as needed */
}