Videos and some How to Questions

Hello,

I really love your theme. I want to use it for most of my projects because its that good.

However, I do have some questions. First of all, I want to make videos work on this theme. I installed featured video as a plugin. It used to work before but now it just make my youtube videos as pictures. Sometimes it works on a post. But when you click to read the rest the videos don’t work and they turn to images. Is there a way to fix that?

Secondly, how do you change the color and font of the navigation bar? I want to make the font bigger.

Last question is that I have a navigation link on the navigation bar. How do you get rid of that navigation link?

Thank you once again for a great theme.

Virgil

  1. For default menu you can add this to Theme Options - Other - Custom CSS. However, it will be fixed in the next theme update
li.default-menu {
    display: none;
}
  1. I am not sure about the video since there are loads of examples on my theme demo with video in post and they are are working well https://colorlib.com/travelify/post-format-test-chat/

  2. For navigation color and font size

Font size you can change like this. Just tweak size accordingly

#main-nav a {
    font-size: 16px;
}

Navigation color is defined like this. You can change color accordingly.

#main-nav {
	border: 1px solid #439f55;
	background: #57ad68;
}

#main-nav a:hover, #main-nav ul li.current-menu-item a, #main-nav ul li.current_page_ancestor a, #main-nav ul li.current-menu-ancestor a, #main-nav ul li.current_page_item a, #main-nav ul li:hover > a {
	background-color: #439F55;
}

Hello,

Thank you for the prompt response. I really don’t know why my videos are turning into images when you click them. Here is a prime example of what I mean:

http://www.ugomobility.com/pearl-harbor-moblilty-scooter-rental/

Maybe you can give me some idea why this is happening. I would really like to get videos to work well with your theme though - very much.

Thanks again,
Virgil

Most likely you are using plugin such as http://wordpress.org/plugins/video-thumbnails/ which generates thumbanils form video.

While you you should use plugin that uses video itself by replacing featured image. Here is one example: http://wordpress.org/plugins/featured-video-plus/

Let me know if this is the case.