hey guys I couldn't see the link, is not working right now, but I think I know what you want.
If you know css this can be easily done by editing the cb.core.php
in: components/com_profiler/plugin/user/plug_cbcore/
here in:
function getDisplayTab($tab,$user,$ui) {
global $cbMyIsModerator, $ueConfig, $mosConfig_lang;
// Display Avatar/Image:
$return = "";
if ($ueConfig=="1") {
if($tab->description != null) $return .= "\t\t<div class=\"tab_Description\">".unHtmlspecialchars(getLangDefinition($tab->description))."</div>\n";
$name = htmlspecialchars(getNameFormat($user->name,$user->username,$ueConfig));
$return .= "\n\t\t\t\t<table cellpadding=\"5\" cellspacing=\"0\" border=\"0\" width=\"100%\" class=\"foto\"><tr class=\"foto1\">";
$uimage=$user->avatar;
if (file_exists("components/com_comprofiler/plugin/language/".$mosConfig_lang."/images"))
$uimagepath="components/com_comprofiler/plugin/language/".$mosConfig_lang."/images/";
else $uimagepath="components/com_comprofiler/plugin/language/default_language/images/";
if($user->avatarapproved==0) $uimage=$uimagepath."pendphoto.jpg";
elseif($user->avatar=='' || $user->avatar==null) $uimage=$uimagepath."nophoto.jpg";
else $uimage="images/comprofiler/".$uimage;
$return .= "<td align=\"center\" width=\"100%\" class=\"foto2\"><img src=\"".sefRelToAbs($uimage)."\" alt=\"".$name."\" title=\"".$name."\" /></td>";
if ($user->avatarapproved==0 && $cbMyIsModerator) {
$uimage="images/comprofiler/".$user->avatar;
$return .= "<td align=\"center\" width=\"100%\">"._UE_IMAGE_ADMIN_SUB.":<br /><br />"
. "<img src=\"".$uimage."\" alt=\"".$name."\" title=\"".$name."\" /></td>";
}
$return .= "</tr></table>";[/code]
you can create class in table, tr, td and play with css, I just add class (foto, foto1, foto2) and in my template css I just add border, padding, etc etc.
I hope this can help you guys.