Changing Active & Hover Navigation Menu

Right now for some reason, my active links and when I hover over my navigation menus, it shows a grayish-pink. Website

Is there something I can do to set both the active navigation color, and hover color?

Thank you.

Hi @ichiyo,

I hope you are well today and thank you for your question.

You can achieve this by adding the following CSS code in the Custom CSS option of your theme on the below path.

Admin Area -> Apperance -> Theme Options -> Other -> Custom CSS

body .navbar-default .navbar-nav li.current-menu-item a,
body .navbar-default .navbar-nav li a:hover{
	background-color: #7DCAEB;
}

Please change the color value in the above code to whatever you want to use by referring the following pages.

http://www.w3schools.com/html/html_colors.asp
http://www.w3schools.com/html/html_colorvalues.asp
http://www.w3schools.com/tags/ref_colorpicker.asp

Best Regards,
Movin