Hi first you should edit /simplecorp/admin/options/social.php add your own line like the others:
$options[] = array( "name" => "Phone Number",
"id" => $shortname."_phonenubmer",
"std" => "",
"type" => "text");
then open the /simplecorp/header.php and find this <!-- begin #socialIcons -->
and add new line like the others:
<?php if(of_get_option('sc_phonenubmer')!='') : ?>
<li class="phone-link"><a href="<?php echo of_get_option('sc_phonenubmer') ?>" class="facebook" id="social-01" title="<?php _e( 'Contact Phone', 'site5framework' ); ?>"><?php _e( 'Contact Phone', 'site5framework' ); ?></a></li>
<?php endif ?>
Also you should add phone-link style to your “main-css.css”.
I hope this works for you.