Those Scrollbars, and blog entires-- again. |
Those Scrollbars, and blog entires-- again. |
![]()
Post
#1
|
|
Newbie ![]() Group: Member Posts: 2 Joined: Aug 2007 Member No: 564,728 ![]() |
I've found dozens of pages and topics about putting individual entries in scroll boxes, but what I want is coding that will allow me to group the entirety of the entries (without the side modules) into a box. Can anyone help out?
Rex |
|
|
![]() |
![]()
Post
#2
|
|
![]() AKA RockIt Studios ![]() ![]() ![]() ![]() ![]() ![]() Group: Official Member Posts: 2,286 Joined: Jun 2006 Member No: 421,809 ![]() |
uhm...i'm not sure what you mean here.
do you mean like ALL of the entries with or without dates and with scrollbars or without scrollbars basically on a background. yeah...i think that's what you're asking? excuse my blondness. ![]() |
|
|
*Alysia* |
![]()
Post
#3
|
Guest ![]() |
This isn't feasible because the right side of your Xanga (the side with all the entries) is a table rather than a div layer (div layers supporting scrollbars, and tables not).
|
|
|
![]()
Post
#4
|
|
Newbie ![]() Group: Member Posts: 2 Joined: Aug 2007 Member No: 564,728 ![]() |
Darn. Thanks though. :)
|
|
|
*digitalfragrance* |
![]()
Post
#5
|
Guest ![]() |
You could do it, but WITH the side modules. OR, you could hide the side modules, make all the blogs in a box, and re-create the side modules with coding.
|
|
|
![]()
Post
#6
|
|
![]() Why don't you make like a hockey player, and get the puck ou ![]() ![]() ![]() ![]() Group: Validating Posts: 167 Joined: Jul 2006 Member No: 434,037 ![]() |
I've seen it done before. in fact I've done it. unfortunately I lost the code. Hunt for it and you will find.
|
|
|
![]()
Post
#7
|
|
![]() Senior Member ![]() ![]() ![]() ![]() Group: Member Posts: 122 Joined: Feb 2005 Member No: 106,057 ![]() |
It's definitely possible, with a bit of work. See if you can find the code first--if not, and you're patient, maybe i'll do it for you when I have time
|
|
|
![]()
Post
#8
|
|
![]() Why don't you make like a hockey player, and get the puck ou ![]() ![]() ![]() ![]() Group: Validating Posts: 167 Joined: Jul 2006 Member No: 434,037 ![]() |
I think all you have to do is take the stuff in this link
http://www.createblog.com/scripts/script.php?id=105 then add QUOTE p { overflow: scroll } EDIT* Put it in the header |
|
|
![]()
Post
#9
|
|
![]() Newbie ![]() Group: Member Posts: 5 Joined: Mar 2005 Member No: 111,607 ![]() |
blah
|
|
|
![]()
Post
#10
|
|
![]() Senior Member ![]() ![]() ![]() ![]() Group: Member Posts: 122 Joined: Feb 2005 Member No: 106,057 ![]() |
Unless I'm mistaken, this works only for single entries but not for the whole blog entry area
I think all you have to do is take the stuff in this link http://www.createblog.com/scripts/script.php?id=105 then add EDIT* Put it in the header |
|
|
*IVIike* |
![]()
Post
#11
|
Guest ![]() |
try this
CODE <style type="text/css">
.custom{ width:360px; height:500px; z-index:100; overflow: auto; border: 2px color solid; background:Transparent; }</style> <!-- begin code provided by createblog.com from xanga.com/html_scripts--> <script> var tds = document.getElementsByTagName ('a'); for (var i = 0; i < tds.length; i++) { timeString = tds[i].innerText; if(timeString.match(/\d+:\d+ [ap]m\b/i)){ if(!tds[i].parentNode.parentNode.parentNode.parentNode.parentNode.tagName.match(/table/i)){break;} table = tds[i].parentNode.parentNode.parentNode.parentNode.parentNode; stuff = tds[i].parentNode.parentNode.parentNode.previousSibling.lastChild; inner = stuff.innerHTML stuff.innerHTML=""; stuff.insertAdjacentHTML('afterBegin','<div class="custom">'+inner+'</div>'); } } </script> |
|
|
![]() ![]() |