dropdown-menu

menus that expand when you mouse over, done purely via CSS?

Someone told me once they it is possible to create menu's via CSS only, how can you? ...

why CSS dropdown menu makes content jump down? What fixes this?

I am working on a pure CSS dropdown menu. (IE6 is not important to me right now.) I have everything inside of a "wrapper" div for centering. The page has 4 divs inside of "#wrapper" the first being "#topbar", the second the "#nav", the third a "#content" box and the fourth, a "#footer". The "#content" and "#footer" divs have absolut...

Does anyone know of a very simple jQuery dropdown menu with smooth fadeout (or slide-down)?

Does anyone know of a very simple jQuery dropdown menu plugin where the opacity goes down smoothly (or where the menu slides down smoothly)?? ...

jQuery Drop Down Menu IE7 Problem with .slideDown

I have the following jquery on mcgillidssa.com to animate the drop down menu: $(document).ready(function() { $("#navigation ul li").hover(function() { $(this).addClass("over"); $(this).find("ul").slideDown('fast').show(); $(this).hover(function() { }, function(){ $(this).removeClass("over"); $(this).find("ul").slideUp('f...

Drop Down menu in java?

I created drop down list using java. But i am not aware of creating drop down menu like as Sliding menu. Is it possible create the drop down menu using java? ...

Jquery - Get all other menus to slide up

I have a drop down menu made with Jquery. Right now, if you hover over all the menu items, their submenus will all show at the same time. I would like that if I hover over one menu, then go to the next, that the previous menu's submenu will slide back up. As it is now, I have to hover out of the submenus for them to slide up. To put i...

CSS drop-down menus pushing page content down

This is probably (hopefully) a pretty simple question, but I can't seem to get it to work so I'll turn to the experts here. I'm using a pretty straightforward CSS drop-down menu, with just a little JQuery involved. The issue is that when I hover over the drop-down and it opens, it's pushing everything on the page down below it rather the...

How to make this jQuery snippet work in Internet Explorer?

If there was ever a time to hate IE, this is it. This code begins with a box with content. When the button is clicked, the box is supposed to drop down and fade-in. <html> <script type="text/javascript" src="jquery.js"></script> <script type='text/javascript'> function Test() { var item_height = $('#test').height(); $('#test').heig...

Drop Down not even showing up in IE6

I've got a drop down menu here that just plain won't show up in IE6. The site works perfectly in every other browser. Seems daft to lose sleep over IE6, I know, but the site is for a demographic who could very well still be using it. Here's the CSS: html { height:100%; } body, p, a, ul, li, ol, h1, h2, h3, h4, h5, h6 { margi...

drop down menu will not display outside containing div in IE7..

I am tearing my hair out over this, I have a dropdown menu using CSS and jQuery (thanks to Soh Tanaka) and it works perfectly in Firefox, Safari, Google chrome and I.E. 8, but in IE 7 it will not drop down outside the 'Banner div'. It drops below the nav div however. I have moved the nav div higher in the banner the result is the same, m...

Javascript menu behaving poorly in IE

Let's get down to it... site: www.erisdesigns.net html: <div id="wrapper"> <div id="header"> <div id="nav"> <dl class="dropdown"> <dt id="one-ddheader" onmouseover="ddMenu('one',1)" onmouseout="ddMenu('one',-1)"><a class="menu" href="index.htm">Home</a></dt> <dd id="one-ddcontent" onmouseover="cancelHide('one')" ...

Absolute positioning bug in IE8

Hello, Internet Explorer 7 & 8 (IE7 & IE) are not positioning drop down menu items properly using absolute positioning. FireFox, Chrome, and Safari all render the drop down menu item(s) positions properly. In IE7 & IE8, the the drop down menu items are offset to the right instead of dropping down directly under the parent item. The sit...

Anchors in a dropdown menu

I have a page with several links. I want to make that when a user clicks link #1 he will be redirected to a contact form and select item #1 in the dropdown menu. Same goes for #2 and item #2 in the dropdown menu. Is this possible ? ...

CSS only drop down menu

Hi guys I am trying to make CSS drop down menu (no javascript involved). According to http://pixelspread.com/blog/289/css-drop-down-menu I only need to add #menuBar #test2 a:hover .subMenu{display:block;} to make the sub menu show up. However, in my code, it doesn't work. Could someone help me about this issue? Thanks a lot! ...

CSS Hover state question..

Hi guys. I am trying to make drop down menu. Some folks help me on http://stackoverflow.com/questions/3314198/css-only-drop-down-menu post. Everything works fine except when I hover my mouse to my submenu. The hover state background image in my #menubar #test2 a:hover will return to #menubar #test2 a state` . I really need to get th...

How do i create a drop down like menu similar to the Facebook drop down notifications

I am planning to create a drop down menu for my site similar to the DB drop down for notifications Any JS library help will be appreciated ...

Superfish dropdown menu not working in IE7

Hi guys, On my site I installed superfish dropdowns, which I use on other sites as well. Anywho, I thought all was working because they work fine in Safari, FF, and IE8. But alas, in IE7 (and probably IE6 but I don't care!) they do not appear. I read about Z-index issues with IE7, but none of the solutions worked. Anyone know how t...

how to add an arrow in a drop-down menu

Hi, I have a working simple jquery drop-down menu. But problem is how can I put an arrow or just '+' character each other like other usual menus if list has sub-menu, of course. function Mx_menu(){ $(".menu ul").css({display: "none"}); // Opera Fix $(".menu li").hover(function(){ $(this).find('ul:first').css({vi...

CSS Menu Problem

I have this CSS Menu. It's fully functional. But when I put it in my page inside some table cell, it blows up like this. Don't mind the silver and the blue lines, they are from the page. Now I have debugged the page and the menu itself. No error still this weird behavior. Then I got another menu and put that in here and it showed t...

CSS Drop Down Menu - Stays HOVER state when clicked

i have a CSS Drop Down Menu... what i am doing with this in a certain portion of my website is that i am using its links to call AJAX-jQuery to change the contents of a DIV on the page without reloading... <script type="text/javascript"> function load_editor(id) { $('#myDIV').load('editor.php?id=' + id); } </script> <div class="ma...