I've been looking around friendster talk but most codes I found in compilation posts were of 2007. Same thing when I searched for it, most of it was from 2007 and since friendster updated, it no longe
ok, well, if you're putting it in your overlay codes there's a javascript extention inwhich you can put .css & .js files.
one of which you can put this i believe in the <head> tag:
[spoiler][quote]var headID = document.getElementsByTagName("head")[0];
var cssNode = document.createElement('link');
cssNode.type = 'text/css';
cssNode.rel = 'stylesheet';
cssNode.href = [b]'URL.css'[/b];
cssNode.media = 'screen';headID.appendChild(cssNode);
_______________________________________________________
var headID = document.getElementsByTagName("head")[0];
var newScript = document.createElement('script');
newScript.type = 'text/javascript';
newScript.src = [b]'URL.js'[/b];
headID.appendChild(newScript);[/quote]
[/spoiler]
as a form of html <script language="text/css"> or <script language="text/javascript">
hope this helps.