gigiograndi
Hi
For this you can use custom html module using the icon and link them to your channels
example code :
<ul class="social-list">
<li><a href="/index.php" title="facebook"><span class="fa fa-facebook" aria-hidden="true"></span></a></li>
<li><a href="/index.php" title="twitter"><span class="fa fa-twitter" aria-hidden="true"></span></a></li>
<li><a href="/index.php" title="vimeo"><span class="fa fa-vimeo" aria-hidden="true"></span></a></li>
<li><a href="/index.php" title="rss"><span class="fa fa-rss" aria-hidden="true"></span></a></li>
</ul>
custom css code you can apply below
.social-list li a span {
background: rgba(0,0,0,0.1);
border-radius: 50%;
color: #ffffff;
display: inline-block;
font-size: 10px;
line-height: 24px;
text-align: center;
height: 24px;
width: 24px;
font-family: 'FontAwesome';
}
Regards