Do I modify the content_container one?
--------------- Added [DATE]1306298037[/DATE] at [TIME]1306298037[/TIME] ---------------
Got it. Modified the template for new posts and inserted a div with the auto setting for overflow so it only shows th scrollbar when needed
Code:
<div class="widget_content blockbody floatcontainer">
<div style="height: 325px; overflow: auto;">
--------------- Added [DATE]1306301969[/DATE] at [TIME]1306301969[/TIME] ---------------
Made it cleaner with these template edits:
Code:
block_newposts:
<div class="widget_content blockbody floatcontainer sidebarsidescrollbar">
additional.css:
/* SIDEBAR SCROLLBAR FOR LIMITING THE HEIGHT TO 300PX */
.sidebarsidescrollbar {
height: 300px;
overflow: scroll;
}