I am currently troubleshooting an issue on my website where a white line appears across two menu items when hovering over a drop-down item in the navigation. I can't figure out what's causing this problem. Below is the code for the navigation (I'm using the Genesis framework for WordPress).
.genesis-nav-menu a {
border: none;
color: #919594;
display: block;
font-size: 14px;
padding: 20px;
position: relative;
top: 35px;
}
.genesis-nav-menu a:hover,
.genesis-nav-menu .current-menu-item > a,
.genesis-nav-menu .sub-menu .current-menu-item > a:hover {
color: #C77D3C;
border: 2px solid #C77D3C;
border-radius: 12px;
}