This is where using Firebug comes in. With that you could determine the class for the blog title is blogtitle and you could also see that the class for the body on that page is home or page-id-15 so you would build either of the following to not display the blog title on the home page.
HTML Code:
body.home .blogtitle {
display: none;
}
OR (in your specific case)
HTML Code:
body.page-id-15 .blogtitle {
display: none;
}
Even with Themeframe you would have to target just the home page.