RESOLVED: the mobile navbar button was disabled
I currently implemented a temporary workaround by adding the following lines to additional css:
@media only screen and (max-width: 480px) {
.mobile-menu{
display: block!important;
}
}
As a result the menu is always on top of the page on mobile devices. But I want a menu toggle (3 lines icon) to show/hide the actual menu.
At this moment I hide the header image on all pages except the home page. But I would like to show the header and jump past it. Such that when you scroll back to the top of the page, you see the header image.