
lei9182 wrote:
ah i see... your tweaks will be affected if you edit it in your profile ryt???

-Offline- |

new css implementation? wohooo.... friendster really are making major updates this past few months... that's why i wondering why the css not working anymore... and that code just updated a few days ago... 


-Offline- |

@deys82
I think Friendster is mad at us... FriendsterTalk
edited: hmmmm.. I think they really envy us!
FriendsterTalk coders are smarter than them... thats how I see things in Friendster. 
Last edited by allvinn (2007-10-19 02:35:55)
-Offline- |

alvinn,
thanks. where shall i paste that? i'm so so blur about this new codes.
-Offline- |

hmmm what about the addbox function can i still use it? 


wvm still works?


-Offline- |
and my whole layout codes are not working. i need some help here. major problem. 
-Offline- |

@allvinn
i think you are right.... hehehe...
if this thing goes on... i might stop updating my profile... really frustrating you know... at one day you just finished updating your profile to the latest code and the next day you find that the code is obsolete... man.... i think my limit is almost up... i have been researching new code this past few month and found that these codes are useless and can't be implemented... i am tired now... really2 tired... almost felt like i am gonna give up (temporarily) in updating my profile... well... that's my story... hehehe... 


-Offline- |
uhmm, where do we paste it? im using ripway, do i just copy the url and paste it where? thanks!
-Offline- |

thanks xavier..
my profile turns to normal..


-Offline- |

thankies to all friendster genius...........
-Offline- |
i was able to get my wvm cbox to show up again, but the thing is, it's inside my featured friends... what should i do?
PROBLEM SOLVED... yipeee!!!!
Last edited by Mommy_D (2007-10-19 05:59:31)
-Offline- |

gen07 wrote:
uhmm, where do we paste it? im using ripway, do i just copy the url and paste it where? thanks!
paste in in your favorite music field or better refer to this link http://friendstertalk.com/viewtopic.php?id=2376&p=1


-Offline- |
thanks...
NEW ADDBOX FUNCTION BY xavierkym(to be replaced in your "tracker.js":
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);
}
}Last edited by levisornothing (2007-10-19 05:24:34)
-Offline- |

are there also div ids for the banner, nav, logo and stuff like that?

-Offline- |

-Offline- |

wow tnx for this trend...
xavier ur the best ^^...
again thx for this trend ^^...


-Offline- |

sickofyou wrote:
how to hide a box? example mediabox?
its like this^^...
put this on ur external css ^^...
/* HIDDEN SCRAPBOOK */
.scrapbook {
display: none;
}
or
/*-- Hide Srapbook or media box --*/
#content_10 {display : none ! important;}
tnx to xavier ^^

-Offline- |
NEW ADDBOX FUNCTION BY xavierkym
(to be replaced in your "tracker.js")
TAKE NOTE -- APPLICABLE TO WVM v2.1 & 3.1.1
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);
}
}Last edited by levisornothing (2007-10-19 06:33:10)
-Offline- |