Diva :: try this coding
open admin/functions.php
find:
PHP Code:
if ($avatarurl=="" or ($bbuserinfo[userid]>0 and !($bbuserinfo[showavatars]))) {
$post[avatar]="";
} else {
eval("\$post[avatar] = \"".gettemplate("postbit_avatar")."\";");
}
and replace it with this:
PHP Code:
if ($avatarurl=="" or ($bbuserinfo[userid]>0 and !($bbuserinfo[showavatars]))) {
$post[avatar]="<img src=\"/forum/images/avatars/No Avatar.gif\" border=\"0\">";
} else {
eval("\$post[avatar] = \"".gettemplate("postbit_avatar")."\";");
}
Then create a new directory in the forum/images folder and call it avatar.
Then upload your No Avatar Img... save it as No Avatar.gif
hope that helps

regards...
g-force2k2