I’m surprised I couldn’t find an answer for this as it’s pretty common practice to have a menu item that’s unclickable because it’s just the parent of a submenu.
On my homepage, the main menu shows the “active page” box shadow under all of the parent menu items, because their URL is the same.

I would like to have the box-shadow show on the actual current page still though.
When I add this though, then it removed the box-shadow from the actual “current menu item” and only shows on hover.
.x-navbar .desktop .x-nav > li.current-menu-item > a > span {
box-shadow: none;
}
What’s the workaround for this? Just add that CSS on the homepage CSS (since this only affects the homepage) and deal with no shadow there, but it will at least be there on all the rest of the pages?

