oN3fou12tHr3e
08-01-2003, 09:17 PM
okay...i have two questions...
1) does eneone know a code to put a scrollbar on the sites i read list?
2) is there any way to move chatterboxes to the left side?
ahhh! id really appreciate it if someone could help!
Sum1YouDontKno
08-01-2003, 09:20 PM
1) I think that has been disabled. Easter Egg was the only one, i think, who had that script, he discountinued his work.
2.) ( this only works if you dont have a chatter box)
Put this in Website Stats
<script language=javascript>
// swaps sidebar position on default xanga site layout
// by sean http://www.xanga.com/seanmeister
function swapSidebar(){
var tds = document.getElementsByTagName("td")
for (var i = 0; i < tds.length; i++){
if (tds[i] == "mainleft" || tds[i].width == "200"){
var sidebar = tds[i].cloneNode(true);
tds[i].parentNode.appendChild(sidebar);
tds[i].parentNode.removeChild(tds[i]);
break;
}}
}
swapSidebar();
</script>
oN3fou12tHr3e
08-01-2003, 09:47 PM
heh heh! thanks for the code!