First you need to identify the menu item number, so right click in your site and open the inspector to find the item number.
after that, add the a in the css to target the text link color (you can also add !important to be sure that you overide any other style)
#menu-item-1000 a {
color: #7f7d78 !important;
}
Was this helpful?
YesNo