Account Status: Free, Plus, Paid
Actions: Tag Scroll to Tag List
Theme: Flexible Squares
On most of my layouts here I have inserted a tag scrolling option. Here is how to turn it back into a simple list without removing the coding (so you can have the scroll option in the future).
In the Sidebar section of my coding there are two sections you will be finding.
Find this CodeChange to this
#sidebar_tags .sbarcontent {
height: 300px;
overflow:auto;
}
#sidebar_tags .sbarcontent {
height: 100%;
overflow:auto;
}
ul.tagList {width: 100%;}
.tagBox {
height: 300px;
overflow-x: hidden;
overflow-y: scroll;
scrollbar-arrow-color: #d60014;
scrollbar-base-color: #222222;
scrollbar-face-color: #222222;
scrollbar-highlight-color: #d60014;
scrollbar-darkshadow-color: #ffffff;
scrollbar-shadow-color: #ffffff;
}
ul.tagList {width: 100%;}
.tagBox {
height: 100%;
overflow-x: no;
overflow-y: no;
scrollbar-arrow-color: #d60014;
scrollbar-base-color: #222222;
scrollbar-face-color: #222222;
scrollbar-highlight-color: #d60014;
scrollbar-darkshadow-color: #ffffff;
scrollbar-shadow-color: #ffffff;
}
This will give you the list and you can change back when or if you want to have your tag list scroll.