View Single Post
b666m's Avatar
Posts: 1,090 | Thanked: 476 times | Joined on Jan 2010 @ Ingolstadt, Germany
#86
Originally Posted by Coolmac View Post
I re-saved the.js file and created a new 'avatar.png' but still doesn't work. Did you modify line 420?
this is the code:

Code:
    /* Creation of an avatar image */
    if (item.self == false) { 
        if (item.avatar != "") {
            avatar_img.style.backgroundImage =  "url('"+item.avatar+"')";
            avatar_img.onclick = MessagingWidgetsRenderer_avatarClicked;
        }
    } 
    else {
	avatar_img.style.backgroundImage =  "url('avatar.png')";      
	avatar_img.onclick = MessagingWidgetsRenderer_avatarClicked;
   }
i just added a new else-case
maybe you could try how the path in "url('...')" has to be to make it work
(tried file:///user/.... and file://user ... and /user/ ... and /user/ ... nothing happened )