scrollbar in blogring/chatterbox, how do i put a scrollbar in there? |
![]() ![]() |
scrollbar in blogring/chatterbox, how do i put a scrollbar in there? |
Aug 31 2004, 04:03 PM
Post
#1
|
|
|
Newbie ![]() Group: Member Posts: 1 Joined: Aug 2004 Member No: 45,090 |
I've found te code to put a scrollbar in my subscription module, how do i put it in the "my blogrings" module and in my chatterbox?
Subscriptions Scroll bar Code: CODE <!-- begin code provided by createblog.com -->
<script language="Javascript"> // Subscriptions Scrollbar - xanga.com/add_ons // Submitted by xanga.com/godofphotoshop // change here to the height of the box, px means pixels var subscriptionboxheight = "110px"; // do not edit below here var th = document.getElementsByTagName("th"); for (var p = 0; p < th.length; p++) { if(th[p].innerHTML.toLowerCase().indexOf('subscriptions</span>') !== -1) { var subtext = th[p].parentElement.parentElement.getElementsByTagName("tr")[1].getElementsByTagName("td")[0]; subtext.innerHTML = "<div style=\"height: " + subscriptionboxheight + "; overflow: auto \">" + subtext.innerHTML + "</div>"; } } </script> <!-- end code provided by createblog.com --> |
|
|
|
Aug 31 2004, 04:17 PM
Post
#2
|
|
![]() The voices talk too much... -.-u ![]() ![]() ![]() ![]() ![]() ![]() Group: Member Posts: 2,099 Joined: Aug 2004 Member No: 39,078 |
|
|
|
|
![]() ![]() |