Got it working for the SMS Capabilities Addon. Upload the attached 'phone.png' to the directory: images/misc/usercp_icons_png. This will work for GIF's too, just change the code to reflect the standard gif folder for the images. You will also have to convert the phone.png attachment to a .gif file.
Here's the code:
Find:
Code:
<tr><td class="$navclass[password]" nowrap="nowrap">
<table border="0" cellspacing="0" cellpadding="0">
<tr>
<td width="20">
<img border="0" src="$stylevar[imgdir_misc]/usercp_icons_png/lock.png" width="16" height="16"></td>
<td><a class="smallfont" href="profile.php?$session[sessionurl]do=editpassword">$vbphrase[edit_email_and_password]</a></td>
</tr>
</table>
</td></tr>
Add BELOW:
Code:
<!-- SMS -->
<tr><td class="$navclass[sms]" nowrap="nowrap">
<table border="0" cellspacing="0" cellpadding="0">
<tr>
<td width="20"><img border="0" src="$stylevar[imgdir_misc]/usercp_icons_png/phone.png" width="16" height="16"></td> <td><a class="smallfont" href="profile.php?$session[sessionurl]do=editsms">$vbphrase[edit_sms]
</a></td>
</tr>
</table>
</td></tr>
<!-- / SMS -->