Top Nav Button Color

Hello,
in the Top Nav, How do I change the color of the buttons in a non-hover state.
I can have them change colors upon hover, but in a static, or non-hovering state, they remain the same color has the header background.
I would like them a different color.
The buttons (or menu items?) themselves, not the font color of the item.
I can find how to change the font color.
I can find how to change the hover state color.
I can find how to change the color of the items/buttons when a dropdown is used, on the drop downs themselves.
But I want to top level buttons a different color than the background.

Hi @opus,

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

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

Admin Area -> Appearance -> Customize -> Dazzling Options -> Other -> Custom CSS

.navbar-default .navbar-nav > li > a {
    background: #9f1cc5;
}

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