Skip to content

Instantly share code, notes, and snippets.

@cliffordp
Last active January 3, 2024 17:41
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save cliffordp/e95725bb9fd18eeeaf6c7d4766d18dcc to your computer and use it in GitHub Desktop.
Save cliffordp/e95725bb9fd18eeeaf6c7d4766d18dcc to your computer and use it in GitHub Desktop.
GoHighLevel Agency-Level Settings: Menu Colors
/**
* Source of this CSS code: https://gist.github.com/cliffordp/e95725bb9fd18eeeaf6c7d4766d18dcc
* Where to place this CSS code: https://app.gohighlevel.com/settings/company
*/
/* Agency */
.sidebar-v2-agency #sidebar-v2 .default-bg-color,
.sidebar-v2-agency #sidebar-v2.default-bg-color,
/* Locations */
.sidebar-v2-location #sidebar-v2 .default-bg-color,
.sidebar-v2-location #sidebar-v2.default-bg-color
{
background: #B0112C; /* red */
}
/* Agency */
.sidebar-v2-agency #sidebar-v2 .hl_nav-header nav a:hover:not(.active),
.sidebar-v2-agency #sidebar-v2 .hl_nav-header-without-footer nav a:hover,
.sidebar-v2-agency #sidebar-v2 .hl_nav-settings nav a:hover,
/* Locations */
.sidebar-v2-location #sidebar-v2 .hl_nav-header nav a:hover,
.sidebar-v2-location #sidebar-v2 .hl_nav-settings nav a:hover,
.sidebar-v2-location #sidebar-v2 .hl_nav-header-without-footer nav a:hover
{
background: #4B5563; /* light gray */
}
/* Agency */
.sidebar-v2-agency #sidebar-v2 .hl_nav-header nav a.active,
.sidebar-v2-agency #sidebar-v2 .hl_nav-header-without-footer nav a.active,
/* Locations */
.sidebar-v2-location #sidebar-v2 .hl_nav-header nav a.active,
.sidebar-v2-location #sidebar-v2 .hl_nav-settings nav a.active,
.sidebar-v2-location #sidebar-v2 .hl_nav-header-without-footer nav a.active
{
cursor: not-allowed;
background: #1a202c; /* dark gray */
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment