Viewing 6 posts - 1 through 6 (of 6 total)
  • Author
    Posts
  • #207662

    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!

    #207710

    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

    #207743

    Hey thanks for getting back to me! I was hoping it would be a fixed header with social icons.

    Any ideas?

    #207752

    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

    #207763

    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–>

    #207777

    Oops! Tinkered with it and I got it. Thanks SOOOO MUCH!

Viewing 6 posts - 1 through 6 (of 6 total)
  • The topic ‘Replace NavBar with Social Icons?’ is closed to new replies.