Your menu items have a bottom margin of 10 pixels:
- Open your website in Chrome;
- Right click on a menu item;
- Left click on "Inspect element";
- A new toolbar appears. Hover your mouse over the
<li>
element.
Orange represents margin and green padding; - Click on the
<li>
element and look to the right of the toolbar; - In the right hand column scroll down until you see this style:
.main-navigation .nav > li { float: none; display: inline-block; margin-bottom: 10px; zoom: 1; }
Override that in your Child Theme style.css file;
.main-navigation .nav > li {
margin-bottom: 0;
}
Edit: You might want to apply that to desktop only.