domino777
08-26-2004, 11:01 PM
does anybody know how she gets her left module to be on the right side of the screen? thanks a bunch!
http://www.xanga.com/home.aspx?user=devastatedxheart
http://www.xanga.com/home.aspx?user=devastatedxheart
|
View Full Version : help with my layout please??? ...and thank you! :) domino777 08-26-2004, 11:01 PM does anybody know how she gets her left module to be on the right side of the screen? thanks a bunch! http://www.xanga.com/home.aspx?user=devastatedxheart mia_mia 08-26-2004, 11:09 PM 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> |