I tried the display:none; method and it messed up the featured image when I exercised the responsiveness of the page, so I tried something different, and it worked ??
In the Editor, scroll down to Stylesheet. In the stylesheet scroll down to the 11 section that works with content. Under /* Hero */ , find the block that reads
}
.hero.with-featured-image .page-title,
.hero.with-featured-image .hentry {
position: relative;
color: #fff;
}
Then change the hexcode to read transparent like this…
}
.hero.with-featured-image .page-title,
.hero.with-featured-image .hentry {
position: relative;
color: transparent;
}
Update your file and, voila! you are done ??