Remove padding on page header for Dawn Theme

Hello! I am having trouble removing the padding to the left of the page header, “Hoodies”. I’d like it to be in line with the featured collection below. Any help would be appreciated.

Sure, please provide the link to your store.

Hi @hoodieharmony

Would you mind to share your store URL? Thanks!

https://hoodieharmony.shop/pages/hoodies

https://hoodieharmony.shop/pages/hoodies

Hey @hoodieharmony ,

In your online store click on “…” on your active theme and then “Edit code” Then, in the “Assets” folder, look for “base.css, theme.css or style.css” file and add the following code

@media screen and (min-width: 990px) {
    .page-width--narrow {
        max-width: 109.6rem;
        padding: 0;
    }
}

Thank you for your help!