Goal: Make content on a specific Shopify page (Dawn theme) display wider so images appear larger, without changing the rest of the site.
Key solutions proposed:
Add a page-specific condition in theme.liquid before using a Liquid check for the ‘page.creating-your-design’ template to scope custom CSS to that page.
Increase the desktop max-width of .page-width–narrow via CSS (placed in base.css/theme.css or Theme settings > Custom CSS):
• @media (min-width: 990px) { .page-width–narrow { max-width: 126rem !important; } }
• Alternatives shown with 100rem or 90rem to tune desired width.
Notes:
The media query targets desktop (min-width: 990px). Adjusting .page-width–narrow globally may affect other pages that use this class; using the Liquid page condition limits changes to the specified page.
Images in replies illustrated the widened layout; code snippets are central to understanding the fix.
Outcome: The original poster confirmed the change worked. Issue resolved; no further questions raised.
Summarized with AI on December 12.
AI used: gpt-5.
I have some webpages I created. The text and image box width is too marrow. I want it to display wider so that the image will load in larger. I have tried codes but nothing seems to work and you cannot do it within dawn theme its self.
I only want the webpages wider, not the rest of my site pages.