Few question about Travelify theme

Hi, it is a nice theme. There are few stuff I want to customise but I don’t know how.

  1. First thing, I would like to customise the blog page look. This is the screenshot of some testing post.

because I intend to use it as a website, I don’t want it to look like a blog, , but using the Wordpress post function for the content.
Is it possible to remove all these things and leave only the post content and dotted line on the page?

Just like in this drawing

Things I want to remove:

  • The white box for each post (background)
  • the title
  • the username / time / catalog information after each post
  1. I read the manual but still don’t know how to get the slider working. Is there some kind of shortcode I can put it anywhere I like?

  2. Can I change the theme colour from green to blue?

  3. Can I change the fonts?

  4. Can I use a long landscape picture as “title” or “header” for the whole website?

Thanks a lot.

Thanks for detailed explanation on what you are trying to achieve.

  1. Add this to Theme Options - Other - Custom CSS
.entry-meta-bar {
    display: none;
}
.entry-header {
    display: none;
}
article {
    background: transparent;
    box-shadow: none;
    -webkit-box-shadow: none;
}
.entry-content {
    padding: 2% 0;
}
  1. There is no shortcode for slider and it will work only on homepage. You simple need to set Featured Images for each post and use Post/Page ID inside Theme Options for slider and you are ready to go. Here is more information on how to use featured images: http://en.support.wordpress.com/featured-images/

  2. Here is how you can change theme color: https://colorlibsupport.com/t/how-to-change-travelify-theme-color/

  3. Here is more information on fonts: https://colorlibsupport.com/t/how-to-change-default-travelify-font/

  4. Use Custom Header Image which is created to cover the entire header width. Here is more info on that: http://make.wordpress.org/support/user-manual/customizing-wordpress/themes/custom-header-image/

Thanks for the fast reply, it is so informative and works like a charm. Many thanks. :slight_smile:

One more thing I would like to improve, so this is now what I get.

There are still quite some spaces between each post content, (red circle at the screenshot), can I minimise it at least by half?

Try adding this

#content .post {
	padding-top: 0;
	padding-bottom: 0;
}

It works so great, you really save the day. Thank you.

I have one more question.
Now I want to make 7 different “blog pages” and assign 7 different categories of posts for each of them.

For example:

Page 1 for Post category 3
Page 2 for Post category 4
Page 3 for Post category 5
Page 4 for Post category 6
Page 5 for Post category 7

Is there an option to assign this?

It’s not possible. However, you can use category pages like I have in the theme demo: https://colorlib.com/travelify/category/france/

I did that accidentally and find it perfectly works as what I intend to do. Thank you. :slight_smile:

New problem,

I find that the category page only showing the “feature image” for each post.
But I want it to show all of the content of the post, assuming the post having multiple images.
If I didn’t use the “feature image” function, even I have pictures in my post, it doesn’t appear.

Is this possible to fix it?

To change this you will have to edit content-extensions.php file located in theme folder – library – structure and replace
the_excerpt with the_content for travelify_theloop_for_archive.

Oh God, you really help me fast and simple while I thought it was super complicated.

I wish I can vote six star for your theme. :slight_smile: