This code snippet is for those that would like to selectively hide the default MyListing header.
Hide Entirely
.single-listing header {
display: none;
}
Hide For Specific Listing Types
Customization Notes
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;
}