How to make the header full width TASTE THEME

Topic summary

A user seeks to create an almost full-width header in the Taste theme by removing left and right padding. Multiple solutions are provided:

CSS Solutions Offered:

  • Add custom CSS to base.css, style.css, or theme.css in the Assets folder
  • Target .header:not(.reward-menu).page-width with padding adjustments
  • One approach uses padding-left: 12px !important; padding-right: 0px !important;
  • Another recommends media query approach: padding-left: 1.2rem; padding-right: 0; for screens min-width 990px, accounting for existing -1.2rem offset

Implementation Steps:

  1. Navigate to Online Store > Themes > Actions > Edit code
  2. Locate appropriate CSS file in Assets folder
  3. Add CSS code at bottom of file and save

Alternatively, code can be added to theme.liquid above </head> tag.

Follow-up Issue:
Another user successfully applied the header fix but now seeks to extend full-width padding removal to the entire site for both desktop and mobile.

Visual previews were shared showing before/after results. The discussion remains open regarding the site-wide implementation question.

Summarized with AI on November 12. AI used: claude-sonnet-4-5-20250929.

Oh, Okay. I understand. Check this one then.

  • From your Shopify admin dashboard, click on “Online Store” and then “Themes”.
  • Find the theme that you want to edit and click on “Actions” and then “Edit code”.
  • In the “Assets” folder, click on “base.css, style.css or theme.css” file, depending on which file your theme uses to store its CSS styles. At the bottom of the file, add the following CSS code:
.header:not(.drawer-menu).page-width {
    padding-left: 12px !important;
    padding-right: 0px !important;
}
  • And Save.

Please don’t forget to Like and Mark Solution to the post that helped you. Thanks!