/* ── WordPress navbar overrides ─────────────────────────────────
Scoped to #uram-navbar so dashboard-10 is never affected.
Two problems solved here without touching dashboard-10 CSS:
1. position:fixed — WordPress theme overflow on parent breaks sticky
2. dropdown [hidden] override — d10 CSS has display:flex which beats hidden
──────────────────────────────────────────────────────────────── */
/* Hide old Bootstrap navbar */
.navbar.navbar-default.navbar-fixed-top { display: none !important; }
/* Fixed navbar wrapper */
#uram-navbar {
position: fixed;
top: 0; left: 0; right: 0;
z-index: 99999;
}
/* Spacer div sits in normal flow and reserves the 46px */
#uram-navbar-spacer { height: 46px; }
/* THE critical fix: [hidden] must beat display:flex from dashboard-10 CSS */
#uram-navbar .d10-ext-dd-menu[hidden] { display: none !important; }
Favorite Forum Topics
- Oh, bother! No topics were found here.
This website uses cookies to improve your experience. We'll assume you're ok with this, but you can opt-out if you wish. Cookie settingsACCEPT Privacy & Cookies Policy