vb 3.8.7 was a better 'get to grips' with forum software (which is what they are using)
your social media icons is just css calls with some div list and tables.
inserting this into your body would do it.
Code:
<div id="topiconbox">
<li><a href="http://www.twitter.com/yourtwittersite">
<img title="twitter" alt="twitter" src="twitter.png">
</a>
</li>
<li><a href="http://www.facebook.com/yourfacebook">
</li>
<li>........
......
....
a call to something like this would accomplish the same
Code:
#topiconbox {
float: right;
height: 110px;
margin: 0 -8px 14px 0;
padding: 1px 0 0 10px;
width: 115px;
}
..
.