Hi Austin,
This CSS from the first page is the trick:
.main-navigation .site-logo {
float: left;
line-height: 60px; /* Adjust this to your menu item height */
margin-right: 1.5em;
}
The line-height attribute should match the height of your navbar – that should make sure the logo image isn’t too big.
If that doesn’t work, try this:
.main-navigation .site-logo img {
height: 60px;
}
Let me know 🙂