Ok ran into a problem...
// TPortal stats box
// Modified By OnTap©
function TPortal_statsbox()
{
global $context, $settings, $options, $scripturl, $txt, $db_prefix, $modSettings;
$bullet = '<img src="'.$settings['images_url'].'/TPdivider.gif" alt="" border="0" style="margin:0 2px 0 0;" />';
$bullet2 = '<img src="'.$settings['images_url'].'/TPdivider2.gif" alt="" border="0" style="margin:0 2px 0 0;" />';
echo'<table width="99%" cellpadding="0" cellspacing="5" border="0"><tr>';
echo '<td width="100%" valign="top" class="smalltext" style="font-family: verdana, arial, sans-serif;">';
Atleast on my theme MESH it made it eat the boxes before it. Changed it to...
// TPortal stats box
// Modified By OnTap©
function TPortal_statsbox()
{
global $context, $settings, $options, $scripturl, $txt, $db_prefix, $modSettings;
echo '<div style="padding: 5px;" class="smalltext">';
$bullet = '<img src="'.$settings['images_url'].'/TPdivider.gif" alt="" border="0" style="margin:0 2px 0 0;" />';
$bullet2 = '<img src="'.$settings['images_url'].'/TPdivider2.gif" alt="" border="0" style="margin:0 2px 0 0;" />';
****THEN AT BOTTOM MAKE SURE IT IS SET THIS WAY****
}
echo '</div>';
}
echo '</div>';
}
This completely fix all my problems...
This could also be the problem with your theme gamerxgirl might try the fix see if it corrects it.
Siath