View Single Post
b666m's Avatar
Posts: 1,090 | Thanked: 476 times | Joined on Jan 2010 @ Ingolstadt, Germany
#119
Originally Posted by x61 View Post
Thanks for your assistance, b666m.
I have couple quetions.
1. Which of the three files do you edit to change the background color?
the css file
(just look a few pages back - there is the discussion about this topic ^^)

2. Is it possible to have your name shown by the avarta instead showing "You"?
yep.
just edit the .js-file.

Code:
if (item.name_str != "") {
        name_tag.textContent = item.name_str;
    }
to
Code:
if (item.name_str != "") {
        name_tag.textContent = item.name_str;
    }

if (item.name_str != "" && item.self) {
        name_tag.textContent = "b666m";
    }
(replace b666m for your desired nick ^^)
haven't tested it but it should work

Last edited by b666m; 2010-02-12 at 23:07.
 

The Following 4 Users Say Thank You to b666m For This Useful Post: