How to Build a Kick-Butt CSS3 Mega Drop-Down Menu

How to Build a Kick-Butt CSS3 Mega Drop-Down Menu

Tutorial Details
  • Topic: HTML / CSS3
  • Difficulty: Moderate
  • Estimated Completion Time: 30 min

Final Product What You'll Be Creating

This entry is part 16 of 16 in the CSS3 Mastery Session
« Previous

Often used on e-commerce or large scale websites, mega menus are becoming more and more popular, as they offer an effective solution to displaying a lot of content while keeping a clean layout. In this tutorial, we’ll learn how to build a cross-browser, awesome CSS-only drop-down mega menu, using nice CSS3 features.


Step 1: Building the Navigation Bar

Let’s begin with a basic menu, built with an unordered list and some basic CSS styling.

<ul id="menu">
    <li><a href="#">Home</a></li>
    <li><a href="#">About</a></li>
    <li><a href="#">Services</a></li>
    <li><a href="#">Portfolio</a></li>
    <li><a href="#">Contact</a></li>
</ul>

Creating the Menu Container

We’ll now apply some basic CSS styling. For the menu container, we define a fixed width that we center by setting the left and right margins to “auto”.

#menu {
	list-style:none;
	width:940px;
	margin:30px auto 0px auto;
	height:43px;
	padding:0px 20px 0px 20px;
}

Now, let’s see how we can improve it with some CSS3 features. We need to use different syntaxes for Webkit-based browsers (like Safari) and for Mozilla-based browsers (like Firefox).

For rounded corners, the syntax will be :

-moz-border-radius: 10px
-webkit-border-radius: 10px;
border-radius: 10px;

For the background, we’ll use gradients and a fallback color for older browsers. To keep consistency when choosing colors, there is an awesome tool called Facade that helps you find lighter and darker tones of a basic color.

background: #014464;
background: -moz-linear-gradient(top, #0272a7, #013953);
background: -webkit-gradient(linear, 0% 0%, 0% 100%, from(#0272a7), to(#013953));

The first line applies a simple background color (for older browsers); the second and third lines create a gradient from the top to the bottom using two colors : #0272a7 and #013953.

We can now add a darker border and polish the design with a “fake” inset border created with the “box-shadow” feature. The syntax is the same for all compatible browsers: the first value is the horizontal offset, the second one is the vertical offset, the third one is the blur radius (a small value makes it sharper; it will be 1 pixel in our example). We set all offsets to 0 so the blur value will create a uniform light border :

-moz-box-shadow:inset 0px 0px 1px #edf9ff;
-webkit-box-shadow:inset 0px 0px 1px #edf9ff;
box-shadow:inset 0px 0px 1px #edf9ff;

Here’s the final CSS code for the #menu container :

#menu {
	list-style:none;
	width:940px;
	margin:30px auto 0px auto;
	height:43px;
	padding:0px 20px 0px 20px;

	/* Rounded Corners */
	
	-moz-border-radius: 10px;
	-webkit-border-radius: 10px;
	border-radius: 10px;

	/* Background color and gradients */
	
	background: #014464;
	background: -moz-linear-gradient(top, #0272a7, #013953);
	background: -webkit-gradient(linear, 0% 0%, 0% 100%, from(#0272a7), to(#013953));
	
	/* Borders */
	
	border: 1px solid #002232;

	-moz-box-shadow:inset 0px 0px 1px #edf9ff;
	-webkit-box-shadow:inset 0px 0px 1px #edf9ff;
	box-shadow:inset 0px 0px 1px #edf9ff;
}

Styling Menu Items

We will begin with all menu items aligned to the left and space them with a margin-right (the padding will be necessary for the hover state) :

#menu li {
	float:left;
	display:block;
	text-align:center;
	position:relative;
	padding: 4px 10px 4px 10px;
	margin-right:30px;
	margin-top:7px;
	border:none;
}

For the hover state and the drop down, I have chosen a grey color scheme for the background.

The fallback color will be a light grey (#F4F4F4) and the gradient will be applied from the top (#F4F4F4) to the bottom (#EEEEEE). Rounded corners will be applied only on top corners as we’ll have the drop down sticking right under the menu items.

background: #F4F4F4;
background: -moz-linear-gradient(top, #F4F4F4, #EEEEEE);
background: -webkit-gradient(linear, 0% 0%, 0% 100%, from(#F4F4F4), to(#EEEEEE));

The left and right padding is slightly smaller here because we have a border of 1 pixel appearing on hover. If we keep the same padding, menu items will be pushed two pixels on the right because of the left and right borders added on mouse hover. To avoid that, we’ll remove 1 pixel of padding on both sides, so we have 9 pixels instead of 10.

border: 1px solid #777777;
padding: 4px 9px 4px 9px;

Then, we add rounded corners to the top only so the drop down will stick perfectly under the parent menu item :

-moz-border-radius: 5px 5px 0px 0px;
-webkit-border-radius: 5px 5px 0px 0px;
border-radius: 5px 5px 0px 0px;

Here is the final CSS for the menu items on hover :

#menu li:hover {
	border: 1px solid #777777;
	padding: 4px 9px 4px 9px;
	
	/* Background color and gradients */
	
	background: #F4F4F4;
	background: -moz-linear-gradient(top, #F4F4F4, #EEEEEE);
	background: -webkit-gradient(linear, 0% 0%, 0% 100%, from(#F4F4F4), to(#EEEEEE));
	
	/* Rounded corners */
	
	-moz-border-radius: 5px 5px 0px 0px;
	-webkit-border-radius: 5px 5px 0px 0px;
	border-radius: 5px 5px 0px 0px;
}

For the links, we’ll apply a nice text shadow using a simple syntax : the first and second values are horizontal and vertical offsets for the shadow (1 pixel in our example), the third one is the blur (1 pixel too) and then we have the (black) color :

text-shadow: 1px 1px 1px #000;

Here is the final CSS for the links :

#menu li a {
	font-family:Arial, Helvetica, sans-serif;
	font-size:14px; 
	color: #EEEEEE;
	display:block;
	outline:0;
	text-decoration:none;
	text-shadow: 1px 1px 1px #000;
}

On mouse hover, as the background is grey, we’ll use a darker color (#161616) for the links and the white color for the text shadow :

#menu li:hover a {
	color:#161616;
	text-shadow: 1px 1px 1px #FFFFFF;
}

Finally, we need a way to indicate if there’s a drop down or not by using a simple arrow image as background, it will be positioned on the right using padding and the top margin will align to it properly. On hover this top margin will be set to 7 pixels instead of 8 as we have an additional border appearing on mouse hover (otherwise, the arrow would be pushed 1 pixel down on hover) :

#menu li .drop {
	padding-right:21px;
	background:url("img/drop.png") no-repeat right 8px;
}
#menu li:hover .drop {
	background:url("img/drop.png") no-repeat right 7px;
}

Here is our final code for the menu container and links; only the “home” item doesn’t have any drop down content for now :

<ul id="menu">
	<li><a href="#">Home</a></li>
	<li><a href="#" class="drop">About</a></li>
	<li><a href="#" class="drop">Services</a></li>
	<li><a href="#" class="drop">Portfolio</a></li>
	<li><a href="#" class="drop">Contact</a></li>
</ul>
#menu {
	list-style:none;
	width:940px;
	margin:30px auto 0px auto;
	height:43px;
	padding:0px 20px 0px 20px;

	/* Rounded Corners */
	
	-moz-border-radius: 10px;
	-webkit-border-radius: 10px;
	border-radius: 10px;

	/* Background color and gradients */
	
	background: #014464;
	background: -moz-linear-gradient(top, #0272a7, #013953);
	background: -webkit-gradient(linear, 0% 0%, 0% 100%, from(#0272a7), to(#013953));
	
	/* Borders */
	
	border: 1px solid #002232;

	-moz-box-shadow:inset 0px 0px 1px #edf9ff;
	-webkit-box-shadow:inset 0px 0px 1px #edf9ff;
	box-shadow:inset 0px 0px 1px #edf9ff;
}

#menu li {
	float:left;
	display:block;
	text-align:center;
	position:relative;
	padding: 4px 10px 4px 10px;
	margin-right:30px;
	margin-top:7px;
	border:none;
}

#menu li:hover {
	border: 1px solid #777777;
	padding: 4px 9px 4px 9px;
	
	/* Background color and gradients */
	
	background: #F4F4F4;
	background: -moz-linear-gradient(top, #F4F4F4, #EEEEEE);
	background: -webkit-gradient(linear, 0% 0%, 0% 100%, from(#F4F4F4), to(#EEEEEE));
	
	/* Rounded corners */
	
	-moz-border-radius: 5px 5px 0px 0px;
	-webkit-border-radius: 5px 5px 0px 0px;
	border-radius: 5px 5px 0px 0px;
}

#menu li a {
	font-family:Arial, Helvetica, sans-serif;
	font-size:14px; 
	color: #EEEEEE;
	display:block;
	outline:0;
	text-decoration:none;
	text-shadow: 1px 1px 1px #000;
}

#menu li:hover a {
	color:#161616;
	text-shadow: 1px 1px 1px #FFFFFF;
}
#menu li .drop {
	padding-right:21px;
	background:url("img/drop.png") no-repeat right 8px;
}
#menu li:hover .drop {
	background:url("img/drop.png") no-repeat right 7px;
}

And the result is :

Building a CSS3 Mega Drop Down Menu

Step 2: Coding the Drop Down

A “classic” drop down menu usually contains lists nested within parent list items and looks like:

<ul id="menu">
	<li><a href="#">Item 1</a><
		<ul>
			<li><a href="#">Subitem 1</a></li>
			<li><a href="#">Subitem 2</a></li>
			<li><a href="#">Subitem 3</a></li>
		</ul>
	</li>
	<li><a href="#">Item 2</a><
		<ul>
			<li><a href="#">Subitem 1</a></li>
			<li><a href="#">Subitem 2</a></li>
		</ul>
	</li>
</ul>

General Structure

For our Mega Menu, instead of nested lists, we’ll simply use standard DIVs, which will work like any nested list :

<ul id="menu">
	<li><a href="#">Item 1</a>
		<div>
		Drop down Content
		<div>
	</li>
	<li><a href="#">Item 2</a>
		<div>
		Drop down Content
		<div>
	</li>
</ul>

This will be the basic structure for the drop down. The idea behind it is to be able to include any kind of content, such as paragraphs, images, custom lists or a contact form, organized into columns.

Drop Down Containers

Containers with different sizes will hold the entire drop down content. I’ve chosen the tag names according to the number of columns they will contain.

To hide the drop downs, we’ll use absolute positioning with a negative left margin :

position:absolute;
left:-999em;

The background fallback color is the same as the one used for the menu items. Modern browsers will display a gradient starting with #EEEEEE at the top (to match the parent menu item gradient) and ending with #BBBBBB at the bottom:

background:#F4F4F4;
background: -moz-linear-gradient(top, #EEEEEE, #BBBBBB);
background: -webkit-gradient(linear, 0% 0%, 0% 100%, from(#EEEEEE), to(#BBBBBB));

We’ll again use rounded corners, except for the top left one :

-moz-border-radius: 0px 5px 5px 5px;
-webkit-border-radius: 0px 5px 5px 5px;
border-radius: 0px 5px 5px 5px;
.dropdown_1column, 
.dropdown_2columns, 
.dropdown_3columns, 
.dropdown_4columns,
.dropdown_5columns {
	margin:4px auto;
	position:absolute;
	left:-999em; /* Hides the drop down */
	text-align:left;
	padding:10px 5px 10px 5px;
	border:1px solid #777777;
	border-top:none;
	
	/* Gradient background */
	background:#F4F4F4;
	background: -moz-linear-gradient(top, #EEEEEE, #BBBBBB);
	background: -webkit-gradient(linear, 0% 0%, 0% 100%, from(#EEEEEE), to(#BBBBBB));

	/* Rounded Corners */
	-moz-border-radius: 0px 5px 5px 5px;
	-webkit-border-radius: 0px 5px 5px 5px;
	border-radius: 0px 5px 5px 5px;
}

To illustrate this, let’s see how it would look if we hadn’t paid attention to detail:

Building a CSS3 Mega Drop Down Menu

Now here is our example:

Building a CSS3 Mega Drop Down Menu

As you can see, the drop down sticks nicely to its parent menu item.

In order to have a perfect drop down container, we need to specify the width for each one :

.dropdown_1column {width: 140px;}
.dropdown_2columns {width: 280px;}
.dropdown_3columns {width: 420px;}
.dropdown_4columns {width: 560px;}
.dropdown_5columns {width: 700px;}

And to show the drop downs on mouse hover, we’ll simply use :

#menu li:hover .dropdown_1column, 
#menu li:hover .dropdown_2columns, 
#menu li:hover .dropdown_3columns,
#menu li:hover .dropdown_4columns,
#menu li:hover .dropdown_5columns {
	left:-1px;top:auto;
}

Using the Drop Down Containers

Our classes are ready to be included in our menu. We’ll use each one of them starting from the 5-column, layout to the single column drop down :

<ul id="menu">
	<li><a href="#">Home</a></li>
	<li><a href="#" class="drop">5 Columns</a>
		<div class="dropdown_5columns">
		<p>5 Columns content</p>
		</div>
	</li>
	<li><a href="#" class="drop">4 Columns</a>
		<div class="dropdown_4columns">
		<p>4 Columns content</p>
		</div>
	</li>
	<li><a href="#" class="drop">3 Columns</a>
		<div class="dropdown_3columns">
		<p>3 Columns content</p>
		</div>
	</li>
	<li><a href="#" class="drop">2 Columns</a>
		<div class="dropdown_2columns">
		<p>2 Columns content</p>
		</div>
	</li>
	<li><a href="#" class="drop">1 Column</a>
		<div class="dropdown_1column">
		<p>1 Column content</p>
		</div>
	</li>
</ul>

Here is a preview of the code above :

Building a CSS3 Mega Drop Down Menu

Step 3: Creating the Drop Down Container Columns

Now that we have the containers ready, we’ll create columns of increasing sizes, following the principles of the 960 grid system.

.col_1,
.col_2,
.col_3,
.col_4,
.col_5 {
	display:inline;
	float: left;
	position: relative;
	margin-left: 5px;
	margin-right: 5px;
}
.col_1 {width:130px;}
.col_2 {width:270px;}
.col_3 {width:410px;}
.col_4 {width:550px;}
.col_5 {width:690px;}

Using Columns

Here is an example of a drop down containing several columns. In this example, we have different combinations using all kinds of columns :

<ul id="menu">
	<li><a href="#" class="drop">5 Columns</a>
		<div class="dropdown_5columns">
			<div class="col_5">
			<p>This is a 5 Columns content</p>
			</div>
			<div class="col_1">
			<p>This is a 1 Column content</p>
			</div>
			<div class="col_1">
			<p>This is a 1 Column content</p>
			</div>
			<div class="col_1">
			<p>This is a 1 Column content</p>
			</div>
			<div class="col_1">
			<p>This is a 1 Column content</p>
			</div>
			<div class="col_1">
			<p>This is a 1 Column content</p>
			</div>
			<div class="col_4">
			<p>This is a 4 Columns content</p>
			</div>
			<div class="col_1">
			<p>This is a 1 Column content</p>
			</div>
			<div class="col_3">
			<p>This is a 3 Columns content</p>
			</div>
			<div class="col_2">
			<p>This is a 2 Columns content</p>
			</div>
		</div>
	</li>
</ul>

Code preview :

Building a CSS3 Mega Drop Down Menu

Step 4: Aligning to the Right

Now, let’s see how we can align our menu and the drop down content to the right edge of the navigation bar; not only the menu item, but the drop down container should also be changed.

To accomplish this, we’ll add a new class called .menu_right to the parent list item, so we reset the right margin and float it to the right :

#menu .menu_right {
	float:right;
	margin-right:0px;
}

Next, let’s see the drop down. In the previous CSS code, rounded corners were applied to all corners except the left-top one to, in order to match the background of the parent menu item. Now we want this drop down to stick to the right edge of the parent menu item. So, we’ll overwrite the border-radius values with a new class called .align_right, and set the top-right corner to 0.

#menu li .align_right {
	/* Rounded Corners */
	-moz-border-radius: 5px 0px 5px 5px;
	-webkit-border-radius: 5px 0px 5px 5px;
	border-radius: 5px 0px 5px 5px;
}

Last but not least, we want to make the drop down appear on the right; so we’ll use our new class and reset the left value, then make it stick to the right :

#menu li:hover .align_right {
	left:auto;
	right:-1px;
	top:auto;
}

Now it’s ready to be used in the menu :

<li class="menu_right"><a href="#" class="drop">Right</a>
	<div class="dropdown_1column align_right">
		<div class="col_1">
		<p>This is a 1 Column content</p>
		</div>
	</div>
</li>

And a small preview of the code above :

Building a CSS3 Mega Drop Down Menu

Step 5: Adding and Styling Content

Now that we have the whole structure ready, we can add as much content as we want: text, lists, images, etc.

General Stylings

Let’s begin with some basic styling for paragraphs and headings :

#menu p, #menu h2, #menu h3, #menu ul li {
	font-family:Arial, Helvetica, sans-serif;
	line-height:21px;
	font-size:12px;
	text-align:left;
	text-shadow: 1px 1px 1px #FFFFFF;
}
#menu h2 {
	font-size:21px;
	font-weight:400;
	letter-spacing:-1px;
	margin:7px 0 14px 0;
	padding-bottom:14px;
	border-bottom:1px solid #666666;
}
#menu h3 {
	font-size:14px;
	margin:7px 0 14px 0;
	padding-bottom:7px;
	border-bottom:1px solid #888888;
}
#menu p {
	line-height:18px;
	margin:0 0 10px 0;
}
.strong {
	font-weight:bold;
}
.italic {
	font-style:italic;
}

We can apply a nice blue color to the links within the drop down :

#menu li:hover div a {
	font-size:12px;
	color:#015b86;
}
#menu li:hover div a:hover {
	color:#029feb;
}

Lists Stylings

Let’s revamp our lists; we have to reset some styling such as the background color or the borders which are used in the navigation bar :

#menu li ul {
	list-style:none;
	padding:0;
	margin:0 0 12px 0;
}
#menu li ul li {
	font-size:12px;
	line-height:24px;
	position:relative;
	text-shadow: 1px 1px 1px #ffffff;
	padding:0;
	margin:0;
	float:none;
	text-align:left;
	width:130px;
}
#menu li ul li:hover {
	background:none;
	border:none;
	padding:0;
	margin:0;
}

Styling Images

.imgshadow {
	background:#FFFFFF;
	padding:4px;
	border:1px solid #777777;
	margin-top:5px;
	-moz-box-shadow:0px 0px 5px #666666;
	-webkit-box-shadow:0px 0px 5px #666666;
	box-shadow:0px 0px 5px #666666;
}

And to create a paragraph with an image on the left :

.img_left {
	width:auto;
	float:left;
	margin:5px 15px 5px 5px;
}

Text Boxes

To highlight some content, here is an example of a dark box with rounded corners and a subtle inset shadow :

#menu li .black_box {
	background-color:#333333;
	color: #eeeeee;
	text-shadow: 1px 1px 1px #000;
	padding:4px 6px 4px 6px;

	/* Rounded Corners */
	-moz-border-radius: 5px;
	-webkit-border-radius: 5px;
	border-radius: 5px;

	/* Shadow */
	-webkit-box-shadow:inset 0 0 3px #000000;
	-moz-box-shadow:inset 0 0 3px #000000;
	box-shadow:inset 0 0 3px #000000;
}

Restylings Lists

And to finish, here’s another way to style your lists using, again, some CSS3 :

#menu li .greybox li {
	background:#F4F4F4;
	border:1px solid #bbbbbb;
	margin:0px 0px 4px 0px;
	padding:4px 6px 4px 6px;
	width:116px;

	/* Rounded Corners */
	-moz-border-radius: 5px;
	-webkit-border-radius: 5px;
	border-radius: 5px;
}
#menu li .greybox li:hover {
	background:#ffffff;
	border:1px solid #aaaaaa;
	padding:4px 6px 4px 6px;
	margin:0px 0px 4px 0px;
}

Step 6: Handling Browser Compatibility and IE6

All browsers handle hover on non-anchor tags . . . except Internet Explorer 6; so our Mega Menu is still not working with this old browser. We can fix this problem thanks to a behavior file that will add this functionality. You can find it here, and use conditional comments to target IE6 only; more explanations can be found via this article from CSS-Tricks.

To target IE6, we’ll use the following code :

<!--[if IE 6]>
<style>
body {behavior: url("csshover3.htc");}
</style>
<![endif]-->

I’ve used a few PNG files in this tutorial, and, as everyone knows, IE6 doesn’t support transparency so we have different solutions :

  • Convert them to GIF or PNG-8 format
  • Use a script
  • Set a background color other than the default grey with TweakPNG for example

I’ll let you choose the one that fits to your needs. Now, let’s review a full working example.


Final Example

HTML Part

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />

<link rel="stylesheet" href="menu.css" type="text/css" media="screen" />

<title>Mega Drop Down Menu</title>
<!--[if IE 6]>
<style>
body {behavior: url("csshover3.htc");}
#menu li .drop {background:url("img/drop.gif") no-repeat right 8px; 
</style>
<![endif]-->

</head>

<body>

<ul id="menu">
    
    <li><a href="#" class="drop">Home</a><!-- Begin Home Item -->
    
        <div class="dropdown_2columns"><!-- Begin 2 columns container -->
    
            <div class="col_2">
                <h2>Welcome !</h2>
            </div>
    
            <div class="col_2">
                <p>Hi and welcome here ! This is a showcase of the possibilities of this awesome Mega Drop Down Menu.</p>             
                <p>This item comes with a large range of prepared typographic stylings such as headings, lists, etc.</p>             
            </div>
    
            <div class="col_2">
                <h2>Cross Browser Support</h2>
            </div>
            
            <div class="col_1">
                <img src="img/browsers.png" width="125" height="48" alt="" />
            </div>
            
            <div class="col_1">
                <p>This mega menu has been tested in all major browsers.</p>
            </div>
          
        </div><!-- End 2 columns container -->
    
    </li><!-- End Home Item -->

    <li><a href="#" class="drop">5 Columns</a><!-- Begin 5 columns Item -->
    
        <div class="dropdown_5columns"><!-- Begin 5 columns container -->
        
            <div class="col_5">
                <h2>This is an example of a large container with 5 columns</h2>
            </div>
            
            <div class="col_1">
                <p class="black_box">This is a dark grey box text. Fusce in metus at enim porta lacinia vitae a arcu. Sed sed lacus nulla mollis porta quis.</p>
            </div>
            
            <div class="col_1">
                <p>Phasellus vitae sapien ac leo mollis porta quis sit amet nisi. Mauris hendrerit, metus cursus accumsan tincidunt.</p>
            </div>
            
            <div class="col_1">
                <p class="italic">This is a sample of an italic text. Consequat scelerisque. Fusce sed lectus at arcu mollis accumsan at nec nisi porta quis sit amet.</p>
            </div>
            
            <div class="col_1">
                <p>Curabitur euismod gravida ante nec commodo. Nunc dolor nulla, semper in ultricies vitae, vulputate porttitor neque.</p>
            </div>
            
            <div class="col_1">
                <p class="strong">This is a sample of a bold text. Aliquam sodales nisi nec felis hendrerit ac eleifend lectus feugiat scelerisque.</p>
            </div>
        
            <div class="col_5">
                <h2>Here is some content with side images</h2>
            </div>
           
            <div class="col_3">
            
                <img src="img/01.jpg" width="70" height="70" class="img_left imgshadow" alt="" />
                <p>Maecenas eget eros lorem, nec pellentesque lacus. Aenean dui orci, rhoncus sit amet tristique eu, tristique sed odio. Praesent ut interdum elit. Sed in sem mauris. Aenean a commodo mi. Praesent augue lacus.<a href="#">Read more...</a></p>
        
                <img src="img/02.jpg" width="70" height="70" class="img_left imgshadow" alt="" />
                <p>Aliquam elementum felis quis felis consequat scelerisque. Fusce sed lectus at arcu mollis accumsan at nec nisi. Aliquam pretium mollis fringilla. Nunc in leo urna, eget varius metus. Aliquam sodales nisi.<a href="#">Read more...</a></p>
            
            </div>
            
            <div class="col_2">
            
                <p class="black_box">This is a black box, you can use it to highligh some content. Sed sed lacus nulla, et lacinia risus. Phasellus vitae sapien ac leo mollis porta quis sit amet nisi. Mauris hendrerit, metus cursus accumsan tincidunt.Quisque vestibulum nisi non nunc blandit placerat. Mauris facilisis, risus ut lobortis posuere, diam lacus congue lorem, ut condimentum ligula est vel orci. Donec interdum lacus at velit varius gravida. Nulla ipsum risus.</p>
            
            </div>
        
        </div><!-- End 5 columns container -->
    
    </li><!-- End 5 columns Item -->

    <li><a href="#" class="drop">4 Columns</a><!-- Begin 4 columns Item -->
    
        <div class="dropdown_4columns"><!-- Begin 4 columns container -->
        
            <div class="col_4">
                <h2>This is a heading title</h2>
            </div>
            
            <div class="col_1">
            
                <h3>Some Links</h3>
                <ul>
                    <li><a href="#">ThemeForest</a></li>
                    <li><a href="#">GraphicRiver</a></li>
                    <li><a href="#">ActiveDen</a></li>
                    <li><a href="#">VideoHive</a></li>
                    <li><a href="#">3DOcean</a></li>
                </ul>   
                 
            </div>
    
            <div class="col_1">
            
                <h3>Useful Links</h3>
                <ul>
                    <li><a href="#">NetTuts</a></li>
                    <li><a href="#">VectorTuts</a></li>
                    <li><a href="#">PsdTuts</a></li>
                    <li><a href="#">PhotoTuts</a></li>
                    <li><a href="#">ActiveTuts</a></li>
                </ul>   
                 
            </div>
    
            <div class="col_1">
            
                <h3>Other Stuff</h3>
                <ul>
                    <li><a href="#">FreelanceSwitch</a></li>
                    <li><a href="#">Creattica</a></li>
                    <li><a href="#">WorkAwesome</a></li>
                    <li><a href="#">Mac Apps</a></li>
                    <li><a href="#">Web Apps</a></li>
                </ul>   
                 
            </div>
    
            <div class="col_1">
            
                <h3>Misc</h3>
                <ul>
                    <li><a href="#">Design</a></li>
                    <li><a href="#">Logo</a></li>
                    <li><a href="#">Flash</a></li>
                    <li><a href="#">Illustration</a></li>
                    <li><a href="#">More...</a></li>
                </ul>   
                 
            </div>
            
        </div><!-- End 4 columns container -->
    
    </li><!-- End 4 columns Item -->

	<li class="menu_right"><a href="#" class="drop">1 Column</a>
    
		<div class="dropdown_1column align_right">
        
                <div class="col_1">
                
                    <ul class="simple">
                        <li><a href="#">FreelanceSwitch</a></li>
                        <li><a href="#">Creattica</a></li>
                        <li><a href="#">WorkAwesome</a></li>
                        <li><a href="#">Mac Apps</a></li>
                        <li><a href="#">Web Apps</a></li>
                        <li><a href="#">NetTuts</a></li>
                        <li><a href="#">VectorTuts</a></li>
                        <li><a href="#">PsdTuts</a></li>
                        <li><a href="#">PhotoTuts</a></li>
                        <li><a href="#">ActiveTuts</a></li>
                        <li><a href="#">Design</a></li>
                        <li><a href="#">Logo</a></li>
                        <li><a href="#">Flash</a></li>
                        <li><a href="#">Illustration</a></li>
                        <li><a href="#">More...</a></li>
                    </ul>   
                     
                </div>
                
		</div>
        
	</li>

    <li class="menu_right"><a href="#" class="drop">3 columns</a><!-- Begin 3 columns Item -->
    
        <div class="dropdown_3columns align_right"><!-- Begin 3 columns container -->
            
            <div class="col_3">
                <h2>Lists in Boxes</h2>
            </div>
            
            <div class="col_1">
    
                <ul class="greybox">
                    <li><a href="#">FreelanceSwitch</a></li>
                    <li><a href="#">Creattica</a></li>
                    <li><a href="#">WorkAwesome</a></li>
                    <li><a href="#">Mac Apps</a></li>
                    <li><a href="#">Web Apps</a></li>
                </ul>   
    
            </div>
            
            <div class="col_1">
    
                <ul class="greybox">
                    <li><a href="#">ThemeForest</a></li>
                    <li><a href="#">GraphicRiver</a></li>
                    <li><a href="#">ActiveDen</a></li>
                    <li><a href="#">VideoHive</a></li>
                    <li><a href="#">3DOcean</a></li>
                </ul>   
    
            </div>
            
            <div class="col_1">
    
                <ul class="greybox">
                    <li><a href="#">Design</a></li>
                    <li><a href="#">Logo</a></li>
                    <li><a href="#">Flash</a></li>
                    <li><a href="#">Illustration</a></li>
                    <li><a href="#">More...</a></li>
                </ul>   
    
            </div>
            
            <div class="col_3">
                <h2>Here are some image examples</h2>
            </div>
            
            <div class="col_3">
                <img src="img/02.jpg" width="70" height="70" class="img_left imgshadow" alt="" />
                <p>Maecenas eget eros lorem, nec pellentesque lacus. Aenean dui orci, rhoncus sit amet tristique eu, tristique sed odio. Praesent ut interdum elit. Maecenas imperdiet, nibh vitae rutrum vulputate, lorem sem condimentum.<a href="#">Read more...</a></p>
    
                <img src="img/01.jpg" width="70" height="70" class="img_left imgshadow" alt="" />
                <p>Aliquam elementum felis quis felis consequat scelerisque. Fusce sed lectus at arcu mollis accumsan at nec nisi. Aliquam pretium mollis fringilla. Vestibulum tempor facilisis malesuada. <a href="#">Read more...</a></p>
            </div>
        
        </div><!-- End 3 columns container -->
        
    </li><!-- End 3 columns Item -->
</ul>

</body>

</html>

CSS Part

body, ul, li {
	font-size:14px; 
	font-family:Arial, Helvetica, sans-serif;
	line-height:21px;
	text-align:left;
}

/* Navigation Bar */

#menu {
	list-style:none;
	width:940px;
	margin:30px auto 0px auto;
	height:43px;
	padding:0px 20px 0px 20px;

	/* Rounded Corners */
	
	-moz-border-radius: 10px;
	-webkit-border-radius: 10px;
	border-radius: 10px;

	/* Background color and gradients */
	
	background: #014464;
	background: -moz-linear-gradient(top, #0272a7, #013953);
	background: -webkit-gradient(linear, 0% 0%, 0% 100%, from(#0272a7), to(#013953));
	
	/* Borders */
	
	border: 1px solid #002232;

	-moz-box-shadow:inset 0px 0px 1px #edf9ff;
	-webkit-box-shadow:inset 0px 0px 1px #edf9ff;
	box-shadow:inset 0px 0px 1px #edf9ff;
}

#menu li {
	float:left;
	text-align:center;
	position:relative;
	padding: 4px 10px 4px 10px;
	margin-right:30px;
	margin-top:7px;
	border:none;
}

#menu li:hover {
	border: 1px solid #777777;
	padding: 4px 9px 4px 9px;
	
	/* Background color and gradients */
	
	background: #F4F4F4;
	background: -moz-linear-gradient(top, #F4F4F4, #EEEEEE);
	background: -webkit-gradient(linear, 0% 0%, 0% 100%, from(#F4F4F4), to(#EEEEEE));
	
	/* Rounded corners */
	
	-moz-border-radius: 5px 5px 0px 0px;
	-webkit-border-radius: 5px 5px 0px 0px;
	border-radius: 5px 5px 0px 0px;
}

#menu li a {
	font-family:Arial, Helvetica, sans-serif;
	font-size:14px; 
	color: #EEEEEE;
	display:block;
	outline:0;
	text-decoration:none;
	text-shadow: 1px 1px 1px #000;
}

#menu li:hover a {
	color:#161616;
	text-shadow: 1px 1px 1px #FFFFFF;
}
#menu li .drop {
	padding-right:21px;
	background:url("img/drop.png") no-repeat right 8px;
}
#menu li:hover .drop {
	background:url("img/drop.png") no-repeat right 7px;
}

