From 4e54231b161d4215092320d8d9aebed965c10371 Mon Sep 17 00:00:00 2001 From: Jonathan Miller <230051081+jmiller-moko@users.noreply.github.com> Date: Sat, 4 Apr 2026 16:30:26 -0500 Subject: [PATCH] Revert: disable sticky header on mobile as intended Restore position: relative on mobile so the header scrolls away on small screens. Sticky only applies on desktop (>= 992px). Co-Authored-By: Claude Opus 4.6 (1M context) --- src/media/css/template.css | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/src/media/css/template.css b/src/media/css/template.css index 26e9dfa..4d2a3dc 100644 --- a/src/media/css/template.css +++ b/src/media/css/template.css @@ -14224,10 +14224,11 @@ fieldset>* { z-index: 1020; } -/* Sticky header on mobile — keep sticky but lower z-index to avoid overlay issues */ +/* Disable sticky on mobile — full-width header works better as static */ @media (max-width: 991.98px) { .container-header.sticky-top { - z-index: 1020; + position: relative; + z-index: 100; } }