menu

Dropdown menu keeps disappearing & menu items covered by pic in IE7

This problem only affects IE7. The hover effect works but when I attempt to hover over the sub-menu items, the menu suddenly disappears! Only, it's covered by the images in the header div. I've tried z-index and removing margin among other things but nothing works. Website: http://bit.ly/9ZFJk5 CSS #menu-container{ background: ur...

Menu items only for registered users

How can I in Drupal define that menu item link is available only for registered users, and not for users that are not loged in? ...

Dynamic Action-based URL menu problem c# mvc

Hi, i'm having issues implenting a dynamic action-based menu system in a PartialView as below: <ul class="tabs"> <li <% if (ViewContext.RouteData.Values["Action"] == "Index"){ %>class="active"<% } %>><a href="/talent">Home</a></li> <li <% if (ViewContext.RouteData.Values["Action"] == "account"){ %>class="active"<% } %>><a href="...

jQuery / JavaScript - Trigger hover on a element when mouse over on another element

Is this possible? My HTML looks like this: <ul> <li> <a> link </a> </li> <li> <a> link </a> </li> <li> <a> link </a> <ul> <li> <a> sub-link </a> </li> <li> <a> sub-link </a> </li> <li> <a> sub-link </a> </li> </ul> </li> </ul> Basically I want to trigger the hover CSS rule on the parent menu ...

Best(?) way to make a popup menu for semi-portable shell scripts?

Basically I would love to say: echo `grep ^foo /usr/share/dict/words | popup_menu` ...and have some type of keyboard navigable menu popup or selection tool, very similar to how vim's ":Explore" mechanism works. Extreme bonus points for "easy and works pretty much everywhere with standard tools" Also acceptable is "needs some sort ...

Alternative Representation of a Website Drop-Down Navigation

I'm being brought in to re-design a website that currently has five or six hover-drop-down-style-list-menus. They are displayed similar to the expanding menu on the left hand side of http://www.amazon.co.uk/ except the menu runs horizontally. I hate these kind of drop-down menu lists and I was wondering if any of you could help me figur...

Select Dropdown Box with Curl

Hi, how can I select a field in a dropdown box with curl ...

Win32 - Fullscreen popup menu temperamental activation

Using C++ in VS2008, I'm at the beginnings of a DirectX program which can so far display a token image and flip between fullscreen and windowed mode with no problems. It has a menu bar, which is invisible as expected in fullscreen mode. The ALT key could still activate this menu in fullscreen, but it was very clumsy since its items wer...

Drupal - get $primary_links with nested menus as php array

I'm trying to get a PHP array that includes a simple nested list of primary_links and their sub-menu items. This seems like a simple task but I can't seem to get a straight answer on how exactly to do it. From there I would theme it exactly as needed. Thanks! ...

How to add radio buttons to a context menu?

I would like to add radio buttons to my context menu, but I'm not sure how. This is how it is created: @Override public void onCreateContextMenu(ContextMenu menu, View v,ContextMenuInfo menuInfo) { super.onCreateContextMenu(menu, v, menuInfo); menu.setHeaderTitle("Selection Options"); menu.add(0, v.g...

How can I create multiple context menus?

I have 1 activity, but would like to have multiple context menu's for different UI components. For example, I have a ListView which will react to: @Override public void onCreateContextMenu(ContextMenu menu, View v,ContextMenuInfo menuInfo) { super.onCreateContextMenu(menu, v, menuInfo); menu.setHeaderTitle("...

changing layout of options menu

Is it possible to modify layout of the options menu? For example, have Title above the icon or increase space between them? ...

Doctype tag preventing menu to work properly only in IE7

I got a sidebar menu from DynamicDrive. I changed it a bit so that can be used from right to left. It works perfectly in all browsers except IE7. After loads of debugging I found out that when I remove the <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3c.org/TR/1999/REC-html401-19991224/loose.dtd"&gt; tag it...

fix css image menu

Hi, I am trying to create a css based image rollover navigation bar. For some reason, I can not get the images in the right place. I was hoping someone could help. You can find the code and images here: http://garretwais.com/Freelance/9-3-2010/home.html Thanks, Garret ...

What process controls the menubar in OS X (not menuextras on the right side)?

I know menuextras are controlled by SystemUIServer. My question is what process controls the entire menubar, including accepting and displaying app menus on the left side? ...

Android: Optionsmenu 'More-list' with icons

Hi all, I love how Android automaticly displays a number of menuitems in the options menu and when there are too many for your screen, it displays a 'More' button. I'd like to keep it that way, but the menuitems in the popup that you get when you press 'More' don't have the menuicons. Is there a way that I can overrule this? If not, how...

I want to create a menu editor for my website using PHP and AJAX

I created menu.php which loads the menu items from a MySQL database, parses them through a function which creates the code for the menu items which are then displayed in order in an HTML list (tell me if this is confusing and I can post the code). What I would like to make is an admin page the would allow the user to reorder the menu ite...

Add/remove class of tag when other child links are hovered over

When I hover over the parent links in my menu the class "toggle-active" is added to a span tag so the arrow image is changed. I also want this class to be added to the span tag when I'm hovering over the child links of the parent link inside the .sub-menu container, but I cannot get it to work. Here is the structure of the menu: <ul> <l...

Wordpress 3.0 Menu - faster and easier arranging.

I'm working on a site that I built using wordpress 3.0. The site will be taken over completely by the client once its been completed, so it uses the new menu tool to order/arrange the navigation. I'm now adding all the pages to the navigation currently I have over 180 pages on the site and I'm finding it very time consuming working wit...

Android: How do I customize phone apps menus?

I want to add a new menu or context menu item to existing applications like the Phone and Contacts. For example, in the contact list, select a contact then you see "Send picture to this person" in the menu. Or from the phone app, while talking to someone, you see a button that says "Mark this call for follow-up" or anything like this. ...