/* Drop Down */

.dropdown_1column, 
.dropdown_2columns, 
.dropdown_3columns, 
.dropdown_4columns,
.dropdown_5columns {
	margin:4px auto;
	float:left;
	position:absolute;
	left:-999em; /* Hides the drop down */
	text-align:left;
	padding:10px 5px 10px 5px;
	border:1px solid #777777;
	border-top:none;
	
	/* Gradient background */
	background:#F4F4F4;
	background: -moz-linear-gradient(top, #EEEEEE, #BBBBBB);
	background: -webkit-gradient(linear, 0% 0%, 0% 100%, from(#EEEEEE), to(#BBBBBB));

	/* Rounded Corners */
	-moz-border-radius: 0px 5px 5px 5px;
	-webkit-border-radius: 0px 5px 5px 5px;
	border-radius: 0px 5px 5px 5px;
}

.dropdown_1column {width: 140px;}
.dropdown_2columns {width: 280px;}
.dropdown_3columns {width: 420px;}
.dropdown_4columns {width: 560px;}
.dropdown_5columns {width: 700px;}

#menu li:hover .dropdown_1column, 
#menu li:hover .dropdown_2columns, 
#menu li:hover .dropdown_3columns,
#menu li:hover .dropdown_4columns,
#menu li:hover .dropdown_5columns {
	left:-1px;
    top:auto;
}

/* Columns */

.col_1,
.col_2,
.col_3,
.col_4,
.col_5 {
	display:inline;
	float: left;
	position: relative;
	margin-left: 5px;
	margin-right: 5px;
}
.col_1 {width:130px;}
.col_2 {width:270px;}
.col_3 {width:410px;}
.col_4 {width:550px;}
.col_5 {width:690px;}

/* Right alignment */

#menu .menu_right {
	float:right;
	margin-right:0px;
}
#menu li .align_right {
	/* Rounded Corners */
	-moz-border-radius: 5px 0px 5px 5px;
    -webkit-border-radius: 5px 0px 5px 5px;
    border-radius: 5px 0px 5px 5px;
}
#menu li:hover .align_right {
	left:auto;
	right:-1px;
	top:auto;
}

/* Drop Down Content Stylings */

#menu p, #menu h2, #menu h3, #menu ul li {
	font-family:Arial, Helvetica, sans-serif;
	line-height:21px;
	font-size:12px;
	text-align:left;
	text-shadow: 1px 1px 1px #FFFFFF;
}
#menu h2 {
	font-size:21px;
	font-weight:400;
	letter-spacing:-1px;
	margin:7px 0 14px 0;
	padding-bottom:14px;
	border-bottom:1px solid #666666;
}
#menu h3 {
	font-size:14px;
	margin:7px 0 14px 0;
	padding-bottom:7px;
	border-bottom:1px solid #888888;
}
#menu p {
	line-height:18px;
	margin:0 0 10px 0;
}

#menu li:hover div a {
	font-size:12px;
	color:#015b86;
}
#menu li:hover div a:hover {
	color:#029feb;
}
.strong {
	font-weight:bold;
}
.italic {
	font-style:italic;
}
.imgshadow {
	background:#FFFFFF;
	padding:4px;
	border:1px solid #777777;
	margin-top:5px;
	-moz-box-shadow:0px 0px 5px #666666;
	-webkit-box-shadow:0px 0px 5px #666666;
	box-shadow:0px 0px 5px #666666;
}
.img_left { /* Image sticks to the left */
	width:auto;
	float:left;
	margin:5px 15px 5px 5px;
}
#menu li .black_box {
	background-color:#333333;
	color: #eeeeee;
	text-shadow: 1px 1px 1px #000;
	padding:4px 6px 4px 6px;

	/* Rounded Corners */
	-moz-border-radius: 5px;
	-webkit-border-radius: 5px;
	border-radius: 5px;

	/* Shadow */
	-webkit-box-shadow:inset 0 0 3px #000000;
	-moz-box-shadow:inset 0 0 3px #000000;
	box-shadow:inset 0 0 3px #000000;
}
#menu li ul {
	list-style:none;
	padding:0;
	margin:0 0 12px 0;
}
#menu li ul li {
	font-size:12px;
	line-height:24px;
	position:relative;
	text-shadow: 1px 1px 1px #ffffff;
	padding:0;
	margin:0;
	float:none;
	text-align:left;
	width:130px;
}
#menu li ul li:hover {
	background:none;
	border:none;
	padding:0;
	margin:0;
}
#menu li .greybox li {
	background:#F4F4F4;
	border:1px solid #bbbbbb;
	margin:0px 0px 4px 0px;
	padding:4px 6px 4px 6px;
	width:116px;

	/* Rounded Corners */
	-moz-border-radius: 5px;
	-webkit-border-radius: 5px;
	border-radius: 5px;
}
#menu li .greybox li:hover {
	background:#ffffff;
	border:1px solid #aaaaaa;
	padding:4px 6px 4px 6px;
	margin:0px 0px 4px 0px;
}

Interesting and Relevant Links


Conclusion

I hope you’ve enjoyed this tutorial on creating mega menus. Thanks for following along!

