How to remove author and date from WordPress Travelify theme?

I would like to remove the post date and Author from the post, how do i do that?

Add this to your Child Theme style.css or inside Theme Options – Other – Custom CSS.

.date, .author {
    display: none;
}