#comments
{
width:(How Wide You Want The Box To Be)px;
height:(How Tall You Want The Box To Be)px;
overflow:auto;
}
The overflow:auto; causes the box to form a scroll bar to compensate it being longer than it's limit. (It might need additional coding if your planning on viewing it with IE)
If you want to shorten/add a scroll bar to other sections, just replace the #comments.
There's additional coding for coloring the scroll bars in your profile.
But that's only viewable in IE, so it's kinda optional.
Hell...i'll add it anyway.
html
{
scrollbar-face-color: #FC7799;
scrollbar-shadow-color: #340940;
scrollbar-highlight-color: #FFFFFF;
scrollbar-3dlight-color: #340940;
scrollbar-darkshadow-color: #63396F;
scrollbar-track-color: #FFFFFF;
scrollbar-arrow-color: black;
}
This will change the colors for your scroll bar.
Change the Hex codes in this example to get the color scheme you want.
If you want to make the comment bar the same color, just change the "hmtl" into "hmtl, #comments"
And If you want them both seperately, just copy and paste a second copy, and replace the html with #comments.
Glad to help.