Users report that policy pages in Shopify’s new Atelier theme (from the Horizon update) display with an extremely narrow width by default, with no built-in customization options available.
Issue confirmed: Another user successfully replicated the problem, identifying that CSS for policy pages overrides standard theme styles.
Workaround solutions provided:
For page width: Add custom CSS to the theme settings targeting .shopify-policy__container with max-width: 80% (adjustable) for screens under 990px width
For heading sizes: Apply custom CSS to reduce font sizes for .shopify-policy__title h1 (3rem) and .shopify-policy__body h2 (2rem)
Both solutions require adding code to the Custom CSS section in Theme Settings, as the theme customizer currently doesn’t affect policy page layouts. Screenshots demonstrate the narrow default layout and improved results after applying the CSS fixes.
Status: Awaiting official Shopify fix; custom CSS workarounds currently necessary.
Summarized with AI on October 27.
AI used: claude-sonnet-4-5-20250929.
Just trying out the new Atelier theme from the Horizon update, but the policy pages are extremely narrow as standard. Didn’t touch any code and it looks super weird. I attached a picture for reference.
Anyone know how to fix this? Doesn’t seem like it’s doable without code right now…
I was able to replicate the issue on the new Atelier theme as well — you’re right, the policy pages appear quite narrow by default, even without any code changes. And making any changes using the theme customisation settings does not have an impact on the width of the content.
Looks like it’s happening because the CSS for the policy page is kind of overriding the usual theme styles.
So, until Shopify releases a fix, the best workaround for now is to add some custom CSS to get the desired layout. This should help widen the content on those policy pages.
You can add the following code to the Custom CSS section of your theme settings (as shown in the attached screenshot):
@media only screen and (max-width: 990px) {
.shopify-policy__container {
max-width: 80% !important; /* Adjust this value as per your preference */
}
}
If my response helped you, please consider giving it a like ( ) and marking it as an accepted solution if it resolved your issue. Your feedback helps other community members with similar questions.