How can I adjust the width of my About Us page using the Dawn theme?

Hi,

I’m using dawn theme and need change the width or add left and right margin to my about us page, how can achieve this?

Store url: https://23bc4a.myshopify.com/pages/about-us

Best regards,

Leon

Hello @Leonpojen

to change page width in about us page follow this steps ;

  1. In your Shopify Admin go to online store > themes > actions > edit code
  2. Find layout > theme.liquid and paste this at the bottom of the file:
{% if page contains 'about' %}

{% endif %}

you can change width as you need.

Hope this works well.

1 Like

Hello @Leonpojen

You can try this code: it will be helpful to you

Go to the Online Store->Theme->Edit code->Assets->base.css>Add this code at the bottom.

.page-width {
   max-width: 100% !important;
}
1 Like

@oscprofessional

Thanks for your reply, however your solution will affect all pages. I’m just trying to change it on the about us page.

@infoatcodelab7

Thanks for your reply, however your solution did not work, i also tried making it important but still did not work.

Hello @Leonpojen

You can try this code: it will be helpful to you

Go to the Online Store->Theme->Edit code->Assets->base.css>Add this code at the bottom.

.section-template--17819497201931__c9c3181a-7dd6-41de-94cb-a87ebe3f3ee5-padding {
    max-width: 100% !important;
}