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.

Keeping responsiveness screen sizes in mind, I would recommend adding this CSS. The 1.2rem padding-left also accounts for an existing portion of the code placed on the header element, which adds -1.2rem. Attached a preview below.

media screen and (min-width: 990px) .header:not(.drawer-menu).page-width {
  padding-left: 1.2rem;
  padding-right: 0;
}