Complete dropdown z-index fix with proper stacking context

- Add z-index: 9999 to header and nav elements
- Ensure proper stacking context with position: relative
- Fix dropdown rendering underneath H1 and body text
- Comprehensive solution for all dropdown layering issues
This commit is contained in:
2025-09-17 17:57:58 -04:00
parent e630d1cb6f
commit 08aad7b40e
+12
View File
@@ -64,12 +64,24 @@
transition: width 0.1s ease-out;
}
/* Header and nav z-index for dropdown stacking */
header {
position: relative;
z-index: 9999;
}
nav {
position: relative;
z-index: 9999;
}
/* Dropdown navigation styles */
.nav-dropdown {
position: relative;
display: inline-block;
padding: 0.5rem;
margin: -0.5rem;
z-index: 9999;
}