In style.css look for this section:
Code:
/*************************************************************************
* PAGE STYLES:
* #page:
* background-color: Background color of the page DIV
* border-*: Border on either side of the page, used with .body background-image
* margin-top: Blank space at the top of the page
* margin-left, margin-right: Aligns the page DIV in the center
* padding: Pads the page with the given size
* width: Size of the page DIV
*
*************************************************************************/
#page {
background-color: white;
min-height: 500px;
border-left: 0px solid #666666;
border-right: 0px solid #666666;
margin-top: 10px;
margin-bottom: 10px;
margin-left: auto;
margin-right: auto;
padding: 10px;
width: 1200px;
}
Change the min-height from 500px to a number that is big enough to accomodate for your "Top Requested" list.
600px works ok with the tracks listed in top requests right now (there's only 3 of them), but if you have more in that list, you need to have a bigger space / larger min-height.