When you say “logo,” are you referring to the site title (New England Bar Association)? There doesn’t seem to be enough room to fit the logo and the menu side-by-side, unless you want the site title to wrap. You can try adding this CSS:
.bigmenu {
width: auto;
}
But I think you’re still going to have a difficult time getting them side-by-side.
Thanks for the help! I changed the way it looks so just another question. For the life of me I can’t figure out what controls the size of the font in the menu bar. If I could make it a bit smaller so all the menus fit on one line that would be great.
This rule controls the menu font size:
#topmenu ul li a {
font-size: 16px;
}
16px is the current value.
Since you have Jetpack installed, copy the rule into Jetpack’s custom CSS option. To activate, Jetpack’s custom CSS, go to Jetpack → Settings and activate Custom CSS. Then you’ll have a menu item under the Appearance menu called Edit CSS. Copy the rule at the end of the CSS Editor field and change the value to whatever you feel is suitable.