Modules, Switching sides? |
![]() ![]() |
Modules, Switching sides? |
Apr 24 2005, 12:46 PM
Post
#1
|
|
|
Newbie ![]() Group: Member Posts: 7 Joined: Apr 2005 Member No: 129,982 |
Is there anyway to switch my left module to the right side and at the same time switch my javascript module to the left?
|
|
|
|
Apr 24 2005, 12:52 PM
Post
#2
|
|
|
Tu es laid. ![]() ![]() ![]() ![]() ![]() ![]() ![]() Group: Official Member Posts: 3,913 Joined: Feb 2005 Member No: 106,675 |
|
|
|
|
Apr 24 2005, 12:56 PM
Post
#3
|
|
|
Newbie ![]() Group: Member Posts: 7 Joined: Apr 2005 Member No: 129,982 |
Right. My bad.
|
|
|
|
Apr 24 2005, 12:59 PM
Post
#4
|
|
|
Newbie ![]() Group: Member Posts: 7 Joined: Apr 2005 Member No: 129,982 |
But that only moves the left module to the right, I want the right module to the left as well.
|
|
|
|
Apr 24 2005, 01:01 PM
Post
#5
|
|
|
Senior Member ![]() ![]() ![]() ![]() ![]() ![]() ![]() Group: Member Posts: 3,551 Joined: Feb 2005 Member No: 102,857 |
Don't double post just edit your post
|
|
|
|
Apr 24 2005, 01:07 PM
Post
#6
|
|
|
Tu es laid. ![]() ![]() ![]() ![]() ![]() ![]() ![]() Group: Official Member Posts: 3,913 Joined: Feb 2005 Member No: 106,675 |
|
|
|
|
Apr 24 2005, 01:16 PM
Post
#7
|
|
|
Newbie ![]() Group: Member Posts: 7 Joined: Apr 2005 Member No: 129,982 |
I want my chatterbox thing in the right module moved to the left and I want my left module moved to the right.
|
|
|
|
Apr 24 2005, 01:46 PM
Post
#8
|
|
|
Tu es laid. ![]() ![]() ![]() ![]() ![]() ![]() ![]() Group: Official Member Posts: 3,913 Joined: Feb 2005 Member No: 106,675 |
well use the code i just gave you add use this code for your chatterbox, a sperate div and postion it to the left..
CODE <div style="left=0; top=0; position=absolute;"> CHATTERBOX CODE GOES HERE </div> replace the left and top to ostion it to the left.. thats the only thing i could think of since i forgot that website for the left module that supports javascripts. |
|
|
|
Apr 24 2005, 02:19 PM
Post
#9
|
|
![]() ;) ![]() ![]() ![]() ![]() ![]() ![]() ![]() Group: Staff Alumni Posts: 9,573 Joined: Feb 2005 Member No: 99,124 |
Use this to change your modules to the right side:
CODE <!-- CODE BY PROBOARDS.COM--> <script language="Javascript"> var tds = document.getElementsByTagName("td"); for (var i = 0; i < tds.length; i++){ if (tds[i].width == "200"){ tds[i].parentNode.appendChild(tds[i].cloneNode(true)); tds[i].parentNode.removeChild(tds[i]); break; }} </script> <!-- CODE BY PROBOARDS.COM --> If that doesnt work, then try googling a code. |
|
|
|
![]() ![]() |