I have gone through and tried all the solutions but nothing seems to work.
I am trying to get the Policy pages to increase in width. They are very narrow.
We are using Dawn Theme version 8.0
A user needed to increase the width of policy pages in the Dawn 8.0 theme, which were displaying too narrow.
Solutions Provided:
Multiple support teams offered CSS-based fixes:
Add custom CSS to the base.css file in the Assets folder:
div.shopify-policy__container {
max-width: 100ch;
}
Alternative approach: Insert CSS directly into the theme.liquid file before the </head> tag:
.shopify-policy__container {
max-width: 100% !important;
}
Resolution:
The user confirmed one of the suggested solutions worked successfully. All approaches involve accessing the theme code editor through Online Store > Themes > Edit code and adding CSS to override the default narrow width constraint on policy pages.
I have gone through and tried all the solutions but nothing seems to work.
I am trying to get the Policy pages to increase in width. They are very narrow.
We are using Dawn Theme version 8.0
Hi @dikerr ,
Please add the code below to widen the page-width of your policy page.
div.shopify-policy__container {
max-width: 100ch;
}
Hi @dikerr
This is Victor from PageFly - Shopify Page Builder App, I’d like to suggest this idea:
Online Store ->Theme ->Edit code
Assets ->Base.css
.shopify-policy__container {
max-width: 100% !important;
}
Hope you find my answer helpful!
Best regards,
Victor | PageFly
Hello @dikerr ,
It’s the GemPages Support Team and we are glad to assist you today!
I would like to give you the recommendation to support you so kindly follow the steps below:
Open your theme.liquid theme file
Paste the below code before
Let us know how it works for you.
Best regards,
GemPages Support Team
Thank you! This suggestion worked ![]()