SavesTheDay
08-04-2004, 09:04 PM
Hey :), I've got two questions, my xanga is your_fave_weapon (http://xanga.com/your_fave_weapon), and I was wondering how I get the module that's already on the left, to the right. (example= starry_lonely_nights (http://xanga.com/starry_lonely_nights))
And my other question, is how do I get my scrollbar from the right to the left?
Thanks!<3
Shirl
08-04-2004, 09:08 PM
Er...can't read your post, the text is too small lol and I dont have my glasses. :P
iceicelaura
08-04-2004, 09:20 PM
Use this code...
<!-- begin code provided by createblog.com -->
<body ONCONTEXTMENU="return false" dir="rtl"><DIV DIR="LTR">
<!-- end code provided by createblog.com -->
...and put it in your Custom Header. It will automatically switch the position of your scrollbar from the right side to the left. Hope it works for you. :)
CKY Chick
08-04-2004, 09:25 PM
move modules to right side:
<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>