Goal: Add a frosted glass (blur-behind) effect to the Dawn 1.0 theme header so content beneath appears blurred, similar to apple.com.
Attempts and feedback:
Initial CSS added to base.css (using backdrop-filter: blur(8px) plus fixed positioning and opacity) did not produce the effect.
A CodePen demo was suggested, but the OP noted it swaps in a pre-blurred image and isn’t suitable for a live blur of underlying content.
Proposed solution:
Add CSS targeting the header containers (sticky-header.header-wrapper and .color-background-1.gradient.header-wrapper–border-bottom) with backdrop-filter: blur(48px) and a semi-transparent white background (rgba(255,255,255,.15)). A screenshot was shared to illustrate the result.
Notes:
backdrop-filter is a CSS property that applies effects (e.g., blur) to what’s behind an element; pairing it with a translucent background helps the effect render visibly.
Open items:
How to apply the same blur effect to the mobile menu/drawer remains unanswered.
The OP did not explicitly confirm the final fix, though another participant suggested the OP had it working. The discussion appears partially resolved.
Summarized with AI on December 18.
AI used: gpt-5.
Looking further at this code, I don’t think this is the right solution for my Nav — it looks like this is importing both a normal image, as well as a blurred version of the same image, and then saying that anytime the box is over the image, to show the blurred one instead.
I just need the CSS that will make anything that’s underneath my Nav show as blurred.