my bad - the style is actually in black.css of your theme;
try and find exactly this style:
#title-area #title {
color: #FFFFFF;
font-size: 30px;
font-family: Georgia, Times New Roman, Trebuchet MS;
font-weight: normal;
margin: 0;
padding: 0 0 0 20px;
text-decoration: none;
line-height: 36px;
}
then change it to:
#title-area #title {
color: #FFFFFF;
font-size: 30px;
font-family: Georgia, Times New Roman, Trebuchet MS;
font-weight: normal;
margin: 0;
padding: 0 0 0 20px;
text-decoration: none;
line-height: 36px;
visibility: hidden;
}
(or any other of the suggestions)
if you edited this style:
.header-image #title-area, .header-image #title-area #title, .header-image #title-area #title a {
you got the wrong one.
to make the changes visible in your browser, you might need to clear the browser cache which might be holding on to the 'old stuff' -
try to press 'reload' on the browser; or press 'ctrl' nad 'f5' at the same time.