If you don’t have a child theme where you can add css changes you can get a custom css plugin and then apply these changes there. This way you will not lose your changes when the theme is updated. In your custom css plugin add these styles:
.page-id-695 .post-title {
display: none;
}
.page-id-695 .post-inner p.post-meta {
border-bottom: 0;
padding-bottom: 0;
margin-bottom: 0;
}
.page-id-683 .post-title {
display: none;
}
.page-id-683 .post-inner p.post-meta {
border-bottom: 0;
padding-bottom: 0;
margin-bottom: 0;
}
You will notice I used the page ID to specify the page, otherwise none of the titles will show. I also added styling for .post-inner p.post-meta otherwise the border still shows with some spacing. I only did the first two pages, you can try the last one. I got the ID by right click on the page and going to inspect element. The ID is on the body tag. Copy my code and add the other page ID’s to do this for more pages.
Here is a screenshot of what it looks like. https://www.screencast.com/t/ea5s9150r3w1
Let me know if this works for you.
Kind Regards
Ernest Close