askdesign
5/26/2015 - 10:28 PM

Navigation Techniques

Code Snippets

/* --- Primary Nav Before Footer --- */
/*--- http://wpsites.net/wordpress-admin/nav-menu-genesis-footer/ ---*/

/*--- Display Primary Nav Menu Before Footer ---*/
/** Primary nav menu before footer */
remove_action( ‘genesis_after_header’, ‘genesis_do_nav’ );
add_action( ‘genesis_before_footer’, ‘genesis_do_nav’ );
.main-navigation li::before {
    color: #fff;
    content: "/";
    display: block;
    font-size: 16px;
    font-weight: 300;
    margin-right: -3px;
    margin-top: -9px;
    position: absolute;
    right: 0;
    top: 50%;
}

/* --- nothing on left side for 1st menu item --- */
.main-navigation li:first-child {
      content: "";
}