Here’s something you can try . . .
Within your custom.css file, add the following:
.module-title {
background: none repeat scroll 0 0 rgba(0, 0, 0, 0);
border-bottom: 1px solid #000000
color: #000000
display: none;
font-family: 'Roboto',sans-serif;
font-size: 15px;
font-weight: 700;
line-height: 20px;
margin: 0 0 20px;
padding: 0 0 20px;
text-transform: uppercase;
}
The key is the “display: none” property, It will also affect some other titles – so see if this achieves the result you’re looking for and let me/us know. (NOTE: It doesn’t matter where you put the “display” property in the list).
😎