Hi PoPcp1
I'm not sure how you want to add the titles, you can check this part which renders the icons in the file: /templates/soul_search/index.php
<div id="s5_social_bar_inner" class="s5_wrap">
<?php if ($s5_pos_search == "published") { ?>
<div id="s5_search_wrap">
<?php s5_module_call('search','notitle'); ?>
</div>
<?php } ?>
<?php if (($s5_rss != "") || ($s5_twitter != "") || ($s5_facebook != "") || ($s5_google != "")) { ?>
<?php if ($s5_facebook != "") { ?>
<div id="s5_facebook" onclick="window.open('<?php echo $s5_facebook; ?>')"></div>
<?php } ?>
<?php if ($s5_google != "") { ?>
<div id="s5_google" onclick="window.open('<?php echo $s5_google; ?>')"></div>
<?php } ?>
<?php if ($s5_twitter != "") { ?>
<div id="s5_twitter" onclick="window.open('<?php echo $s5_twitter; ?>')"></div>
<?php } ?>
<?php if ($s5_rss != "") { ?>
<div id="s5_rss" onclick="window.open('<?php echo $s5_rss; ?>')"></div>
<?php } ?>
<?php } ?>
<?php if ($s5_pos_custom_1 == "published") { ?>
<div id="s5_pos_custom_1">
<?php s5_module_call('custom_1','notitle'); ?>
</div>
<?php } ?>
<div style="clear:both; height:0px"></div>
</div>
and customize as you wish.