Change color in primary menu

How can I change the color of the primary menu from grey to let’s say black?
And how can I change the color of the font in the primary menu?

Hi @soraya,

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

You can change its color by adding the following CSS code in the Custom CSS option of the latest version of Sparkling theme on the below path.

Admin Area -> Appearance -> Customize -> Additional CSS

nav.navbar.navbar-default {
    background-color: #000;
}
nav.navbar-default .navbar-nav > li > a {
    color: #30862c;
}

You can 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

It works! Thank you so much!

You are most welcome here :slight_smile: