How to remove page title from Travelify?

how to you remove header title?
ie – if im visiting a travel page – how do you remove Travel on the top left corner of the page?
Thanks alot & keep up the great work

Add this to Theme Options – Other – Custom CSS

.page-title-wrap .page-title {
    display: none;
}

sorry but still not working -

Then please send a screenshot of which page title you are referring to. Code snipped given above does work well for what it should do.

thanks for your continued help – find attached link of screenshot (i want to remove the plain text title/header “pro biotics and anti biotics” as its appearing as double)

Ok, now I see.

Add this to Theme Options – Other – Custom CSS

.page .entry-title {
    display: none;
}

great thanks!