• I am trying to change the color of the text in the menu. I have inserted the following custom css:
    .main-navigation, .main-navigation ul li ul li {
    background: #000; font-size: 15px; color: #FF0000
    }

    This successfully changes the background color of the menu bar, the font size of the menu, but does not touch the color.

    Any suggestions would be appreciated.

    Pierce

Viewing 2 replies - 1 through 2 (of 2 total)
  • Hello Pierce,
    Your code is all ok. You are just missing a semi-colon at the end.
    Try adding the following code to custom css-

    .main-navigation, .main-navigation ul li ul li {
    background: #000; font-size: 15px; color: #FF0000;
    }

    It should work…

    Divjot

    Hello Divjot,

    I am having the exact same problem as Pierce. The code (also your code) is changing the menu background color and the font size all right. But ist doesn’t do anything to the menu text color.

    Do you have any idea what is wrong?

    Thanks in advance

    Manuel

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘Changing Menu Text Color’ is closed to new replies.