Hello @bakrona,
You have added void-menu
class to the menu items. You also added this custom CSS:
/* Remove Highlight effect when hovering over void menu items */
.void-menu > a {
pointer-events: none;
}
It is best that you update your custom CSS into this:
/* Remove Highlight effect when hovering over void menu items */
@media(min-width: 980px) {
.void-menu > a {
pointer-events: none;
}
}
The @media
block will make sure that the pointer-event will only be disabled on larger screens starting from 980 pixels. You can check our more about the @media
CSS rule here:
Best Regards.