Widen Default Page Text Content (Policies)

https://strifedesign.com/policies/shipping-policy

Hi there, I’m wanting to make the content on this page wider, its just text but all my policy pages look like this, the text looks too narrowly contained! I am using Dawn, how do I fix this?

id want it to look like this instead

Hello @PietroAriston

Go to online store ---------> themes --------------> actions ------> edit code------->base.css
at the bottom of the file.

.shopify-policy__container {
max-width: 70%;
}

and the result will be

If this was helpful, hit the like button and mark the job as completed.
Thanks

1 Like

Hi @PietroAriston

You can add this code below to Custom CSS in Online Store > Themes > Customize > Theme settings

.shopify-policy__container {
max-width: 1200px !important;
}
.shopify-policy__container .shopify-policy__title {
text-align: left !important;
}

1 Like