• Hey, I’ve opted to make my header pretty thin (60 px) and now the 3-Bar nav button is floating below the nav bar. How do I position it higher? I’ve tried absolute positioning, but this makes the button appear on the non-mobile layout.

Viewing 1 replies (of 1 total)
  • try this when sticky is disabled

    .sticky-disabled .navbar .btn-navbar {
    	margin-top: -20px;
    }

    or this when sticky is enabled

    .sticky-enabled .navbar .btn-navbar {
    	margin-top: -20px;
    }

    it depends of what do you need.

Viewing 1 replies (of 1 total)

The topic ‘Moving 3-Bar Menu Button Higher’ is closed to new replies.