Horizontal menu in Kichu
-
Hi people, im trying to add and horizontal menu in the kichu theme but seems imposible. I cant configure the navigataur menu (https://github.com/micjamking/Navigataur) in the header. All the code hides behind the header and i cant find the way to configure it. Can you help me?
Here is the header page:
<!DOCTYPE html> <html <?php language_attributes(); ?>> <head> <meta charset="<?php bloginfo( 'charset' ); ?>"> <meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1"> <link rel="profile" href="https://gmpg.org/xfn/11"> <link rel="pingback" href="<?php bloginfo( 'pingback_url' ); ?>"> <?php wp_head(); ?> <link rel='stylesheet' id='navigataur' href='/wordpress/wp-content/navigataur.css' type='text/css' media='all' /> </head> <body <?php body_class(); ?>> <nav class="nav-menu nav-menu-vertical nav-menu-right" id="nav-menu-s2"> <h3 id="hideRightPush"><i class="fa fa-bars"></i> <?php _e( 'Menú', 'kichu' ); ?></h3> <?php wp_nav_menu(array( 'theme_location' => 'primary', 'menu' => __( 'Primary Menu', 'kichu' ), 'fallback_cb' => 'kichu_new_setup', 'walker' => new Kichu_Walker_Menu() )); ?> </nav> <div id="wrapper"> <header> <div class="container clearfix"> <a href="<?php echo esc_url( home_url( '/' ) ); ?>" title="<?php bloginfo( 'name' ); ?>"><img src="/wordpress/wp-content/imagenes/logo2.png"> <h1 id="logo"><?php bloginfo( 'name' ); ?></h1> </a> <input type="checkbox" id="toggle" /> <div> <label for="toggle" class="toggle" data-open="Main Menu" data-close="Close Menu" onclick></label> <ul class="menu"> <li><a href="#">Google</a></li> <li><a href="#">Facebook</a></li> <li><a href="#">Youtube</a></li> <li><a href="#">Twitter</a></li> </ul> </div> <button id="showRightPush"><i class="fa fa-bars"></i></button> <a href="" target="_parent"><button id="showRightPush"><i class="fa fa-linkedin-square"></i></button></a> <a href="https://twitter.com/erreabogados" target="_parent"><button id="showRightPush"><i class="fa fa-twitter-square"></i></button></a> </header>/div></div> <!-- /header -->
I know its cause a css property but i cant find which one and how to engage the menu in the right side of the header.
- The topic ‘Horizontal menu in Kichu’ is closed to new replies.