Navbar is hidden behind carousel when using wp-boostrap-navwalker
Well figured it out by myself. z-index was set on the wrong element. Add a new class to the container_class property: <?php wp_nav_menu( array( ‘theme_location’ => ‘header-menu-left’, ‘dept’ => 2, ‘menu_class’ => ‘navbar-nav justify-content-end’, ‘container_class’ => ‘collapse navbar-collapse YOURCLASS’, ‘container_id’ => ‘navbarNav’, ‘fallback_cb’ => ‘WP_Bootstrap_Navwalker::fallback’, ‘walker’ => new WP_Bootstrap_Navwalker(), ) ); ?> and change the … Read more