Published: March 2020 | Last Updated:February 2026
© Copyright 2026, Reddog Consulting Group.
/* DESKTOP drawer menu fix */ @media (min-width: 961px) { /* create our own overlay so it's not the theme's blank background */ html.rd-browse-open::before{ content:""; position: fixed; inset: 0; background: rgba(0,0,0,.45); z-index: 9998; } /* mark the overlay for click-to-close using a real element */ html.rd-browse-open .section-header .header .relative > .background{ display: none !important; } /* Drawer panel */ .section-header .nav.side-nav{ position: relative; z-index: 9999; } .section-header .nav.side-nav .inner{ position: fixed; top: 0; left: 0; height: 100vh; width: 360px; max-width: 86vw; overflow: auto; background: #8b1d1d; /* your red */ color: #fff; transform: translateX(-110%); transition: transform .25s ease; padding-top: 16px; } .section-header .nav.side-nav.rd-browse-open .inner{ transform: translateX(0); } /* link colors */ .section-header .nav.side-nav .inner a, .section-header .nav.side-nav .inner span{ color: #fff !important; } /* make sure the close icon is visible */ .section-header .nav.side-nav .inner a.close{ display: inline-block; } }
Skip to content