I know you can change the style of a selector on hover of another selector, but it doesn't work when the selector you need to change uses two element names like this:
Doesn't work. Anyway to make this work with just CSS?
.menu-btn:hover .menu-btn span {
/*styles*/
}
Works
.menu-btn:hover span {
/*styles*/
}