I am using Bold Grid theme Monument which has its primary menu on the left side of the content. Because I have a couple too many menu items, the lower items are hidden and the menu doesn’t scroll to be able to see those last items. How do I code this to fix?
Also, it would help on that left side if I could move the menu items closer to the logo. How do I reduce the top and bottom padding around the logo?
You could try reducing the padding and/or font size on the menu items. Adding the following code to your custom CSS ( Customize > Advanced > Custom JS & CSS ) should help:
.navbar-default .navbar-nav > li > a {
padding: 5px;
font-size: 14px;
line-height: 1em;
}