Hi Scott,
The issue is occurring because the CSS selector selects all <a>
elements within li.nav-button
for one of the CSS codes you have. Altering this should work.
With that said, can you kindly edit this code found in Appearance > Customize > Additional CSS?:
.main-navigation:not(.slideout-navigation) .main-nav li.nav-button a:hover{
-webkit-transform: translate3d(0, -4px, 0);
transform: translate3d(0, -4px, 0);
color: #000000;
}
into something like this:
.main-navigation:not(.slideout-navigation) .main-nav li.nav-button > a:hover{
-webkit-transform: translate3d(0, -4px, 0);
transform: translate3d(0, -4px, 0);
color: #000000;
}
Kindly let us know how it goes. 🙂