Hide Entirely
.single-listing header {
display: none;
}Hide For Specific Listing Types
Replace ‘events’ with the name of your Listing Type.
.single-listing.type-events .header {
display: none;
}You can use this snippet if you have multiple Listing Types you wish to hide the header on.
.single-listing.type-events .header, .single-listing.type-jobs .header {
display: none;
}