• Hello!

    I am trying to create two full width stretched menus above Header Slider.

    – Menu with Register, Login and Polylang switcher (header-menu-2)
    something like this: https://yonsei.ac.kr/sc/index.jsp
    (notice how it has a blue bar at the top, with FAQ, LOGIN, LANGUAGE?)

    – Navmenu with all other pages (Home, About, Activities ~ FAQ) (header-menu)
    yet again full width stretched, above the header slider

    Currently, I am using Sydney theme.
    Since it only supports 4 menus, I made a child theme to add more menus

    function register_my_menus() {
    register_nav_menus(
    array(
    ‘header-menu-2’ => __( ‘Header Menu 2’ ),
    ‘activities-menu’ => __( ‘Activities Menu’ ),
    ‘gallery-menu’ => __( ‘Gallery Menu’ )

    my site is @ oneyonsei.com

    Thanks in advance!

Viewing 1 replies (of 1 total)
  • Thread Starter oneyonsei2015

    (@oneyonsei2015)

    +
    located my header-menu-2 in header.php by
    <?php wp_nav_menu( array( ‘theme_location’ => ‘header-menu-2’ ) ); ?>
    on top of
    <div class=”btn-menu”></div>
    <nav id=”mainnav” class=”mainnav” role=”navigation”>
    <?php wp_nav_menu( array( ‘theme_location’ => ‘primary’, ‘fallback_cb’ => ‘sydney_menu_fallback’ ) ); ?>
    </nav><!– #site-navigation –>
    </div>

Viewing 1 replies (of 1 total)
  • The topic ‘[Theme: Sydney] Full Width Menu Above Header Slider?’ is closed to new replies.