Hi Chris. Glad to hear you like it so far.
Please note that your /events page is really a WordPress archive, not a regular WordPress ‘page’.
You could accomplish what you’re wanting via CSS, like this:
body.post-type-archive-tribe_events section.page-title-bar {
display: none;
}
body.post-type-archive-tribe_events .post-wrap {
padding-top: 20px;
}
You can add custom CSS code via your child theme’s style.css file or via a plugin like Simple Custom CSS or, my favorite, Jetpack. Jetpack supports regular CSS and the LESS and Sass pre-processors.
If you’re not a CSS expert, Jetpack’s Custom Design reference may prove helpful.
Please let me know how it goes for you.