menu

problems with jQuery mouseover for better looking css menu

I have a horizontal menu on my site using nice-menus in drupal. When you hover over an li element, a background image is set for the link that displays. The problem I'm having is that this image disappears when you hover over a parent menu item's children. The image that is disappearing is set using this css style: ul.nice-menu li ...

First Experiment with Dojo - FishEye Menu

http://demos.dojotoolkit.org/demos/fisheye/ I want to roll such a menu into my system, so I'm doing a one-step-at-a-time approach. I did a right click - save image on each of the icons. I did a view source, grabbed the HTML and saved on my machine. I changed the pictures to my local server (like this: iconSrc="http://localhost:808...

Flex 3: How can I change a PopupButton into a regular Button when there's only one menu item available?

Hi there. I have a PopUpButton that only contains 2 actions. Both actions are complete opposites of each other and switches a boolean property on an object from true to false or false to true. To avoid redundancy, I've only displaying one action at a time. So, if the property is true, the action to change it to true is not shown. ...

Winforms application menu and application UI

Hey Everyone, I am working on a little WinForm app and have been trying to find the answers to a few questions i have without any luck. Im a ASP.NET developer so WinForms development is new to me. Here is my main question: How do I create a menu system that once selected the contents will render in the Main form of the selected item. ...

Dropdown menu not working in IE6

hello, The following dropdown menu works fine in modern browsers (IE7/firefox) but not in IE6. Can someone suggest a fix? CSS: #menu { height: 29px; background: url(img/menu.png) repeat-x top; border-left: 1px solid #0b2f3e; border-right: 1px solid #0b2f3e; position: relative; } #menu ul { display: none; p...

How to find the menu item (if any) which opens a given HMENU when activated?

I'd like to implement a function with the prototype /* Locates the menu item of the application which caused the given menu 'mnu' to * show up. * @return true if the given menu 'mnu' was opened by another menu item, false * if not. */ bool getParentMenuItem( HMENU mnu, HMENU *parentMenu, int *parentMenuIdx ); Given a HMENU handle,...

Windows Shell Context Menu option

I need to create an option for all files that would run a batch file located in Windows directory or any other directory. The batch file will basically delete the files and will also delete it from another server. I have the batch file wworking just need the context menu option. Thanks. ...

Sharepoint navigation menu collapse

Does anyone know when in sharepoint you´ve created a navigation structure in site settings navigation / that i can only add a page under a heading and have to hide the page which is the heading? How I can make the menu collapse when clicking on the top menu rather then immediate display? I want to display the second level when clicking...

jQuery hover event with nested elements

Hi there, I've currently got your basic, run-of-the-mill menu tree as follows: <ul id="nav"> <li> <a href="#">home</a> <div class="controls">Some controls go here</div> <ul> <li> <a href="#">item 1</a> <div class="controls">Some controls go here</div> </li> <li> <a href="#">item 2</a> <div class="controls">Some co...

Creating multi-level, scrollable menus using jQuery and the jdMenu plugin

Hello. In our application we're using jdMenu plugin to create a hierarchical menu from nested unordered lists. This works well until there are so many items in a menu that it is forced off the screen. In an attempt to fix this I've updated the plugin (actually the positionBy plugin that is a requirement of jdMenu) so that when a l...

Drupal6: hook_menu_alter still having an effect after the module is disabled

For some reason, the "Create content" menu item was displaying for Anon, even though there was nothing in that tree or at that path. (Anon can only create a certain type of content, but that has been moved to its own top-level navigation item.) To solve this, I used hook_menu_alter(): /** * Remove "create content" from the menu if the...

Use CSS to create multiple elements that take up the entire width of the parent.

I'm trying to achieve a horizontal CSS menu bar where all of the <a> elements combined expand to the entire width of the parent. The HTML looks something like this: <div id="parent"> <a href="/">Home</a> <a href="/learn">Learn More About The Product</a> <a href="/about">About Us</a> <a href="/contact">Contact Us</a> </d...

Javascript/CSS Menu to replace contents in a specific area...

Im looking for a script or tutorial that shows how to create a menu similar to the one from a Firefox first run page: http://www.mozilla.com/en-US/firefox/2.0.0.6/firstrun/ When you click a nav menu item on the left, the contents scroll into position in the main content area right of the menu items. Any ideas on this one? ...

loading the content after click yensdesign tabbed menu

I've used this tutorial: http://yensdesign.com/2008/12/create-a-smooth-tabbed-menu-in-jquery/ it is yensdesign tabbed menu. Could sb tell me how do I have to change the code to load content of particular tab after clicking on this tab? ...

Menu with sublevels on hover using CSS only

Hi, I want to know if it is possible, with pure html and css (no javascript, htc files, ...), to create a menu that has a sort of dropdown effect for subitems. It doesn't have to slide or anything (I know thats impossible), just show on hover. Edit: It has to work in IE. Thanks! ...

keeping higher menus highlighted in suckerfish vertical

I've seen this question asked but I can't seem to apply the answers to my own menu. My suckerfish menu basically is this (http://htmldog.com/articles/suckerfish/dropdowns/example/vertical.html), I've made some of my own adjustments color-wise/font-wise/and clearing the border from the table. How can I make it so that when you move throug...

MDI window list not updating child title bar texts

I have a MDI container form, and some child forms that update their title bar texts themselves, independently. After the Text property is changed on the child form, the new title bar text from the child is not updated in the window list menu when the menu is opened. This is the auto-generated window list provided by .NET via the MdiWindo...

How to add to a mouseover javascript menu?

I currently started working on my school's website and have already encountered a problem. There has been a request to add a link to an existing menu that has been around for a couple of years. The menu is javascript and I really don't have any experience with it. I just know HTML. I think, but am not sure, that it's just mouseover and i...

Best way to do a menu like this

Below is an image from a site that hase user photo's, they link to a profile but on the image you will see a + sign, this part links to add a friend. I am wanting to do something similar but instead of just having the plus sign part be a link, I am wanting to click the plus sign and have a couple of links appear, kind of like a dropdo...

CSS: remove separator on the last and first item

Hi, I have a menu div which has a dark background. Inside it, I have several menu item divs with 1px margins on the right and the left. This way I've got separators between them. Obviously these appear on the very left and very right side of the menu which I don't want. Is there a way to accomplish this without inserting 1-pixel divs as...