Tagged: 

Viewing 8 posts - 1 through 8 (of 8 total)
  • Author
    Posts
  • #1362649

    How Can I put my social icons on my main menu level after the magnifying glass?
    I write in Private Content the address of my web site so you can see it.
    I would like to have my social Icons immediatly after the magnifying glass.

    Thanks,

    #1362671

    Hey galliulisse,

    Try checking your settings under Enfold->Header->Extra Elements->Header Social Icons.

    Best regards,
    Rikard

    #1362687

    I think i don’t explain very well what i want.
    I give you an image to better understand

    • This reply was modified 2 years, 3 months ago by galliulisse.
    #1362719

    Hi galliulisse,

    Please add this code in your child theme’s functions.php file:

    function append_social_icons_to_menu_below(){
        ?>
        <script>
            var menu = document.querySelector("#header_main_alternate .av-main-nav");
            var social_icons = document.querySelectorAll("#header .social_bookmarks li");
            social_icons.forEach(list => {
                menu.appendChild(list);
            });
        </script>
        <?php
    }
    
    add_action('wp_footer', 'append_social_icons_to_menu_below');

    If you don’t have a child theme yet, you can download and find the instructions here: https://kriesi.at/documentation/enfold/child-theme/

    Best regards,
    Nikko

    #1362759

    Perfect! And if i Wont change the over color?

    #1362763

    Hi,

    Please add following code to Quick CSS field in Enfold theme options > General Styling tab

    
    #top #wrap_all .av-social-link-facebook:hover a,
    #top #wrap_all .av-social-link-facebook a:focus {
      color: #fff;
      background-color: orange;
    }
    

    Best regards,
    Yigit

    #1363288

    Ok Perfect.

    Closed form me

    #1363295

    Hi,

    Thanks for letting us know, I’ll close this thread for now then. Please open a new thread if you should have any further questions or problems.

    Best regards,
    Rikard

Viewing 8 posts - 1 through 8 (of 8 total)
  • The topic ‘Social Icons after Main menu, same level, on "Centered logo with centered menu"’ is closed to new replies.