Take your website
To the next level
Discover our newly launched customization services and elevate your web projects to new heights.
Delegate tasks, save time, and unlock the power of professional WordPress outsourcing.

Okay
  Public Ticket #969145
Social Links
Closed

Comments

  •  2
    David Mitchell started the conversation

    Hi, I recently purchased your Scalia theme. I really like it. I am inquiring about social icons. Is it possible to add others such as Instagram and Youtube on there along the top bar? It seems there is a defined list of social links. Please advise. Thanks.

  • [deleted] replied

    Hi,

    You need to install child theme and add next code to its functoins.php file:

    add_action('scalia_print_socials', 'scalia_child_custom_socials');
    function scalia_child_custom_socials() {
    ?>
    <div class="socials-item youtube"><a href="http://your-youtube-link" target="_blank" title="YouTube">YouTube</a></div>
    <div class="socials-item instagram"><a href="http://your-instagram-link" target="_blank" title="Instagram">Instagram</a></div>
    <?php
    }

    and this code to style.css:

    .socials-item.youtube a:after { 
        content: '\e610'; 
    } 
    .socials-item.instagram a:after { 
        content: '\e609'; 
    }