lol…i have pasted this code in dawn 12.0 base.css and it works…now all pages are full width on my store… are you putting it in base.css, if not - try once.
Topic summary
Core Issue:
Users across multiple Shopify themes (Narrative, Brooklyn, Debutify, Showcase, Envy, Empire, Trade, and others) struggle to make custom page templates display at full width, as default templates include padding/margins that create unwanted whitespace.
Primary Solution Pattern:
A community helper (@KetanKumar) provides CSS code solutions tailored to each theme and page. The typical approach involves:
- Navigating to Online Store → Theme → Edit Code
- Locating the appropriate CSS file (theme.scss.liquid, timber.scss.liquid, styles.css, or theme.min.css depending on theme)
- Adding custom CSS targeting specific page IDs or template classes
- Setting
max-width: 100%andpadding: 0on container elements
Common Code Pattern:
.page-width {
max-width: 100%;
}
.template-page .medium-up--four-fifths {
width: 100%;
left: 0 !important;
}
Related Requests:
- Making only specific sections full-width while maintaining header padding
- Removing spacing between header and page content
- Applying full-width styling to product pages and blog sections
- Responsive video display (desktop vs. mobile versions)
Status:
Most users report successful resolution after receiving theme-specific CSS code. Solutions require basic code editing skills and vary significantly by theme architecture.