How to create Child Theme for Travelify WordPress Theme?

Thanks for this very awesome template. I need some help. I have created a child theme and I need to hide the page title. How can I achieve this? Copy the Library folder to Child theme folder and then do the editing?

I assume that you have created syle.css and added

@import url("…/travelify/style.css");

to it.
From here you can hide page title even from CSS. Just write

.page-title {
	display: none;
}

It will override default CSS and will hide page title. You can do this with other elements as well. It is simple then adding files and editing them unless you need to create some serious modification of this theme.

Let me know if this helps.

Thanks a lot! But I had to add .entry-title instead of .page-title even though it is a page.