Well, I’m sure there are better ways of doing this, but you could set the componentheading to hidden:
In template css Change the following:
.componentheading {
background:#E1E1E1 none repeat scroll 0 0;
color:#666666;
font-size:1em;
font-weight:bold;
line-height:normal;
margin:-10px -15px 10px;
padding:4px 15px;
text-transform:uppercase;
To:
.componentheading {
/*background:#E1E1E1 none repeat scroll 0 0;
color:#666666;
font-size:1em;
font-weight:bold;
line-height:normal;
margin:0px;
padding:0px;
text-transform:uppercase;*/
visibility: hidden;
Everything but visibility is commented out in case you want to change it back.