In x-child, I created a top
menu and placed it below primary-menu
. You can see it https://be.a.cloudgeni.us
What changes do I need to relocate top
menu inside x-topbar
along side the social icons?
in x-child/functions.php
, I have
function register_my_menu() {
register_nav_menu('top',__( 'Top Menu' ));
}
add_action( 'init', 'register_my_menu' );
and in x-child/header.php
, I have
<?php
// =============================================================================
// HEADER.PHP
// -----------------------------------------------------------------------------
// The site header.
// =============================================================================
?>
<?php x_get_view( 'header', 'base' ); ?>
<?wp_nav_menu( array( 'theme_location' => 'top', 'container_class' => 'x-topbar' ) ); ?>
and custom css is
ul#menu-top li {
list-style: none;
text-align: center;
padding: 5px;
margin-right: 30px;
font-size: 0.7em;
}
ul#menu-top {
margin: 0 auto;
width: 960px; /*menu width*/
display: flex;
}