hello Pros!
How do I replace the navbar (to the right of my logo) with social icons? I want to eliminate the menu navigation completely and just replace it with social icons.
Thank for your help!
Hey nmillas!
You can choose to display “Header with social icons and bottom navigation” Header type in Enfold theme options under Header tab and add following code to Quick CSS in Styling tab
#header_main_alternate { display: none; }
Best regards,
Yigit
Hey thanks for getting back to me! I was hoping it would be a fixed header with social icons.
Any ideas?
Hey!
In WordPress dashboard, please go to Appearance > Editor and open Header.php file and find
do_action('ava_after_main_menu');
and add following code right below it
$social_args = array('outside'=>'ul', 'inside'=>'li', 'append' => '');
echo avia_social_media_icons($social_args);
then add following code to Quick CSS to remove main menu
.main_menu { display: none; }
Cheers!
Yigit
Gosh you’re awesome for responding. But I’m getting a 500 Internal Error
What I have in Appearance -> Editor -> header.php is
*/
do_action(‘ava_after_main_menu’);
$social_args = array(‘outside’=>’ul’, ‘inside’=>’li’, ‘append’ => ”);
echo avia_social_media_icons($social_args);
?>
<!– end container–>
Oops! Tinkered with it and I got it. Thanks SOOOO MUCH!