How to adjust the display length of the policy page text?
Topic summary
A user seeks to adjust the display width of policy page text, which appears too narrow in their store.
Two solutions were provided:
Solution 1 (Moeed):
- Navigate to Online Store → Edit Code → theme.liquid
- Insert custom CSS code above the
</body>tag - Uses inline styling to modify the policy container width
Solution 2 (EstherBui):
- Go to Edit Code → base.css file
- Add CSS rule at the end:
.shopify-policy__container { max-width: 120ch !important; } - Directly targets the policy container class
Both approaches use CSS to increase the maximum width of the policy text container. The second solution appears cleaner as it places the CSS in the appropriate stylesheet rather than inline in the theme file. Screenshots demonstrate the before/after results showing expanded text width.
Status: Two working solutions provided; awaiting user confirmation on which approach they’ll implement.
Hey @CRART
Follow these Steps:
-
Go to Online Store
-
Edit Code
-
Find theme.liquid file
-
Add the following code in the bottom of the file above tag
RESULT:
If I managed to help you then, don’t forget to Like it and Mark it as Solution!
Best Regards,
Moeed


