Buy me a coffee

How to add Social Icons to Main Navigation

#1. First, EDIT SITE HEADER

1#2. Click ADD ELEMENTS

2#3. Enable Social Links

3Result

4#4. To add a space between Social Links – Navigation, use this code to Custom CSS box

div.header-nav-wrapper {
    margin-right: 3.9vw;
}

5#5. To edit Social Links, you can click on Social > Click Edit

6and you can add more links or remove links here

7

#6. On some smaller screen, you will see overlap between Nav links – Social Links, you can use this code to Code Injection > Footer to prevent this.

<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.7.0/jquery.min.js"></script>
<script>
$(document).ready(function(){
    $('.header-display-desktop div.header-actions-action--social').appendTo('header#header nav');
});
</script>
<style>
header#header nav .header-actions-action--social {
    display: flex;
    flex-direction: row;
}
header#header nav .header-actions-action--social a {
    margin-left: 1.1vw;
    margin-right: 1.1vw;
}
header#header nav {
    flex-wrap: nowrap;
    align-items: center;
}
</style>

8