Search code examples
cssmenudropdownparentsubmenu

Selecting the Parent Menu


when I select the submenu in the parent menu in this link, I made the background of the top menu red.

But the color of the text becomes black, I cannot make it white.

Thank you for your help in advance..


Solution

  • Give also the a tag a color while you hover on the li, try the one below:

    .header .dropdown-submenu > li:hover > a, .header .dropdown > ul > li:hover > a {
        color: #fff;
    }