Skip to content

Instantly share code, notes, and snippets.

@bcoco
Forked from srikat/functions.php
Created October 2, 2018 17:34
Show Gist options
  • Save bcoco/7c536ada433231622408a070514b621b to your computer and use it in GitHub Desktop.
Save bcoco/7c536ada433231622408a070514b621b to your computer and use it in GitHub Desktop.
Adding Simple Social Icons to Navigation bar in Genesis. http://sridharkatakam.com/adding-simple-social-icons-navigation-bar-genesis/
genesis_register_sidebar( array(
'id' => 'nav-social-menu',
'name' => __( 'Nav Social Menu', 'your-theme-slug' ),
'description' => __( 'This is the nav social menu section.', 'your-theme-slug' ),
) );
add_filter( 'genesis_nav_items', 'sws_social_icons', 10, 2 );
add_filter( 'wp_nav_menu_items', 'sws_social_icons', 10, 2 );
function sws_social_icons($menu, $args) {
$args = (array)$args;
if ( 'primary' !== $args['theme_location'] )
return $menu;
ob_start();
genesis_widget_area('nav-social-menu');
$social = ob_get_clean();
return $menu . $social;
}
.genesis-nav-menu .widget {
float: right;
}
.genesis-nav-menu .simple-social-icons ul li {
margin-bottom: 0 !important;
margin-top: 0.7rem !important;
}
.genesis-nav-menu .widget-area {
float: right;
padding-top: 2.2rem;
}
.genesis-nav-menu .widget-area {
float: right;
padding-top: 1.5rem;
}
@bcoco
Copy link
Author

bcoco commented Oct 2, 2018

Rather than floating the icons, you can use flex to order them nicely... just apply it to the menu itself. For example, this adds them to the end of a centered, horizontal menu (as in a footer) :

.genesis-nav-menu { display: flex; flex-direction: row; justify-content: center; }

From there, it's just a matter of adjusting the css to match.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment