you cannot make a second else clause after one.
you must make it more specific like this:
PHP Code:
if ($bbuserinfo[usergroupid]==7) {
$customtext = "Note: the maximum size of your custom image is $amw in width by $amh in height or $amfs bytes (whichever is smaller).";
} else {
if ($bbuserinfo[usergroupid]==6 || $bbuserinfo[usergroupid]==5) {
$customtext = "Note: the maximum size of your custom image is $mmw in width by $mmh in height or $mmfs bytes (whichever is smaller).";
} else {
$customtext = "Note: the maximum size of your custom image is $avatarmaxdimension by $avatarmaxdimension pixels or $avatarmaxsize bytes (whichever is smaller).";
}
}