Custom Page Wdith in Dawn Theme

Hello,

I am currently attempting to adjust the page width on a few pages for my site here. Specifically the About Us Page. How do I make it wider than the theme usually allows? Will I have tom implement some code and if so how do I go about doing that?

Also, on a seperate note, I was hoping to add a Media page to my website. Is it possible to create a photogallery template in Shopify Dawn or will that require custom code as well?

Hi @creativebp8,

Please go to Customize > Theme settings > Custom CSS and add code:

.section-template--20414960795928__main-padding {
    max-width: var(--page-width);
}

Thanks so much!! This is slightly too wide, is there a way to make it a big narrower , similar to my product pages?

Hi @creativebp8,

Please change code:

.section-template--20414960795928__main-padding {
    max-width: var(--page-width);
}
@media screen and (min-width: 750px) {
    .section-template--20414960795928__main-padding {
        padding: 0 5rem;
    }
}

If I managed to help you then a Like would be truly appreciated.

1 Like