-3

i am working on a site .as you can see the menu item digital marketing.when you click on it it takes you to the digital marketing page and the current menu item color changes to the given color.the problem is all the menu items under the current menu item also changes its colors.you can see that when you hover the current menu item with dropdown.

i cheked the css and found

ul#menu-main li.current-menu-item a {
color: #333333;
}

I changed it to

.current-menu-item a {
color: #333333;
}

which didn't help.what can be the problem please help!!thanks!!

Melvin
  • 325
  • 1
  • 11
  • 35

1 Answers1

3

Change your css:

ul#menu-main li.current-menu-item > a {
    color: #333333;
}
Salman A
  • 229,425
  • 77
  • 398
  • 489
amit
  • 869
  • 6
  • 16