MiZz Go ShaWDi
08-25-2004, 11:06 PM
how do i change my left module to the right and my chatter box in the middle. ex first is my entries than my chatterbox than my left mod.
|
View Full Version : Change left module to the right MiZz Go ShaWDi 08-25-2004, 11:06 PM how do i change my left module to the right and my chatter box in the middle. ex first is my entries than my chatterbox than my left mod. CKY Chick 08-26-2004, 02:01 AM next time search the forum first =) put this in your webstats: <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> JiNgLeBeLLz77 08-26-2004, 03:16 PM in order for the chatterbox to be in the middle... just use the code above, and put your chatterbox code in the javascript module like you would do anyways, and then it will go in the order you want =] |