To change WHMCS navigation bar colors, use following CSS in your theme custom CSS or in the custom CSS plugin of your choice.
#primary_nav_wrap { /* main navigation bar color */ background: red; /* navigation text color */ color: #fff; } /* Active menu color */ #primary_nav_wrap ul li.current-menu-item { background: green; } /* Hover color */ #primary_nav_wrap ul li:hover { background: yellow; }