When examining the screenshot of the website, you'll notice a considerable space between the first and second rows of menu items. I'm aiming to minimize this spacing as much as possible.
The following CSS pertains to this issue:
.gva-navigation {
width: 100%;
height: 50px;
margin: 0;
z-index: 99;
position: relative;
}
#wrap {
height: 50px;
padding: 0;
margin: 0;
position: absolute;
}
.gva-navigation li {
height: 25;
width: auto;
float: left;
text-align: center;
list-style: none;
padding: 0;
margin: 0;
}
.gva-navigation a {
display: block;
}
.gva-navigation > ul > li > ul {
display: none;
}
.gva-navigation > ul > li:hover > ul {
display: inline;
}
How can we reduce the vertical spacing between the top menu items and those that wrap onto the second line or row?