How can I add module to right side of screen? |
![]() ![]() |
How can I add module to right side of screen? |
![]()
Post
#1
|
|
Newbie ![]() Group: Member Posts: 1 Joined: Jul 2004 Member No: 29,806 ![]() |
Is there a way to add a module to the right side of the screen while leaving the original modules on the left? If I can't, can I just add text?
Thanks for any help. |
|
|
![]()
Post
#2
|
|
![]() anna park ![]() ![]() ![]() ![]() ![]() Group: Member Posts: 410 Joined: Jul 2004 Member No: 29,818 ![]() |
this code is to add another custom module to the LEFT but maybe if you play around with the code like change the left to right, it might just work!
![]() CODE <!-- 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 --> |
|
|
![]() ![]() |