If you want to hide the righthand column on your profile (the one that contains your friends, comments, etc.), the CSS class for it is "text". If you said something like the following, it'd hide that column:
HTML Code:
<style>
.text { display: none; }
</style>
Of course, this'll disable people from viewing your friends list and making comments. :\ That may not be what you want.