We are using Wordpress to add menu items to our navigation bar. Cleary this makes changes simple, but it prevents certain customizations. Specifically, we would like to change the color of an individual menu item in the navigation bar. Is there a way to "add" a menu item to the end of the array so it is always in the last position and is a different color in the navigation bar? I realize we will need to create a style in our CSS to change the color of the last item.
For Example, current navigation bar:
Home About Us Product/Services Industry Links "Contact Us"
We want to make "Contact Us" a different color in the menu bar.
Current Code:
<?php
$menu_header_top = array (
'theme_location' => 'nav-header-top',
'container' => 'div',
'container_id' => 'lightupnav',
'depth' => 2
);
?>
<?php wp_nav_menu($menu_header_top); ?>