Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I have an app that I am creating for a customer that at some points has 6 levels of navigation. Basically our user wants to select an item from a navigation. that will lead to another set of navigation, that will lead to another set of navigation and so on until you are 6 levels deep in on navigation property.

Some of the menu items do not go that far some in fact do not have sub menu's.

To make matters even more complicated some of the links are required to have descriptions of what report the link leads to. The caveat here is that some of the descriptions are 15 lines long, basically huge paragraphs of text.

I have tried the on hover open the sub menu but when you get down to the sixth level if you move your mouse a hair too much your going back in and treeing them out again.

I tried the accordion method from twitter bootstrap but that didn't work because on the 6 level menu's most of the navigation was pushed off the page.

I tried using XML to populate drop-down lists where basically the user would click a link and the "sublinks" would appear in a partial view with a drop-down list. and that continued until you were at the lowest level. The problem is I run out of screen real estate with 6 drop down lists and a description.

Anyone have any suggestions on what else I can do with an app like this?

share|improve this question
wow... I would really step back and address what the main goals and do a complete app summary and development. 6 levels of navigation will only hurt your profit and I cant imagine the stress you are giving the end user. What are you doing that would require so much? – Matt_2.0 Mar 14 at 18:29
I actually am not the one suggesting this. Our end user wants the site laid out in that manner. If it were up to me I would have a google like search box and the user could just search for whatever report they are looking for in it – Robert Mar 14 at 18:32
Is this perhaps more suited to ux.stackexchange.com – w3d Mar 15 at 10:01

migrated from webmasters.stackexchange.com Mar 20 at 11:32

1 Answer

up vote 8 down vote accepted

Drill Down Menus - iPod Style

A simple solution is never to display one or more nested at once using CSS styling, there is many menus that you can achieve this with and just an example of something I've used before in my designs that involved heavily nested menus is using a iPod style of menu. Take a look for yourself, displays as many nests as you like while keeps everything easy to use and looks pretty cool too.

You can check the source and other demo online here: jQuery iPod style and flyout menus, if your using WordPress then this has already been ported here. Also its worth noting that you can have many menus on the page operating the same so while you look at demo yes you see one drop down effective but you can have many working in a 'menubar' along side each other which would be very fitting for this situation.

More Examples of Drill Down Menus

share|improve this answer
That will work great for what I am doing thank you – Robert Mar 14 at 18:36
No problem, just added another few links to consider, enjoy. – bybe Mar 14 at 18:43
Are there any good walk throughs on adding the drill down menu to a web page. I am seeing great examples but no real HTML unless I Inspect elements – Robert Mar 14 at 20:00
The Premium one you can expect documents when you purchase with the other links provided you need to download the source and view HTML within the download files (most likely a index.html file) – bybe Mar 14 at 20:04
Okay thanks, It seems odd that the EireMedia - Drill Down has a link at the top to see the whole plugin and its a different menu – Robert Mar 14 at 20:15

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.