@SavvyVeggieYou could use the custom css option for this. In the dashboard, go to Appearance->Theme Options->Design Options Tab->Custom CSS. Paste the following css and click on save changes.
If you want to remove it from just the “Blog Full Content Display” template use the following css.
.page-template-page-template-blog-full-content-php .page-title-wrap {
display: none;
}
If you want to completely remove ti then use the following css.
.page-title-wrap {
display: none;
}
Hope this helps.