Buy me a coffee

Wexley – Add Social Icons to Navigation

In my example, we will try adding Instagram, Behance, LinkedIn icons to right of Navigation Bar.

Wexley Add Social Icons To Navigation 1 Min

#1. First, you add a Social Links block to Site Footer

Wexley Add Social Icons To Navigation 2 Min

we will have

Wexley Add Social Icons To Navigation 3 Min

#2. Use this code to Website Tools > Code Injection > Footer

<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.7.1/jquery.min.js"></script>
<script>
$(document).ready(function(){
    $('footer#footer .socialaccountlinks-v2-block').clone().appendTo('nav.main-nav>ul');
});
</script>
<style>
@media screen and (min-width:641px) {
nav.main-nav>ul {
    display: flex;
    align-items: center;
}}
</style>

Wexley Add Social Icons To Navigation Sua 2 Min

#3. Result

Wexley Add Social Icons To Navigation 5 Min