Guillaume Marty is Pixelworkshop on Codecanyon
Tags: CSScss3
Note: Want to add some source code? Type <pre><code> before it and </code></pre> after it. Find out more
  • Beth

    Thanks for the great tutorial! My site is currently “HTML 4.0 Transitional” (which I can’t change) and this menu requires “XHTML 1.0 Transitional” to work on Internet Explorer. How can I make it work for IE without changing the Doctype? Please advise.

  • jignesh shah

    you are nicely teach about menu and i understand it very well, but teach me about How to create submenu
    using style sheets.(css).

  • mvprzy

    Thank You! I like this mega drop-down menu. I have re-styled the
    One thing I have been struggling with:

    I want to add a Facebook & Twitter link button – a 32×32 png.
    No drop-down, just a link, with the buttons within the menu bar on the right and nicely centered within it.

    HTML:

    <li class=”menu_right noHover”>
    <a class=”button” href=”http:/twitter.com/websitename”><img src=”/images/twitter.png” /></a>
    </li>
    <li class=”menu_right noHover”>
    <a class=”button” href=”http:/twitter.com/websitename”><img src=”/images/facebook.png” /></a>
    </li>

    I have tried a few solutions but nothing seems to remove the border around the links….
    CSS for noHover class:

    #menu li.noHover:hover {
    border: none;
    padding: 0px 0px 0px 0px;
    background: none;
    -moz-border-radius: 0px;
    -webkit-border-radius: 0px;
    border-radius: 0px;
    }

    CSS for button class:

    #menu li a .button {
    float:left;
    display:block;
    margin:0px;
    padding:0px;
    border:none;
    }

    I would think this might be a commonly used item.

    Apparently, I have not yet graduated beyond padawan stage.
    Could a CSS/jQuery Jedi Ninja at least point me in the right direction?

    It might also be nice to be able to use icons with the top level link items.
    I haven’t tried that as of yet, and that is another question…

    Mark

    • Patrich

      Mark,

      you can also add “style” to the img tag directly to remove the border. The example from Paul will work as well but you will loose the border on other images within the page that you may not want to remove.



      Pat

    • http://www.mantisworks.net Ruben Giancarlo Elmo

      You need to contextualize icons individually or entire container to customize socials!

  • http://aykak.com aykak

    Wow Nice tutorial

  • Mukhtiar

    Can anyone suggest me how I can make this menu clickable e.g if i will click the main links like Home then it will open and remain open untill i will click next on that and if I will click on any other then first one close and new will be open.

    thanls

    • http://www.mantisworks.net Ruben Giancarlo Elmo

      Need JS for this :\

  • Heidi

    Thank YOU!!! This helped me soooo much! It’s working PERFECTLY for me.

  • griddte

    This is really cool menu for website, but I dont want to add the menu manually. I would like it fetch menu from database. How can I do it with PHP + SQL. Please help

  • http://www.shakuki.com www.shakuki.com

    I have try this menu and works on my site demo. Thanks for this scripts

  • http://dss ajay

    perfect thinkint,keep it up brooooooo

  • paul

    hey great article ! … btw — i found one issue you may want to adjust to the menu base CSS. When you combine this on a page, say with a jquery slider (e.g. http://codecanyon.net/item/jquery-banner-rotator-slideshow/109046) , you will have overlay issues and will find the menu underneath the slider.

    I fixed this by adding the following to the #menu class..

    position: relative;
    z-index: 2; (or some value higher +1 to the Jquery slider index value)

  • paul

    MRPRVY … try this …

    /*
    hyperlink support
    */
    .special {color: Red }

    a:link {
    color: white;
    text-decoration: none;
    }
    a:visited {
    text-decoration: none;
    color: white;
    }
    a:hover {
    text-decoration: none;
    color: white;
    }
    a:active {
    text-decoration: none;
    color: white;
    }

    a img { border: 0px; }body {
    }

  • patrich

    sorry missed the closing bracket so the code didn’t hold.

    just add the following inside the brackets for the img src: style=”border:none”

    &ltpre name=”code” class=”html&gt
    &ltli class=”menu_right noHover”&gt
    &lta class=”button” href=”http:/twitter.com/websitename”&gt&ltimg src=”/images/twitter.png” style=”border:none” /&gt&lt/a&gt
    &lt/li>
    &ltli class=”menu_right noHover”&gt
    &lta class=”button” href=”http:/twitter.com/websitename”&gt&ltimg src=”/images/facebook.png” style=”border:none” /&gt&lt/a&gt
    &lt/li&gt

  • Rob

    Could anyone offer help on how to make a link within the black boxes appear in a different color from those on the gray background?

    Thank you for your time.

    • Pat

      Rob,

      To add a different style to your link add it to your a href tag after your link in “” add style=”color: white” and close the a href tag. White can be changed to whatever color you are looking to add.

      depending on how you have this list typed up you made need to add the “!important” call as well. It is not the best practice to add important but works in a pinch.

      • Rob

        Thanks, Pat. That was perfect!

  • http://justpep.com justpep

    The menu is very nice especially the multi column drop down, thanks for the example

  • http://www.esquaredmedia.com Evan

    Hi,

    Very nice work.

    However, the navigation and the drop downs don’t seem to render properly in IE9 (meaning that the experience between IE9 and Firefox is very different, and that’s a shame…).

    Any chance you can address that?

  • John Gardiner

    When viewing the menu on an ios device there obviously is no mouse away action so they menu stays open. Is there a trick to make this work in ios? BTW, very cool menu!

    Thanks

  • Jim

    Is there a way to control how fast / slow the menu rolls out? Thanks!

  • d

    thanks for breaking it down so well! Great tuto.

  • Robert

    why is it I cant change the color and rollover cover of all the hypertext?

    Am I missing something?

  • http://blueberrybuilders.com/ Harald

    Great work. Question, how do I make the active tab in an other color than the link.

  • Bala

    Best tutorial and awesome code

  • http://www.constantagitation.com/ Aaron

    Great workup for a menu!

    One observation: is it my imagination, or are the 10 occurrences of “rightright” in the CSS suppose to be “right” ?

    Just wondering.

  • http://studio-449.com fabrice

    Thanks for the sharing, the tuto seems to be working fine so far… Just have a little concern about alignment. Could it be possible to have the div id=dropdown_4columns aligned to the div id=menu instead of the drop? I see how to align left or right to the parent div id=drop but can’t align it to the menu.
    Not the greatest css coder and don’t see howto.
    Thanks for any insight

  • http://www.rightmortgageadvice.co.uk Bedders9

    Hello – I have rehashed this into a slightly different set up but seem to be having some crazy float problems with a banner I want to display directly beneath it. The banner has two elements within a container one floated left the other right, however as soon as I apply float to the the container the background image disappears.

    Should I be using some other type of positioning to avoid problems with this type of navigation? I noticed someone else’s hack around zindex which solved the problem of the drop down appearing underneath the container but still cant use float without the image vanishing. Very perplexed! Cheers and great tutorial.

  • ayip

    Nice plugin. are you have video tutorial how to used this plugin. thanks’, I really appreciate it if you want to give it.
    Regards,
    Ayip

  • http://www.ssbcrack.com vande

    When ever I am placing it , the drop down is getting overlapped and it is not visible, but when I put it inside the main post body in blogger, it is coming nicely. Help me

  • VIncent

    Hi, anyone know, how to set mega menu show with sub mega menu.
    example:

    megamenu1 megamenu2 megamenu3
    this is submenu1 (when mouse hover)
    — show sub megamenu content, balabala…

    thanks.

  • http://www.pelitahati.co/ Ronny Dee

    Awesome tutorial :)

  • James

    Hi,

    I had a problem that when I opened the drop down, the sub-menu’s appeared to the left of the page, rather than directly after/below their parent menu ?

    something to do with: left-1px;top:auto;

  • aby

    mega great tutorial!
    can someone tell me how to change the menu container’s align? i’ve try add “” but no changes. thank you

    • chranton

      It is a typo! I just figured it out. Search the document for “rightright” and replace it with “right”. It is the only inconsistency I found in this great tutorial. I don’t have a sample code since I changed it. It works!

  • aby

    mega great tutorial!
    can someone tell me how to change the menu container’s align? i’ve try add div align=”left” but no changes. thank you

  • subhash

    this tutorial is awesome. thanks

  • evan

    THANK YOU! This tutorial was awsome.

  • Camden Roberts

    This works great. However, why is the menu transparent?

    The menu is see through to my jquery plugin and the text overlaps.

    How do I make the menu non transparent?

  • yas

    Very Nice, thanks

  • paul

    u guys are sooooooooooooo awesome!

    May God bless you for your good deed

  • Ron Mullis

    I very much enjoyed the tutorial and was successful in installing on dreamweaver. However, For some reason, when I place tabbed panels into the content, the drop down menus (from the megamenu) are obscured by the tabbed panels. Anyone have any idea how to fix this?
    PLEASE HELP!
    My basic set-up is:

    • http://www.acronshop.ro Zaharia Constantin

      try to change the z-index for the menu div

  • Giles

    Has anyone worked out how to use HoverIntent plugin on this awesome menu? I would really like to stop the menus flashing down when the mouse passes over them.

    Big thanks to the author for this excellent piece of coding and amazing article explaining it all!

  • http://www.acronshop.ro Zaharia Constantin

    anyone tried to reproduce the menu layout using xml and a recursive function, and render 3 type or data, images, ul and paragraphs?
    or anyone has any idea how?

  • Regiasan

    Has anyone tried this mega menu in ipad and other small devices?
    Please let me know because in my end, it does not work

  • Lily

    This is an awesome menu! Thanks! I’m currently in the process of implementing it in my new web site redesign but had a question? I’ve been able to implement successfully (yay!) but now I wish to take it a bit further by having the drop down boxes appear in the same location kind of like a fixed position but I do not want it to stay in the same position when scrolling. So in a sense, I’d like it to be in a fixed location within a parent div. I’ve played with it a bit but cannot quite get it. Can you also tell me if I would have this capability with the paid version? Huge thanks for any help with this or if you can point me in the right direction.

  • Ricardo

    Really nice clean menu. Thanks. One question? Any thoughts on how we can turn this into a responsive design for tablets and mobile platforms?

    • kaosklub

      This would be awesome. Any idea, anyone?

  • Siddharth

    This is an amazing tutorial. Thanks a bunch !!!

  • Todd Booth

    You made a typo mistake. You are missing the closing brace } in the following:

    #menu li .drop {background:url(“img/drop.gif”) no-repeat right 8px;

    Thanks so much for the great megaMenu!!!

    –todd

  • Todd Booth

    I found two more typo mistakes. In your html explaination file you wrote:

    #menu li .drop {
    padding-right:21px;
    background:url(“img/drop.png”) no-repeat rightright 8px;
    }
    #menu li:hover .drop {
    background:url(“img/drop.png”) no-repeat rightright 7px;
    }

    In the above “rightright” is a mistake. I checked the live demo menu.css which stated the following:

    #menu li .drop {
    padding-right:21px;
    background:url(“img/drop.png”) no-repeat right 8px;
    }
    #menu li:hover .drop {
    background:url(“img/drop.png”) no-repeat right 7px;
    }

    However I recommend that you use alternate code. Firefox 13.01 is very finicky with the use of background. I.E., for many background syntax combinations with URL, it does not work. So I recommend that you change your syntax to the following, which is equivalent but more stable:

    background-image:url(‘img/drop.png’);
    background-repeat: no-repeat;
    background-position: right center;
    background-size: 8px;

    Again, thank you soooo…… much! You are awesome and so kind to share.

    Regards, Todd Booth

  • Todd Booth

    I found another typo. I’ll list all of the similar rightright issues in the following. Your instructions state the following:

    #menu li .drop {
    padding-right:21px;
    background:url(“img/drop.png”) no-repeat rightright 8px;
    }
    #menu li:hover .drop {
    background:url(“img/drop.png”) no-repeat rightright 7px;
    }

    #menu .menu_right {
    float:rightright;
    margin-right:0px;
    }

    I suggest you do a search of “rightright” to find all of those mistakes (which was caused when you did a find/replace.

    Again, thanks for great work!!!

    Regards, Todd Booth

    • http://www.guitarmusician.com/ Shell G

      Hi Todd, you seem to be pretty knowledgeable and I was wondering if you could tell me how to add a sub menu to the items in the 1 Column?

      thanks

  • http://vangadgets.co.uk Danny UK

    Shame this doesn’t work with

    Does anyone know of a mega menu that will… or a tweak that can get this working on our site as we can’t change this doc type (throws the whole design right out!)

  • http://vangadgets.co.uk Danny UK

    Shame this Mega Menu doesn’t work with .

    Does anyone know of a mega menu that will… or a tweak that can get this working on our site as we can’t change this doc type (throws the whole design right out!)

    Please help!!! :)

  • http://vangadgets.co.uk Danny UK

    Shame this Mega Menu doesn’t work with

    DOCTYPE HTML PUBLIC -//W3C//DTD HTML 4.0 Transitional//EN

    Does anyone know of a mega menu that will… or a tweak that can get this working on our site as we can’t change this doc type (throws the whole design right out!)

    Please help!!! :)

  • Brent

    There is no class ‘Simple’ in CSS for Drop down column 1?