NO BUG: Mobile Menu Scrolling with position top

Hi,
Thanks so much for your report!

  1. That’s happening because you are moving the menu 150px down. You have to compensate for the “missing” 150px in height. Add this to the mobile breakpoint of the menu:
%root%.brxe-nav-menu .bricks-mobile-menu-wrapper {
  height: calc(var(--bricks-vh, 1vh)*100 - 150px);
}
  1. So far there are only the available settings. You could overwrite the toggle with custom CSS if necessary.

Best regards,
timmse