Menu bar height

Hey there I’m trying to make my menu bar either a little bit higher and make a two row menu bar, or just put the menu items closer together so they all stay on one line. How do I do that? Thanks!

www.savvygarments.com

Add this code in Dashboard > Appearance > Customize > Additional CSS:

.center-nav #top-nav .top-menu
{
padding-right: 0;
padding-left: 0;
}

.center-nav .top-menu > li > a
{
padding: 0 15px;
}

This will make items closer together

That worked! Thanks!