Skip to content

Instantly share code, notes, and snippets.

@mikeyarce
Last active August 29, 2015 14:26
Show Gist options
  • Save mikeyarce/8124fd81ebe37ed61c4e to your computer and use it in GitHub Desktop.
Save mikeyarce/8124fd81ebe37ed61c4e to your computer and use it in GitHub Desktop.
Edit Uno's navigation colours
/* Set the Navigation Bar color */
#nav-container, #navigation {
background: blue;
font-size: 13px;
}
/* Set the Active and Hover Colors */
#navigation ul.nav > li:hover > a,
#navigation ul.nav li.current_page_item a, #navigation ul.nav li.current_page_parent a, #navigation ul.nav li.current-menu-ancestor a, #navigation ul.nav li.current-cat a, #navigation ul.nav li.current-menu-item a {
background: green;
font-size: 13px;
}
/* Set the font color */
#navigation ul.nav li a,
#navigation ul.nav ul li a {
color: orange !important;
}
/* Set the dropdown color */
#navigation ul.nav ul {
background: grey;
font-size: 13px;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment