NO BUG: Nav Menu alignment "Reverse" - doesnt apply to mobile menu

BROWSER: Version 125.0.6422.142 (Offizieller Build) (arm64)
OS: MacOS Ventura 13.3
URL: https://michaelfudson.lol/

When setting alignment of the nav menu to reversed, the order doesnt apply to the mobile menu and theres no setting to change the alignment especially for mobile menu.

Hi amigosmios,
Thanks so much for your report!

Why do you set your menu in the WP customizer in the wrong order? What is the use case? :thinking:

  1. desktop and mobile menus are separate from each other (it is not the same HTML that applies to both menus)
  2. the mobile menu is not a flexbox menu, so there are no flexbox alignment settings.

However, you can easily turn it into a flexbox menu:

%root% .bricks-mobile-menu {
  display: flex;
  flex-direction: column-reverse;
}

Best regards,
timmse