Change Menu Font Color

I may be missing something but how do you change the main menu font color? Have tried through the admin area and changing all kinds of things in style.css and had no luck. Thanks.

Hi @dinglebob,

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 -> Travelify Other Options

#main-nav li a {
    color: #000;
}

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

Thanks, shouldn’t 000 change it to black? It is still white.

Yes 000 makes it black but if you still getting it as white then try using below CSS code instead or share me your site URL where it’s happening so that i can troubleshoot it.

#main-nav li a {
    color: #000 !important;
}