Format Menu Items
This will change the child menus:
.dropdown-menu
{
background-color: #669999;
}
/* Level 2 dropdown link with hover */
.dropdown-menu > li > a:hover
{
background-color: black !important;
}
.dropdown-menu > li > a:visited
{
background-color: black !important;
}
.dropdown-submenu > .dropdown-menu > li > a:hover {
background-color: black !important;
}
.dropdown-submenu > .dropdown-menu > li > a:visited {
background-color: black !important;
}
By default, a box is displayed surrounding the menu (or link) that has been clicked. This will remove the box (border).
a:focus
{
outline: none;
}