Wordpress

Target single menu item with css (ex. make one menu item different color)

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; }

Leave a Reply

Your email address will not be published. Required fields are marked *