MySpace placed a couple of break tags below the About Me and Who I'd Like To Meet headers, so that's probably why there are awkward spaces. Try adding this to your stylesheet to get rid of some of it:
CODE
.blurbs td.text {display: none!important; height: 0px!important;}
If that's not enough you can position the text around so it's at least centered and the spaces are distributed equally. Add this to your CSS:
CODE
.blurbs span.text {position: relative; top: -10px; left: -10px;}
Mess around with the values according to where you want it positioned.