Shopify themes, liquid, logos, and UX
We're moving the community! Starting July 7, the current community will be read-only for approx. 2 weeks. You can browse content, but posting will be temporarily unavailable. Learn more
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
https://elegantfurniture.co.nz/policies/refund-policy
Solved! Go to the solution
This is an accepted solution.
Hi @dikerr,
Please add the code below to widen the page-width of your policy page.
1. From your Admin page, go to Online store > Themes > click the three dots > Edit code
2. Find the Asset folder, and open the base.css file
3. Add the code below at the very end of the file
div.shopify-policy__container {
max-width: 100ch;
}
This is an accepted solution.
Hi @dikerr,
Please add the code below to widen the page-width of your policy page.
1. From your Admin page, go to Online store > Themes > click the three dots > Edit code
2. Find the Asset folder, and open the base.css file
3. Add the code below at the very end of the file
div.shopify-policy__container {
max-width: 100ch;
}
Thank you! This suggestion worked 😍
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:
1. Go to Online Store > Theme > Edit code of your current theme
2. Open your theme.liquid theme file
3. Paste the below code before </head>
<style>
.shopify-policy__container {
max-width: var(--page-width) !important;
}
@media screen and (min-width: 750px){
.shopify-policy__container {
padding-left: 5rem;
padding-right: 5rem;
}
}
</style>
Let us know how it works for you.
Best regards,
GemPages Support Team