• active-trail is great! thanks!
  • mouse-delay is perfect! thanks!
  • always-show-active-submenu is missing... :( let me explain why it's needed -

with horizontal submenu (set by css) nice_menus functions for me similar to this menu-system with one significant difference: my active submenu disappears... :(

it would be wonderful if we could have it stay on. if this feature is added, it could make breadcrumbs redundant in some cases.

cheers !

Comments

maruan’s picture

If possible, I'd appreciate direction as to implement always-show-active-submenu as a patch.
Cheers !

bananazz’s picture

I was wondering the exact thing!!

add1sun’s picture

Status: Active » Closed (duplicate)

Since horizontal submenus are not part of Nice Menus yet, this should be part of the overall issue to get that working properly. #195328: CSS for horizontal children

cluther’s picture

This thread, I think, is the closest to the problem I'm facing.

The design requirement for Drupal 7 sites is that when an item is selected from the horizontal primary menu a horizontal submenu is displayed. As items from the submenu are selected the submenu is continuously displayed. The primary and submenu continue to display when nodes are selected from the menu hierarchy. So far, we've been able to implement this using Nice Menus and CSS, but the submenu disappears when you select subordinate nodes from the hierarchy. Can I do this with Nice Menus or should I look at other modules?

Jonasvh’s picture

Just do it with CSS
You must only override the elemen.style.
See example of my css

#block-nice-menus-1 .active-trail ul {
display: block !important;
visibility: visible !important;
}