Skip to content
Advertisement

Responsive navbar blocks body content once it’s opened

Before you try to make a solution make sure responsive toolbar is enabled on your chrome browser. I am trying to first make the responsive design for mobile then for desktop. But I am having this problem where I open the hamburger menu and the navbar blocks my content. I tried to fix this by doing position: relative; but I want to make the navbar fixed so when I scroll it’s up there. Also when I click the hamburger menu while I am scrolling it just comes back to the top. Please help me

JavaScript
JavaScript
JavaScript

Advertisement

Answer

When you click on your menu it will jump to the top, because your menu is an a element. Just change it to a div:

JavaScript

In order to make the content visible when the menu is opened, you can add a margin to your first section. You can add a check for how far the page is scrolled to prevent adding and removing the margin when opening the menu while scrolled down. Change your .js to:

JavaScript

In your .css (transition to make it a bit more smooth):

JavaScript
User contributions licensed under: CC BY-SA
5 People found this is helpful
Advertisement