Reply To: Placing primary and secondary navigation on same row

Homepage Community Forums Epik Theme Support Placing primary and secondary navigation on same row Reply To: Placing primary and secondary navigation on same row

#12111
Bruce
Customer

    To move secondary menu below the header and align right you…

    1. Comment out the following in functions.php

    // Reposition the Secondary Navigation
    // remove_action( ‘genesis_after_header’, ‘genesis_do_subnav’ ) ;
    // add_action( ‘genesis_before_header’, ‘genesis_do_subnav’ );

    2. Change “float:left” to “float:right” in style.css in this section.

    .nav-secondary .genesis-nav-menu .menu-item {
    float: right;
    }

    Bruce