Change colors in general

Hi, I’m new to wordpress and I’m finding it difficult to change the colors of the font menu. It’s white and I want to change to black. I tried

#header .top-header .header-navigation ul li{
font-color:#000;
}

But its not overriding the white.

Oddly enough if I change

#header .top-header .header-navigation ul li{
font-size:10px;
}

the font size decreases, as expected.

I’d like to change other colors too like the yellow from the second button and the dots. Is it possible?

Thanks a lot!

Hi,

This is code for menu colour:

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

For yellow button:

#header .bottom-header .header-button-two {
color:#1d1616;
}

For dots:

#header .bottom-header span.span-dot {
color:#1d1616;
}

Thanks,

Cristian

Thanks a lot Cristian!

You’re welcome,

Cristian

The code for the menu color worked perfectly.

what about the menu color hover?

Also the jumbotron into text color?