1. Home
  2. Docs
  3. WCAP – WHMCS Client Area API
  4. Common Questions (FAQ)
  5. How to change navigation bar colors

How to change navigation bar colors

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;
}
Was this article helpful to you? Yes No 1