Hi Guys,
I've had this solution for a very long on my website. After getting multiple email's from people asking me how to do it, I have decided to share it with the rest of you guys. Here you go. Enjoy.
STEP: 1
edit file templates/base/scripts/BxBaseFunctions.php
Find:
$sNick = getNickname($iId);
Change it to:
$aInfo = getProfileInfo($iId);
$sNick = $aInfo['FirstName'].'<br>'.$aInfo['LastName'];
The reason I am using the <br> is to put first name on one line and last name on a 2nd line. You dont have to use the <br> you can just put an empty space there so the first/lastname is spaced out. Since the Avatar are so small the <br> is much better in my opinion.
STEP 2:
edit file templates/base/css/general.php
Find:
.thumb_username {
font-size:11px;
text-align:center;
overflow:hidden;
white-space: nowrap;
height:15px;
}
Replace with:
.thumb_username {
font-size:11px;
text-align:center;
overflow:hidden;
white-space: nowrap;
height:30px;
}