Scrolling comments
MySpace Website Tutorials | Submited Dec 10, 2007
Written by: 
how to make each comment on your profile scroll
This isn't for div comments!!1!!!
Myspace added a class name to the section that each comment is in (yay!) for resizing the images, however, we can use this to make the comments scroll.
Adjust the height to your pleasure, adjusting the width isn't recommended unless you know what you're doing.
Scrolling
Remember kids,
Style Tags
td.columnsWidening{
display:block;
overflow:auto;
height:100px;
width:97%;
}
Hiding overflow
if you don't want a bunch of blurry pictures, but also don't want a stretched profile, change overflow:auto; to overflow:hidden;
td.columnsWidening{
display:block;
overflow:hidden;
height:100px;
width:97%;
}