Hi Robert van Alphen,
The title you are getting on top is for header meta information. if you place excerpt on page than it will appear on top header.
if you want to remove top header then please add this css on child theme style.css file
.page-template-template-full-width #header-meta {
display: none;
}
if you want to hide title that is above the page content or above the image than apply this css on child theme style.css file
.page-template-template-full-width .entry-header h1 {
display:none
}
Note: Please use child theme style,css template so your changes will not lost on theme update.