Policy page issue

Solved

Policy page issue

Fayed_Bd
Shopify Partner
4 0 4

The width of my store policy page is too narrow, I want to make it standard width. It is perfect on mobile devices. But on desktop it looks very cramped. Can anyone help me solve this?

 

Desktop view:

Fayed_Bd_0-1747400078232.png

 

Mobile view:

Fayed_Bd_1-1747400107247.png

 

Website link: https://nus-suits.myshopify.com/policies/terms-of-service

Password: 1234

 

Accepted Solution (1)

pawankumar
Shopify Partner
754 111 128

This is an accepted solution.

Hi @Fayed_Bd 
Please put this code in theme.liquid before body closing tag </body>

<style>
.shopify-policy__container {
    width: 80% !important;
    max-width: 80% !important;;
}
</style>

Check if it works
Thanks!

- Need a Shopify developer? Chat on WhatsApp +91-9467121281
- Coffee Tip: Buymeacoffee  | Email: thepkpawankumar@gmail.com
- Was my reply helpful? Click Like to let me know!
- Was your question answered? Mark it as an Accepted Solution
Best regards,
Pawan

View solution in original post

Replies 4 (4)

Samita-Danny
Shopify Partner
17 0 1

Hi,  @Fayed_Bd
I'm Danny from Samita.
You can try to follow this step:
1.Go to Themes -> Edit code 
2.Find file base.css and add this code at the end of the line 

 
.shopify-policy__container {
  max-width: 75rem !important;
}

Result 

SamitaDanny_0-1747407488166.png

 

Sami B2B Wholesale — Unlock powerful wholesale features
Sami Request a Quote — Let customers request quotes easily

If our reply helped, please give it a Like or mark it as a Solution!

Fayed_Bd
Shopify Partner
4 0 4

I added it but it's not working.

Fayed_Bd_0-1747408615081.png

 

pawankumar
Shopify Partner
754 111 128

This is an accepted solution.

Hi @Fayed_Bd 
Please put this code in theme.liquid before body closing tag </body>

<style>
.shopify-policy__container {
    width: 80% !important;
    max-width: 80% !important;;
}
</style>

Check if it works
Thanks!

- Need a Shopify developer? Chat on WhatsApp +91-9467121281
- Coffee Tip: Buymeacoffee  | Email: thepkpawankumar@gmail.com
- Was my reply helpful? Click Like to let me know!
- Was your question answered? Mark it as an Accepted Solution
Best regards,
Pawan
Fayed_Bd
Shopify Partner
4 0 4

Thank you.