Create Module for RIGHT hand side of page |
![]() ![]() |
Create Module for RIGHT hand side of page |
![]()
Post
#1
|
|
Member ![]() ![]() Group: Member Posts: 17 Joined: Jan 2005 Member No: 87,805 ![]() |
hey guys i was wondering how i can create another module but put it on the right hand side of the page right above my chatter box... i know there is a left handed module here in the xanga scripts that i can use but like i said i would like it on the right hand side and above my chatter box... can somebody help me please! thanks!
|
|
|
![]()
Post
#2
|
|
![]() define our lives for us. ![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() Group: Staff Alumni Posts: 11,656 Joined: Aug 2004 Member No: 43,293 ![]() |
I honestly don't think so. I haven't seen anything with a right side module like that.
If you have an example, provide it, then. ![]() |
|
|
![]()
Post
#3
|
|
Member ![]() ![]() Group: Member Posts: 17 Joined: Jan 2005 Member No: 87,805 ![]() |
i wish i had an example lol the only thing i have is the chatterbox on the right hand side...so there is no way to get another module on the right though instead of the left?
[ posts merged ] actually there is a code to move all the modules to the right but i don't want that i just want one, i don't know if posting the code will help any..but this is the code to move all modules to the right <!-- begin code provided by createblog.com --> <script language="Javascript"> // original by sean http://www.xanga.com/seanmeister 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> <!-- end code provided by createblog.com --> and this is the code to make a module <!-- begin code provided by createblog.com --> <script> titleContent = 'Title Here'; moduleContent = 'Module Content'; sub = subTitle.parentNode.parentNode.parentNode.parentNode.parentNode sub.insertAdjacentHTML('beforeBegin','<table border="1" cellspacing="0" cellpadding="4" width="100%" class="left"><tr><th valign="top" align="left" class="left">' + titleContent + '</th></tr><tr><td valign="top" class="left">' + moduleContent) sub.insertAdjacentHTML('beforeBegin','<BR>'); </script> <!-- end code provided by createblog.com --> QUOTE just for future reference, there's an "edit" link at the top-right of each post :wink
|
|
|
![]() ![]() |