Hello, I would like to adjust the width of the policy pages on my store. I am using the Dawn theme and the policy pages are small with lots of dead space on the sides. You can see it here: Privacy policy β Ye Olde Curator
I would like to increase the width of the text that spans most of the page. How can I do that?
Hi @richbernardo ,
Step 1: Go to Shopify Admin β Online Store ->Theme β Edit code
Step 2: Search file base.css, theme.css, styles.css or theme.scss.liquid
Step 3: Insert the below code at the bottom of the file β Save
.shopify-policy__container {
max-width: 120ch !important;
}
Here is result:
Hope this can help you,
If our suggestions are useful, please let us know by giving it a like or marking it as a solution. Thank you 
1 Like
@richbernardo - please add this css to the very end of your base.css file and check
.shopify-policy__container{max-width: 90%;}
1 Like