My apologies Louw.. I can only imagine where that was meant for :/
You could try adding the markup of the social icons to a 'Custom HTML' module and place this module in the position of your choice. Your markup would look something like the following (edit to taste)....
<div id="socialmedia">
<ul id="navigation">
<li class="social-rss">
<a title="RSS" target="_blank" href="#">
<i class="fa fa-rss"></i>
</a>
</li>
<li class="social-twitter">
<a title="Twitter" target="_blank" href="#">
<i class="fa fa-twitter"></i>
</a>
</li>
<li class="social-facebook">
<a title="Facebook" target="_blank" href="#">
<i class="fa fa-facebook"></i>
</a>
</li>
<li class="social-googleplus">
<a title="GooglePlus" target="_blank" href="#">
<i class="fa fa-google-plus"></i>
</a>
</li>
<li class="social-instagram">
<a title="Instagram" target="_blank" href="/0126/">
<i class="fa fa-instagram"></i>
</a>
</li>
</ul>
</div>
Ciarán