chatterbox on the left |
![]() ![]() |
chatterbox on the left |
Feb 25 2005, 11:47 PM
Post
#1
|
|
![]() Newbie ![]() Group: Member Posts: 8 Joined: Mar 2004 Member No: 6,206 |
does anyone know a code that will put the chatterbox where the left side modules are? i need to find a way to do that without having to do custom modules and losing all my other info. help please?
|
|
|
|
Feb 25 2005, 11:54 PM
Post
#2
|
|
![]() boogie down yo` ![]() ![]() ![]() ![]() ![]() ![]() Group: Member Posts: 1,109 Joined: Mar 2004 Member No: 9,271 |
<script language=javascript>
function swapDotnet(){ var blogring = document.getElementsByTagName("td") for (var i = 0; i < blogring.length; i++){ if (blogring[i] == "mainleft" || blogring[i].width == "200"){ var dotnet = blogring[i].cloneNode(true); blogring[i].parentNode.appendChild(dotnet); blogring[i].parentNode.removeChild(blogring[i]); break; }} } swapDotnet(); </script> that code moves the chatterbox to the left BUT it moves the left modules to the right <!-- begin code provided by createblog.com --> <style type='text/css'> .mainleft { display:none; } </style> <!-- end code provided by createblog.com --> and that disables the left modules |
|
|
|
![]() ![]() |