Tips
For the top navigation menu, if you want to have each menu item change color when you hover it, add this custom CSS: /* the following sets the background color for the menu item on hover */
.top-bar-section li:hover:not(.has-form) a:hover:not(.button) {
background-color:#444444;
}
.top-bar-section li.active:hover:not(.has-form) a:hover:not(.button) {
background-color:#444444; color:#fffff0;
} /* the following sets the text color and icon color for the menu items on hover */...