Custom CSS to widen the Shopify privacy policy page in the Atelier theme isn’t taking effect. The author set .shopify-policy__container to max-width: 60% (and at ≥1215px: max-width: 60%; margin: 0 20%) and shared the live link.
A responder found conflicting width rules on the same container. The custom CSS is overridden by a 560px setting, and that 560px is itself overridden by a 65ch constraint, which ultimately controls the layout.
Key details:
65ch (character-based width) and 560px (pixel width) are present and take precedence over the custom 60%.
The screenshot (browser devtools) shows the crossed-out rules, indicating cascade/specificity order issues.
Outcome/status: No fix or final resolution provided yet. The core issue is competing width declarations overriding the custom CSS. The discussion remains open.
Summarized with AI on December 24.
AI used: gpt-5.
Looks like you have a few different width codes for the same section. Your custom css is crossed out because of the 560px, and the 560px is crossed out because of the 65ch…