Closed (duplicate)
Project:
Nice Menus
Version:
6.x-2.1
Component:
Code
Priority:
Normal
Category:
Feature request
Assigned:
Unassigned
Reporter:
Created:
23 Oct 2010 at 18:04 UTC
Updated:
11 Aug 2011 at 11:33 UTC
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
Comment #1
maruan commentedIf possible, I'd appreciate direction as to implement always-show-active-submenu as a patch.
Cheers !
Comment #2
bananazz commentedI was wondering the exact thing!!
Comment #3
add1sun commentedSince 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
Comment #4
clutherThis 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?
Comment #5
Jonasvh commentedJust 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;
}