Hovering over the margin of items in the nav menu would make their
text disappear, leading it to be gone when opening a sub-sub menu.
Turns out all it took was to put an !important over the black text
color (believe me, I tried to avoid it)
margin: 0 20px;
}
nav.top-bar .top-bar-section > ul > li .dropdown li a:not(.has-form), nav.top-bar .top-bar-section > ul > li .dropdown li a:not(.button) {
- color: black;
+ color: black !important;
}
nav.top-bar .top-bar-section > ul > li .dropdown li a:hover {
color: #25c2e6 !important;
left: 25%;
width: 50%;
}
-
.container#home #main {
background-color: #f5ad1a;
color: #6d1112;