DRAFT: This module has unpublished changes.
Make Navigation Bar Smaller:
The next portion of code will make the navigation bar on the left smaller. You can change the pixel number to the one you want. Test different values.
 
.span-7 {
    width: 150px !important;
}
 
Putting !important will override any other previous values for a specific field.
 
DRAFT: This module has unpublished changes.