How to change color for navigation bar?

Hi,

My navigation bar titles are white, and thus, they are invisible (my background is white).

How can I change its color?

Many thanks,

Maika

Hello there,

I hope you are doing well today.

You can use the following CSS code to change the menu item colors by going to Appearance > Customize > Additional CSS and pasting it there.

/*Menu item colors*/
}

main.scss:333
#header .top-header .header-navigation ul li a {
    color: yellow;
}

Best Regards,
Support

Hi,

Thanks for your advice. I pasted the code but its not changing anything. It also seems Im missing a { } bracket somewhere.

Could it be the reason why its not working?

Hello there,

I am sorry for the inconvenience caused here.

Please try this code instead:

/*Menu item colors*/

#header .top-header .header-navigation ul li a {
    color: yellow;
}

Best Regards,
Support

Hi

The code worked! many thanks for it!