Find:if ($avatar == "1" ) { $avatarfileurl = '<img src=\''.$domain.'/avatars/'.$avatarfile.'\' height=\'60\' width=\'60\' alt=\'\' />'; } else { $avatarfileurl = ''; };Replace with:$MyWidth = '80';$MyHeight = '80';if ($avatar == "1" ) { $avatarfileurl = '<img src="'.DIRPATH.'/avatars/'.$avatarfile.'" style="max-width: '.$MyWidth.'px; max-height: '.$MyHeight.'px !important;" alt="" />';} else { if (empty($avatarfile) && ($sex == f) && ($avatar == "0" )){ $avatarfileurl = '<img src="'.DIRPATH.'/avatars/default/def-female.png" style="max-width: '.$MyWidth.'px; max-height: '.$MyHeight.'px !important;" alt="" />';} else {if (empty($avatarfile) && ($sex == m) && ($avatar == "0" )){ $avatarfileurl = '<img src="'.DIRPATH.'/avatars/default/def-male.png" style="max-width: '.$MyWidth.'px; max-height: '.$MyHeight.'px !important;" alt="" />';} else {if (empty($avatarfile) && ($sex == u) && ($avatar == "0" )){ $avatarfileurl = '<img src="'.DIRPATH.'/avatars/default/def-member.png" style="max-width: '.$MyWidth.'px; max-height: '.$MyHeight.'px !important;" alt="" />';}}}}Save File: