Find this line of code in your stylesheet:
Code:
.centerColumn, #bannerOne, #bannerTwo, #bannerThree, #bannerFour, #bannerFive, #bannerSix {
padding: 10.8em;
}
Remove the ".centerColumn" from this list (don't forget to remove the comma, as well), leaving it looking like this:
Code:
#bannerOne, #bannerTwo, #bannerThree, #bannerFour, #bannerFive, #bannerSix {
padding: 10.8em;
}
Now, put your ".centerColumn" back and set your desired space at top:
Code:
.centerColumn {
padding-top: 0em;
}
Hope this helps.