Make Header Match the Width of the Rest of the Website

Hi guys, how can I make my header match the width of the rest of my site? It should look similar to the Taste theme. Any help is greatly appreciated!

Hello @flammagreg :waving_hand:

In Shopify Admin, you can go to Edit theme code, open file base.css, and add this code at the bottom

.header-wrapper {
    max-width: var(--page-width);
    margin: auto;
}

The result

Hope that helps.