I used the following CSS to remove several items from my navigation bar, so that only 4 pages are showing, but it apparently doesn't apply to the mobile hamburger (MH) nav:
*#mainNavigation > div:nth-child(1) > a {
display: none;
}*
When I use your hide MH CSS above, it works but I lose "show the nav bar when scrolling" option while on mobile.
Any idea how to either make the MH mirror my hidden nav-bar changes or to enable "show nav bar when scrolling" on mobile?
Either solution is fine by me but I just can't quite get either to work as I want.