menu

I need a drop-up menu with a set hight on the drop-up box

I need the main menu to show a drop-up menu some of the sub menus will have more links then others but I want all drop-ups to be the same size so I want to have a set size on all of the drop-ups, now this I can do I just don't know how to get the sub menu to stay at the bottom and not at the top of these drop-up boxes??? ...

Site map in a horizontal block

How to create a site-map like: I have tried using asp.net menu control and treeview cotrol and changing their various properties. But I failed to align like this I mean in horizontal block as shown.I have not found any properties to the same as I mentioned.Can any one help me how do this. ...

How should I implement an Ajax Menu?

My ASP.NET MVC has the need for a vertical navigation menu where submenus would be generated dynamically via ajax when the user clicks on the parent menu item. I would like to use jQuery and Css to drive the menu but that's just a preference. I really don't want to reinvent the wheel here. I know this type of menu has been done before. ...

Drupal Create Dynamic Menu with an Active Trail Property

Hi there, I want to create a dynamic menu that will get it's items from a certain node type. I thought I could do this by creating a view of the titles and putting it in a block. However, when someone clicks on one of these titles I want to highlight it, and so want a way of adding an active class to the link. I know Drupal does this au...

Add menu counter to Wordpress plugin

Hi, I'm developing a Wordpress plugin and I need to have a menu counter as the ones present in "comments" or "plugins" menu (i.e. 'Comments [10]', 10 is the "awaiting moderation" comments). I use this code to have new menu in wp-admin: add_menu_page('MyMenu', 'MyMenu', 8, 'mymenu_func', 'mymenu_func', 'mymenu_icon.png'); Anyone can ...

css js menu help

I'm designing a menu for a photography site. What I would like is a menu that on hover does two things: pops up an individual image in line with the menu <li>, and also displays just below the menu some text that stays centered in the page, i.e. has position:fixed;. I've taken care of the first requirement, but I'm stuck as to how to a...

anchor link nested in a li

I'm creating a horizontal menu in my website and everything is OK but one thing. I have a link in each <li> and the color is set to white and li has no background, but in hover I want to set li background to white and links text color to black. The problem is that the width of <a> tags is not the same as <li> and when the mouse is over t...

android show context menu from code behind

Hi all, This might be a simple question, but i've been looking around and can't find the answer, well, as my title said, is there any code to show the context menu on the android from a code, instead press the menu button? eg. when i touch the screen then it'll call the context menu? Regards, AnD ...

How to create a vertical sliding list of links with jquery?

Hello, on the jQueryUI web site, at the following address, there is a sample of styling a button with a down arrow that can open a menu (maybe it's better to look at the url to be sure to understand... :O). let's suppose to have the following markup: <div id="buttonMenu" style="display: none;"> <ul> <li><a href="#1">Menu Ite...

[Wordpress] List sub-pages, but skip 1st level

How can I list subpages but skip the first level of pages? Here is my current query, but I want it to drill down 1 level deeper and only list sub-sub-pages. <?php $args = array('post_type' => 'page','numberposts' => 10,'post_parent' => $post->ID); $subpages = get_posts($args); foreach($subpages as $post) : setup_postdata($post); ?> <div...

WPF: Specify a language for built-in Command labels

I'm using the built-in ApplicationCommands to create a menu: <Menu DockPanel.Dock="Top"> <MenuItem Header="_Datei"> <MenuItem Command="ApplicationCommands.New" /> <MenuItem Command="ApplicationCommands.Open" /> <MenuItem Command="ApplicationCommands.Save" /> <MenuItem Command="ApplicationCommands.Save...

ASP.NET 4 menu hides behind a div containing Silverlight app

Hello! I have an aspx page which has a ASP.NET 4 menu control (rendered as ul/li's instead of tables) and a div right below it which contains a Silverlight .xap. When the user selects a menu item in the menu control, the Silverlight app gets updated. In IE 7 & 8, when I hover over the menu, the menu items are "hidden" behind the Silverl...

Is it possible to change the location of the main top-level menu in an MFC MDI app?

I have an app with a customized frame (i.e., caption/titlebar, borders). I customized the frame by removing the WS_CAPTION style, and overriding OnNcCalcSize to reserve a custom-sized area for the caption, which the app paints in OnNcPaint. A side effect is that the menu bar no longer displays, which is OK because I want to customize th...

Pure CSS drop down menu issue in IE 6 and 7

Hey Guys, I've seen a few hints on StackOverflow but cant really see a solution to my specific problem. I have a pure css menu with dropdowns, in IE8 and FF it works great, but compatibility mode for IE7 and IE6 it doesnt work. The thing is, it does drop down - but then when the mouse goes over the main website banner below, which has ...

How can I make a horizontal nav menu that on hover reveals the sub menu items and slides up above the main nav using jquery?

I want it to slide up from the bottom right about my main nav menu just like this site. jefflewisdesign.com I know that site is down in flash but I know that nav can be done in jquery. thanks. Here is how I have it so far. <div id="slidebottom" class="slide"> <h2>Item</h2> <div class="inner"></div> </div> $(documen...

JQuery dropdown menu using slideup and slidedown on hover is jumpy

Hi, I've made a very simple dropdown menu using jQuery slideup and slidedown for the functions - but it gets very jumpy (I'm using Firefox 3.6.8) if the mouse is moved to quickly over it, or if the mouse is held on one of the submenu items. I've made a working example at the following link: http://jsfiddle.net/jUraw/19/ Without the ...

I want a simple, expandable Treeview left nav menu for an ASP.Net MVC site

OK, I've bound an asp:Treeview control to a sitemap datasource, but I can't figure out any of the options ... All I want it to do is: Load "closed" - that is with all nodes collapsed close all other nodes when a new one is opened Stay open the way it was on the previous page Give me the option of changing the open/closed/empty images...

How can I create a Multilingual Global Navigation(menu) for a Sharepoint 2010 WebSite?

A very good sulution for Multilingual UI are Variations, but how can you apply this feature to the Global Navigation(Menu)? After creating the Global Navigation for a WebSite it will stay like that forever, no matter if the current Location is in one of the Sites's Variations. So I'm looking for some solution to change the Language for ...

How to space nav buttons equally in Sitefinity radmenu

Hi Guys, I have a Radmenu which has 6 buttons in it which need to have equal spacing between them in my horizontal menu. I have managed to get this right using a percentage value but what if someone decides to add another menu button? Is there a way of aligning my UL menu in the middle of my wrapping DIV and then spacing the buttons eq...

Android Open Menu from a button

Is there a way for a button to call a submenu? I currently have a menu where if they select one of the options it opens a submenu, however I want to be able to start the submenu from the Button widget instead of the Menu object. \ Thanks! ...