Hello @rjluna
- In your Shopify Admin go to online store > themes > actions > edit code
- Find Asset > base.css and paste this at the bottom of the file:
.multicolumn-card.content-container {
width: 100%!important;
}
.page-width {
max-width: 100%;
}
A user seeks to reduce left and right padding on a multicolumn section in the Dawn theme, specifically wanting the CSS to apply only to that section rather than site-wide.
Solutions Attempted:
base.css, targeting .page-width, .content-container, and .multicolumn-card elementsCurrent Status:
Key Challenge: Finding CSS that targets only the specific multicolumn section without affecting other parts of the website, while working within Dawn theme’s Custom CSS constraints.
Hello @rjluna
.multicolumn-card.content-container {
width: 100%!important;
}
.page-width {
max-width: 100%;
}