Make a Multi-Level CSS Dropdown Menu in Dreamweaver CS4

Step Four: CSS Menu Magic

Now we’ll begin popping that menu out to the right and building the dropdowns.

  1. Add a new Compound Style in menu.css with the name ul.dropdown ul
  2. Use these settings in the CSS Rule definition box:
Category Subcategory Setting Value
Background Background color #cccccc
Box Width 150px
  Padding (CHECK same for all) Top 0
Margin (CHECK same for all) Top 0
List List-style-type none
List-style-image none
Positioning Position absolute
Visibilty hidden
Width 150px
Z-index 598
  Placement Top 100%
Left 0

Make sure you put % for the Top placement, not px!

Here’s what the ul.dropdown ul style rule did to the second level items under Visit Us and Animals:

  • removed bullets and margins from all menu list items (not just first level)
  • hid 3rd-level buttons until 2nd level buttons are activated (which won’t be apparent yet)
  • set the background color for 2nd-level buttons that have fly-outs (Birds and Beasts)
  • gave a consistent width of 150px to the 2nd and 3rd level buttons

Now if you view the page in a browser, the menu has collapsed so that only the first level appears.

Collapsed menu

Collapsed menu

  1. Add a new Compound Style in menu.css with the name ul.dropdown li
  2. Use these settings in the CSS Rule definition box:
Category Subcategory Setting Value
Type Line-height 1.3em
Block Vertical-align middle
Box Float left
  Padding (UNCHECK same for all) Top 7px
Right 30px
Bottom 7px
Left 10px
Margin (CHECK same for all) Top 0
Border (UNCHECK same for all in all 3 columns) Right Style solid
Width 1 pixel
Color #999999
List List-style-type none
List-style-image none

You will find that the menu is now horizontal when viewed in a browser; the Float: left did that. There is ample padding between the text and the edges of each button. There is also a dark gray separating line to the right of each button.

Horizontal first-level buttons

Horizontal first-level buttons


What you see in Dreamweaver may look a little funkier:
Funky Dreamweaver layout

Funky Dreamweaver layout


Let’s add a lighter gray background when the cursor hovers over a button.

  1. Add a new Compound Style in menu.css with the name ul.dropdown li:hover
  2. Use these settings in the CSS Rule definition box:
Category Setting Value
Background Background-color #eeeeee
Positioning Position relative
Z-index 599

Check out the cool color change when you hover over a button in the browser.

Hovering over a button

Hovering over a button


So where did our second-and third-level buttons go? They are there but still hidden when we hover over the first-level buttons. What we can’t see is that we just aligned the second-level buttons with their respective first-level buttons vertically. We can’t see then because in #2 above we made them hidden when the menu is not is use. Now we can make them visible if someone hovers over a button.

  1. Add a new Compound Style in menu.css with the name ul.dropdown li:hover > ul
  2. Use these settings in the CSS Rule definition box:
Category Setting Value
Positioning Visibility visible

The subnagivation appears!

The subnagivation appears!


What we get here in the browser is close to done. We still need to get those third level buttons to move out to the right instead of drop down. And we don’t need that right border line for these lower buttons.

  1. Add a new Compound Style in menu.css with the name ul.dropdown ul li
  2. Use these settings in the CSS Rule definition box:
Category Subcategory Setting Value
Box Float none
Border (CHECK same for all in all 3 columns) Top Style none

Borders removed

Borders removed


Almost! One last step to push those birds and beasts over.

  1. Add a new Compound Style in menu.css with the name ul.dropdown ul ul
  2. Use these settings in the CSS Rule definition box:
Category Subcategory Setting Value
Positioning Placement Top 1px
Left 99%

Make sure you put % for the Left placement, not px!

Pop those birds and beasts out

Pop those birds and beasts out


My, my, aren’t you slick. Those birds and beasts pop out to the right like champs.

 

Next: Customizing the Menu for Your Needs

 

 



Share this Article

You can share this article almost anywhere but on your car's back bumper.
Hover over this bar to access the menu.
Share/Bookmark

 

Related Posts

Comments

51 Comments

  • By muthiulhaq, 06/04/2009 @ 1:00 am

    Hi,
    Thanks this very useful one.

  • By Cory Cummings, 06/10/2009 @ 1:50 pm

    Hello! Thank you so much for the article. The only thing I am having trouble with is centering the menu. You can go to my site and see what I mean. Could you please help me with this?

  • By Dawn Pedersen, 06/10/2009 @ 2:00 pm

    Try this, Cory.

    Edit the .dropdown class and add the following two settings in the Box category, Margin subcategory (uncheck “Same for all”):

    Right: Auto
    Left: Auto

    The CSS code then will look like this:

    ul.dropdown {
    background-color: #cccccc;
    padding: 0px;
    float: left;
    list-style-image: none;
    list-style-type: none;
    position: relative;
    z-index: 597;
    margin-top: 0px;
    margin-right: auto;
    margin-bottom: 0px;
    margin-left: auto;
    }

  • By Cory Cummings, 06/10/2009 @ 4:47 pm

    that did not seem to work…

  • By Dawn Pedersen, 06/10/2009 @ 5:00 pm

    Sorry! Wrap the navigation list with div with its ID set to “nav”. Then create an ID-type CSS rule called #nav, with the margin-left and margin-right set to “auto” as above. You will need to tell it a specific width too for this to work. For your particular menu, the width is 974px.

    HTML
    <div id="nav">
    <ul class="dropdown">
    (etc.)
    </ul>
    </div>

    CSS
    #nav {
    margin-right: auto;
    margin-left: auto;
    width: 974px;
    }

  • By Tirath, 06/11/2009 @ 9:29 am

    Awesome tutorial
    nice step by step detail tutorial which are so much useful
    I learn a lot
    Thanks so much for posting valuable tutorials for us
    thanks for your kind effort
    Keep up good work
    God bless you

  • By jordan, 06/16/2009 @ 12:23 pm

    very nice.
    I have a couple questions:

    any way to make it more visually appealing without having to do anything too drastic?

    and how do you apply the bar to multiple pages? (this may be a dumb question) but i am a novice college student still learning. your help is greatly aprreciated!

  • By Dawn Pedersen, 06/16/2009 @ 12:27 pm

    Hi Jordan!

    Check out “Changing the Font or Colors” and “Adding a Background Image” on page four of the tutorial.

    To apply the bar to multiple pages, you need to put the HTML code onto those pages. In Dreamweaver, you can use the Templates feature to do this (which takes some time to learn but is worth the effort if you work in Dreamweaver a lot).

  • By Dani, 06/16/2009 @ 6:24 pm

    This was helpful thanks…how would I include an arrow graphic on the 2nd level links to identify there is a 3rd level.

  • By Dawn Pedersen, 06/16/2009 @ 6:51 pm

    Thanks for a great idea, Dani. That can be accomplished with background images.

    A down-pointing arrow should go on the background image for the first level rule: ul.dropdown.

    A right-pointing arrow should go on the background images for the second level rules: ul.dropdown ul and ul.dropdown li:hover.

    A plain background image with no arrow should be used for the third level rule: ul.dropdown ul li.

  • By Amanda, 06/23/2009 @ 10:50 pm

    Hello

    I have tried to create a dropdown menu twice, and still cannot get it to display properly.

    When I view (F12) the bar as the menu.htm it appears perfectly, complete with dropdown menus, but when I inseret this into the the main page the dropdowns no longer appear.

    Can you suggest a solution to this?

  • By Dawn Pedersen, 06/24/2009 @ 9:00 am

    Hi Amanda! Did you link the page to the external CSS file? See “Content” on page 4.

  • By Amanda, 06/24/2009 @ 11:58 am

    Hello Dawn

    Yes I have added the CSS file for the navigation bar to the main html. (does it matter where on the tree it appears?)

    Is it a problem, because the file I am adding it to is a template? (dwt) or could it be something to do with the width?

    Sorry I’m just really unsure how to fix this problem.

    Thank you for your assistance

  • By Dawn Pedersen, 06/24/2009 @ 12:00 pm

    Hi again! I can’t really diagnose the issue without seeing the files. If you can zip up your site folder (include HTML and CSS file in their respective locations – you can leave out other files), I can try to determine what’s up. If it takes me just a few minutes, I’ll do it for free. Email me at dawn@blulob.com.

  • By aji, 06/27/2009 @ 2:48 pm

    Thank you very very much.. i’d really appreciated it.. and also thanks for the background button image.. very usefull and nice look. have a great day.. :D

  • By Dawn Pedersen, 06/28/2009 @ 8:10 pm

    You’re welcome, aji!

  • By Donna, 07/03/2009 @ 5:33 pm

    I have made my menu and it’s drop down menus. What I am having problems with is the centering of all 3 main buttons, HOME, PRODUCTS, CONTACTS. I did what you suggested to Cory, but it is not stretching the 3 main categories for the full width of 780px. Suggestions??

    Ohterwise, I couldn’t have gotten as far as I have just today! WONDERFUL!!!!!

  • By Dawn Pedersen, 07/05/2009 @ 3:16 pm

    Try this, Donna:

    ul.dropdown
    [BOX] width: 780px;

    ul.dropdown li
    [BLOCK] text-align: center;
    [BOX] width: 219px;

  • By kurt, 07/23/2009 @ 1:30 am

    Hi, is that the only way to make a drop down button? Is there’s another way for it?

  • By Dawn Pedersen, 07/24/2009 @ 11:28 am

    There are many different ways to make drop-down menus. This is just one. They can be done with different CSS techniques, and they can be done using JavaScript.

  • By Andy, 07/27/2009 @ 7:07 pm

    I like this post.

  • By Anna, 09/02/2009 @ 8:08 am

    Hi there,
    I have a tiny problem. Menu is working fine, looks really nice… but only in Mozilla. Checked today in Explorer… and nothing. Dropdown is not working at all. Is there any solution?

  • By Dawn Pedersen, 09/08/2009 @ 10:08 am

    Which version of IE are you viewing it in? It works in IE8 but may not work in earlier versions. That is because IE took a long time to support CSS fully.

  • By Renee Evans, 09/08/2009 @ 2:03 pm

    Most importantly, thank you very much for the CSS tutorial, I had been hunting all over for a really nice looking dropdown bar. I was wondering if you could please help me figure something out. When I view my page in DW (CS4) my last two heading are shown horizontally and not across the page. I know yours does too but my subheadings don’t show, should I keep trying to ignore it since it is functional? I did notice when I add color to the main dropdown head there is a square on the right side that is not colored kinda like the bar is not going all the way over.
    Can you please help me with this?

  • By Renee Evans, 09/08/2009 @ 2:06 pm

    Oops, I meant “When I view my page in DW (CS4) my last two heading are shown VERTICALLY and not across the page.”
    Thanks

  • By Danny Namnum, 09/11/2009 @ 9:03 pm

    Very flexible, I like this better then spry menus because it allows more control over the look and feel. However it would be nice to have animated drop down feature.

  • By Michelle, 09/14/2009 @ 10:35 am

    Hello! I need your help. Right now I have everything working except one thing. I have all 4 main headings stacked on top of each other vertically. I would like to have them next to each other horizontally; therefore, the dropdown menus will appear correctly. Can you please help me with this?

    Thank you!!

  • By rbogartz, 09/22/2009 @ 9:09 pm

    Great article! I’m also still learning how to create websites. I have my css all built and when I put the code in the page it works but isn’t there a way to reference the css so that I don’t have to put the code in on every page?

  • By Trevor, 10/05/2009 @ 7:41 am

    how would i be able to relink the dropdowns

  • By Trevor, 10/05/2009 @ 7:43 am

    never mind i figured it out

  • By Eric Miller, 10/09/2009 @ 10:06 am

    Very useful post. I’m still learning my way around and have struggled with centering my menu. Now it is right where I want it, even on IE!

  • By Josh, 10/10/2009 @ 8:51 am

    Awesome post! We are planning a new website for 2010 and this tutorial taught me exactly what I needed to know! Thank you!

  • By Michael, 10/15/2009 @ 11:21 am

    Great article, thank you!

    However I failed aligning the menu items vertically. Any advices?

    Thanks in advance!

  • By Rowan, 10/20/2009 @ 1:56 pm

    This is a wonderful tutorial – works like a dream! One problem – the drop down blocks are set to a red color, but the text on the page underneath it shows through, as if the red is transparent. I can’t distinguish the menu items. I did set the text div to a lower z index, but it does not help. Can you help? Thank you.

  • By Rowan, 10/20/2009 @ 4:32 pm

    Hello,
    I am answering my own question because I figured it out. I had nested div tags. Even though the z indexes were set – it made a difference to just list each div individually, and set each z index appropriately.
    Hope this helps someone else…

  • By Leslie, 11/09/2009 @ 10:27 am

    Hi. Just wanted to let you know the PRINT THIS ARTICLE link isn’t working for this article. Great tut. Thanks!

  • By Dawn Pedersen, 11/09/2009 @ 12:22 pm

    Thanks for letting me know, Leslie! I have corrected the error.

  • By BT (from Austin), 11/11/2009 @ 4:01 pm

    What a great tutorial – you are awesome. I’m setting this up for a site as a way to “crash course” myself into DW and I’ve learned so much.

    Again, thanks for the great tutorial.

    BT

  • By Amanda, 12/03/2009 @ 10:09 pm

    Hi!
    Thank you SO much for this tutorial; it is very helpful. I have one problem, which is that my dropdown menu works perfectly in CS4 and displays properly under the “Live View”, but does not display anything but basic links in IE [and I downloaded version 8 hoping that was the issue]. Do you have any idea why they aren’t displaying? Thank you!

  • By Amanda, 12/07/2009 @ 9:01 pm

    Update– the dropdown menu displays perfectly in Firefox and Safari but not in either version of IE! I am stumped!

  • By Vijay, 01/21/2010 @ 12:57 am

    Hi Dawn
    i really like it and it is really very good tutorial step by step
    But i have one problem with this menu
    it is work fine in Firefox but it has problem in IE6 please send me solution for this
    on my email address
    vjyxyz@hotmail.com

    as well as other can also send solution if u have thanks in advance.

  • By Libby Starke, 02/05/2010 @ 9:44 am

    I have found your info on creating drop down menus to be incredible – I have spent over two days trying to get this information and you have it clearly and concisely. Every other website (and I’ve been on dozens) either has complicated code with no step-by-step instructions or else the code is “For Sale” Infuriating! Many thanks for your site. Everything so far has worked brilliantly, however I do have one issue. My second level items are never hidden. I have re-entered the info in Menu Magic 2, but they are still visible. Any idea why?

  • By Libby Starke, 02/06/2010 @ 3:38 pm

    Dawn – I emailed you before regarding hidden 2nd level copy – it’s fine now. One thing though: how do I take this nav bar and put it into a webpage on Dreamweaver? Do I need another bit of code for the ‘table’?
    Many thanks.

  • By Andi Sullivan, 02/10/2010 @ 8:58 am

    I have grown in my talents as a web designer after starting in a small communications dept., but have little support and gain training as I can.

    I loved and appreciated your tutorial, but wondered if there was a way for me to center the text of each “button” on the initial view. Also, is there a way to have the hover state’s text color change when you go over the top level button and stay that color instead of just changing when you move over the secondary navigation?

  • By James, 02/16/2010 @ 8:03 am

    I also cannot get this to work in IE (version 8 or otherwise). Looks great in Firefox though.

  • By Daniella, 03/09/2010 @ 9:11 pm

    Hello, I just want to say thanks for the no nonsense descriptions on how to create a dropdown menu. I was wondering how do I add a sound to the links in this menu? Your assistance is very much appreciated.
    Cheers,

  • By Bibi, 03/28/2010 @ 3:21 am

    Thank you so much for sharing this. For quite a while I’ve been trying this, and now it really works. I am so happy :)

  • By priya, 05/04/2010 @ 5:29 am

    hello……..
    I need your help….
    actually i m developing a website…
    so can u explain me how can i make multilevel dropdown menu which will not be hidden by background image of webpage……
    I have tried but the list items of menu becomes hidden by background of my webpage….
    so please support me……

  • By marc winn, 06/03/2010 @ 9:21 am

    Hi Dawn

    Fantastic tutorial, really easy to understand and implement.

    I was just wondering how to put a transparent colour on the dropdown menu?

    Is it adding it as a background image?

    Many thanks again

    Marc

  • By Dan Phillips, 06/15/2010 @ 1:51 pm

    This is the best tutorial for creating a css drop-down menu. HANDS DOWN! Awesome job, thanks a lot. This helped me out INCREDIBLY!

  • By Killerwebs, 07/02/2010 @ 5:14 pm

    Excellent post, this helped me loads!! thank you

 

Links to this Post

RSS feed for comments on this post. | TrackBack URI

 

I’d love to hear from you!