How to align social icons all in one row in the menu?
-
Hi, Anyone knows how to align social icons all in one row?
I am using Genesis and a plugin called social media widget, but the icons are aligned vertically and I want them horizontally, below is the code I am using at functions.php, probably I need to add some instruction to do so. Anyone can tell? thank you.:
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 ( ‘secondary’ !== $args[‘theme_location’] )
return $menu;
ob_start();
dynamic_sidebar(‘Social Menu’);
$social = ob_get_clean();
return $menu . $social;
}
Viewing 5 replies - 1 through 5 (of 5 total)
Viewing 5 replies - 1 through 5 (of 5 total)
- The topic ‘How to align social icons all in one row in the menu?’ is closed to new replies.