Why are all policies centered in Dawn theme design?

Is there a reason why every policy is centered? This is fine for mobile view, but its auto generated for desktop view as well and it makes the page long. Is there an easy way to fix this?

I’m referring to the policies on the back end of the shopify account under settings menu. They are linked to my footer on my site. I have a Return Policy, Terms and Conditions (that says Terms of Service automatically and would like to change that title too), Shipping, and Privacy, are all centered.

url: melaniejean.com

password: qwertyuiop

Screenshot:

Looks like you’ve already fixed it.

@mjdubarr

Try this code

Please add the following CSS code to your assets/base.css bottom of the file.

@media screen and (min-width: 990px){
.page-width--narrow {
    max-width: 80% !important;
    padding: 0;
}
}

Thanks!

Yes. I added a code for a different theme but it did work.

But maybe I should try the one you suggested since my theme is Dawn.

@mjdubarr

Please share screenshot of what do you want!

Thanks!

Hi,

I changed my theme to Refresh and its happening again. I put in the same code but it’s not expanding the policy contents.

/* Shopify Policy Width Control */
@media screen and (min-width: 750px) {
.shopify-policy__container {
max-width: 80% !important;
}
}

Is there something I’m doing wrong?