[quote=honey_jx2][quote=bobcbar]I am not sure what addbox function aftermath is using inside the tracker.js..that is what determines which addbox generator you use.
You can only use 1 js linker on ur profile, if you try to add more it will cancel out. You really should use only 1 linker code for all ur codes both external css and js. Just inject your external css at the top of ur tracker.js using this code.
<">[/quote]
i have two linkers, 1 for css which i posted in my "about me" section and the other 1 is for my js which is in my media box...
here's the code for the WVM that i have...
<">and if you can remember i asked a question on the other thread for compiling all js codes into 1 js codes which you've answered me int that thread... but i really don't get the tutorial...

[/quote]
This is the code that needs to be updated.
<">It is confusing because of different addbox function codes. I am not using the version posted here.
This is the new addbox function code I am using.
[quote]function addBox (type,head,htm,id,sibling) {
//by marfillaster
//type "LEFT" | "RIGHT"
//head header string
//htm innerHTML string
//id css_id string
//sibling css_id_insertbefore string | null
/* Available default Siblings
LEFT
0 = controlpanel
1 = photos
13 = blogs
12 = reviews
6 = moreabout
18 = publiccomments
10 = scrapbook
RIGHT
15 = meettrail
2 = friends
14 = googleads
7 = fan
8 = groups
null - appends to last
*/
try {
var li=document.createElement("li");
} catch(e) {
var li=document.createElement("<li>");
}
if(type=="LEFT") {
var ul=document.getElementById("0").parentNode.parentNode;
htm="<div class='boxcontent'>"+htm+"</div>";
}
else var ul=document.getElementById("2").parentNode.parentNode;
li.innerHTML="<div id='"+id+"' class='commonbox "+id+"'>"+
"<h2>"+head+"</h2>"+
"<div id='content_"+id+"'>"+
htm+
"</div>"+
"</div>";
if(sibling==null) ul.appendChild(li);
else {
sibling=document.getElementById(sibling).parentNode;
ul.insertBefore(li,sibling);
}
}[/quote]
Then I use this generator to create my addboxes [url]http://renalvir.zuiken.net/wvmgen/ver2.2/addboxgen.html[/url]