how to change drawer underlay in overlay?

Topic summary

A user wants to modify the drawer overlay to cover the entire right side of the page, including the header area.

Solution Provided:

  • Add CSS code to the end of the theme.css file
  • Set the header’s z-index to 0 using !important to allow the overlay to appear above it
  • A screenshot demonstrates the expected result showing the overlay extending over the header

Status: Solution offered but not yet confirmed as implemented or tested by the original poster.

Summarized with AI on October 27. AI used: claude-sonnet-4-5-20250929.

how to change drawer underlay in overlay?

I would like to let the overlay part cover the whole right side incl the header.

Please paste the following code in the end of theme.css file.

.theme__header {
    z-index: 0 !important;
}

Results: