The gray line is not under the heading; it is the heading background repeating because the title takes two lines.
Find in your stylesheet
Code:
.leftBoxHeading, .centerBoxHeading, .rightBoxHeading {
margin: 0em;
background-color: tranparent;
background-image: url(../images/tile_back.gif);
padding: 0.5em 0.2em;
}
and add
background-repeat: repeat-x;
Code:
.leftBoxHeading, .centerBoxHeading, .rightBoxHeading {
margin: 0em;
background-color: tranparent;
background-image: url(../images/tile_back.gif);
background-repeat: repeat-x;
padding: 0.5em 0.2em;
}