Hi, I am trying to reinstate the social media icons on the 'Social Head' module on my website.
I have tried the code below, which shows the icons but every time I try to add the hyperlink, it disappears on saving:
<ul class="social-list">
<li> <i class="fa fa-facebook"><!-- icon --></i></li>
<li> <i class="fa fa-twitter"><!-- icon --></i></li>
<li> <i class="fa fa-instagram"><!-- icon --></i></li>
</ul>
I have also tried this code below, but it completely disappears on saving:
<ul class="social-list">
<li><a href="#" title="Facebook" class="facebook"><span class="fa fa-facebook" aria-hidden="true"></span></a></li>
<li><a href="#" title="Twitter" class="twitter"><span class="fa fa-twitter" aria-hidden="true"></span></a></li>
<li><a href="#" title="Instagram" class="instagram"><span class="fa fa-instagram" aria-hidden="true"></span></a></li>
</ul>
Any ideas, many thanks