<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>Design Reviver &#187; menu</title>
	<atom:link href="http://designreviver.com/tag/menu/feed/" rel="self" type="application/rss+xml" />
	<link>http://designreviver.com</link>
	<description></description>
	<lastBuildDate>Tue, 07 Feb 2012 14:15:49 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.2.1</generator>
		<item>
		<title>Tips for Creating a Nice Drop Down Menu Effect</title>
		<link>http://designreviver.com/tips/for-creating-a-nice-drop-down-menu-effect/</link>
		<comments>http://designreviver.com/tips/for-creating-a-nice-drop-down-menu-effect/#comments</comments>
		<pubDate>Fri, 28 May 2010 09:48:36 +0000</pubDate>
		<dc:creator>speckyboy</dc:creator>
				<category><![CDATA[Tips]]></category>
		<category><![CDATA[css]]></category>
		<category><![CDATA[design]]></category>
		<category><![CDATA[design news]]></category>
		<category><![CDATA[html]]></category>
		<category><![CDATA[javascript]]></category>
		<category><![CDATA[jquery]]></category>
		<category><![CDATA[menu]]></category>
		<category><![CDATA[navigation]]></category>
		<category><![CDATA[web design]]></category>

		<guid isPermaLink="false">http://designreviver.com/?p=7220</guid>
		<description><![CDATA[Within web design there are a multitude of solutions and techniques that cover the same problem. No solution is entirely correct, and none are entirely wrong. That is the beauty, and sometimes the agony, of web design. Sometimes you just want the most basic and simplest technique to solve a popular problem, and that is [...]]]></description>
			<content:encoded><![CDATA[<div class="KonaBody"><p>Within web design there are a multitude of solutions and techniques that cover the same problem. No solution is entirely correct, and none are entirely wrong. That is the beauty, and sometimes the agony, of web design.</p>
<p>Sometimes you just want the most basic and simplest technique to solve a popular problem, and that is what today&#8217;s <a href="http://redirectingat.com?id=&xs=1&url=http%3A%2F%2Fanswers.designreviver.com%2F&sref=rss">Design Reviver Answers</a> question covers: How do you create a nice drop down menu effect? <br /><span id="more-7220"></span></p>
<p>You can leave a comment below or you can leave your solution on the original posted question on <a href="http://redirectingat.com?id=&xs=1&url=http%3A%2F%2Fanswers.designreviver.com%2F234%2F&sref=rss">Answers</a>.</p>
<p><!--more--></p>
<h4>How do you create a nice drop down menu effect?</h4>
<p><a href="http://redirectingat.com?id=&xs=1&url=http%3A%2F%2Fanswers.designreviver.com%2F234%2F&sref=rss"><img src="http://designreviver.com/wp-content/uploads/2010/05/create_menu_01.jpg" alt="How do i create a nice drop down menu effect?" width="520"></a><br />
This question was originally asked by <a href="http://redirectingat.com?id=&xs=1&url=http%3A%2F%2Fanswers.designreviver.com%2Fmember%2F100&sref=rss">Elisabett Monroy</a>, and you will find the favorite (as voted by Answers users)  solution below:</p>
<p>Answer from <a href="http://redirectingat.com?id=&xs=1&url=http%3A%2F%2Fanswers.designreviver.com%2Fmember%2F101&sref=rss"><strong>Rubacode</strong></a>:</p>
<p><a href="http://redirectingat.com?id=&xs=1&url=http%3A%2F%2Fanswers.designreviver.com%2F234%2F&sref=rss"><img src="http://designreviver.com/wp-content/uploads/2010/05/create_menu_03.jpg" alt="How do you create a nice drop down menu effect?" width="520"></a></p>
<p>&#8230;and here is the code for the menu:</p>
<p><strong>Now the CSS for Styling:</strong><br />
<code>
<pre>
ul.topnav {
    list-style: None;
    padding: 0 20px;
    margin: 0;
    float: Left;
    width: 920px;
    background: #222;
    font-size: 1.2em;
    background: Url(topnav_bg.gif) repeat-x;
}
ul.topnav li {
    float: Left;
    margin: 0;
    padding: 0 15px 0 0;
    position: Relative; /*--Declare X and Y axis base for sub navigation--*/
}
ul.topnav li a{
    padding: 10px 5px;
    color: #fff;
    display: Block;
    text-decoration: None;
    float: Left;
}
ul.topnav li a:hover{
    background: Url(topnav_hover.gif) no-repeat center top;
}
ul.topnav li span { /*--Drop down trigger styles--*/
    width: 17px;
    height: 35px;
    float: Left;
    background: Url(subnav_btn.gif) no-repeat center top;
}
ul.topnav li span.subhover {background-position: Center bottom; cursor: Pointer;} /*--Hover effect for trigger--*/
ul.topnav li ul.subnav {
    list-style: None;
    position: Absolute; /*--Important - Keeps subnav from affecting main navigation flow--*/
    left: 0; top: 35px;
    background: #333;
    margin: 0; padding: 0;
    display: None;
    float: Left;
    width: 170px;
    border: 1px solid #111;
}
ul.topnav li ul.subnav li{
    margin: 0; padding: 0;
    border-top: 1px solid #252525; /*--Create bevel effect--*/
    border-bottom: 1px solid #444; /*--Create bevel effect--*/
    clear: Both;
    width: 170px;
}
html ul.topnav li ul.subnav li a {
    float: Left;
    width: 145px;
    background: #333 url(dropdown_linkbg.gif) no-repeat 10px center;
    padding-left: 20px;
}
html ul.topnav li ul.subnav li a:hover { /*--Hover effect for subnav links--*/
    background: #222 url(dropdown_linkbg.gif) no-repeat 10px center;
}</pre>
<p></code></p>
<p><strong>And a little bit of jQuery:</strong><br />
<code>
<pre>
$(document).ready(function(){

    $("ul.subnav").parent().append("<span></span>"); //Only shows drop down trigger when js is enabled (Adds empty span tag after ul.subnav*)

    $("ul.topnav li span").click(function() { //When trigger is clicked...

        //Following events are applied to the subnav itself (moving subnav up and down)
        $(this).parent().find("ul.subnav").slideDown('fast').show(); //Drop down the subnav on click

        $(this).parent().hover(function() {
        }, function(){
            $(this).parent().find("ul.subnav").slideUp('slow'); //When the mouse hovers out of the subnav, move it back up
        });

        //Following events are applied to the trigger (Hover events for the trigger)
        }).hover(function() {
            $(this).addClass("subhover"); //On hover over, add class "subhover"
        }, function(){    //On Hover Out
            $(this).removeClass("subhover"); //On hover out, remove class "subhover"
    });

});</pre>
<p></code></p>
<p>This solution is pretty straight forward and very easy to implement, do you have a better solution? We would love to hear about it.</p>
<p>You can leave your solution below in the comment section, or you can leave an answer/solution here: <a href="http://redirectingat.com?id=&xs=1&url=http%3A%2F%2Fanswers.designreviver.com%2F14090%2F&sref=rss">How do I create a nice drop down menu effect?</a> on Answers.</p>
<h4>Unanswered Answers</h4>
<p>Can you help with this weeks unanswered questions?</p>
<ol>
<li><a href="http://redirectingat.com?id=&xs=1&url=http%3A%2F%2Fanswers.designreviver.com%2F16261%2F&sref=rss">Is it possible to Change the Google Maps API Key Dynamically Using JavaScript?</a></li>
<li><a href="http://redirectingat.com?id=&xs=1&url=http%3A%2F%2Fanswers.designreviver.com%2F16258%2F&sref=rss">Need to get the XML content of a node as a string?</a></li>
<li><a href="http://redirectingat.com?id=&xs=1&url=http%3A%2F%2Fanswers.designreviver.com%2F16202%2F&sref=rss">What Do I Need to Parse Content With Regular Expressions Using jQuery?</a></li>
<li><a href="http://redirectingat.com?id=&xs=1&url=http%3A%2F%2Fanswers.designreviver.com%2F16201%2F&sref=rss">How Can I Convert HTML Entities to Unicode Character In JavaScript?</a></li>
<li><a href="http://redirectingat.com?id=&xs=1&url=http%3A%2F%2Fanswers.designreviver.com%2F16064%2F&sref=rss">What&#39;s a Good Way to Refresh/Load a Web Page for Every 10 Seconds to View Updated Information?</a></li>
<li><a href="http://redirectingat.com?id=&xs=1&url=http%3A%2F%2Fanswers.designreviver.com%2F16061%2F&sref=rss">Does Anyone Know of Any Browsers that May Have Problems Caching XMLHTTPRequest Responses?</a></li>
<li><a href="http://redirectingat.com?id=&xs=1&url=http%3A%2F%2Fanswers.designreviver.com%2F16060%2F&sref=rss">How Can I Get a Div to Automatically Adjust to the Size of the Background I Set for it Without Setting a Specific Height for it?</a></li>
<li><a href="http://redirectingat.com?id=&xs=1&url=http%3A%2F%2Fanswers.designreviver.com%2F15823%2F&sref=rss">What&#39;s a Good Way to Test Connectivity in PHP?</a></li>
<li><a href="http://redirectingat.com?id=&xs=1&url=http%3A%2F%2Fanswers.designreviver.com%2F15751%2F&sref=rss">How Can I Keep a Centered Background Image from Breaking the Layout If the Browser Window is Resized?</a></li>
<li><a href="http://redirectingat.com?id=&xs=1&url=http%3A%2F%2Fanswers.designreviver.com%2F15750%2F&sref=rss">What File Permissions Should Be Set for Uploaded Files?</a></li>
</ol>
<p>Thanks again, firstly to everyone who asked a question, but most importantly thanks to everyone that took the time to offer always helpful and useful answers.</p>
</div>]]></content:encoded>
			<wfw:commentRss>http://designreviver.com/tips/for-creating-a-nice-drop-down-menu-effect/feed/</wfw:commentRss>
		<slash:comments>8</slash:comments>
		</item>
		<item>
		<title>The Best of Web Design Menu Inspiration</title>
		<link>http://designreviver.com/inspiration/the-best-of-web-design-menu-inspiration/</link>
		<comments>http://designreviver.com/inspiration/the-best-of-web-design-menu-inspiration/#comments</comments>
		<pubDate>Thu, 04 Mar 2010 11:28:42 +0000</pubDate>
		<dc:creator>speckyboy</dc:creator>
				<category><![CDATA[Inspiration]]></category>
		<category><![CDATA[design]]></category>
		<category><![CDATA[design news]]></category>
		<category><![CDATA[html]]></category>
		<category><![CDATA[javascript]]></category>
		<category><![CDATA[jquery]]></category>
		<category><![CDATA[menu]]></category>
		<category><![CDATA[navigation]]></category>
		<category><![CDATA[usability]]></category>
		<category><![CDATA[web design]]></category>

		<guid isPermaLink="false">http://designreviver.com/?p=5794</guid>
		<description><![CDATA[You could have the best website in the world with the best content ever, yet without a decent navigation system it would all be worthless. There are certain criteria you need to follow when designing your menu &#8211; it needs to only stands out and be obvious of its purpose, it also needs to match [...]]]></description>
			<content:encoded><![CDATA[<div class="KonaBody"><p>You could have the best website in the world with the best content ever, yet without a decent navigation system it would all be worthless. There are certain criteria you need to follow when designing your menu &#8211;  it needs to only stands out and be obvious of its purpose, it also needs to match the style of your sites design and most importantly it needs to be usable, meaning your visitors can understand it and easily use it.<br /><span id="more-5794"></span></p>
<p>For today&#8217;s news we showcase the best in web design navigation and menus for your inspiration.</p>
<h4><a href="http://redirectingat.com?id=&xs=1&url=http%3A%2F%2Fwww.problogdesign.com%2Finspiration%2F40-creative-navigation-menus%2F&sref=rss">40 Creative Navigation Menus</a></h4>
<p><a href="http://redirectingat.com?id=&xs=1&url=http%3A%2F%2Fwww.problogdesign.com%2Finspiration%2F40-creative-navigation-menus%2F&sref=rss"><img src="http://designreviver.com/wp-content/uploads/2010/03/menunav1.jpg" alt="Menu Inspiration" /></a></p>
<p><a href="http://redirectingat.com?id=&xs=1&url=http%3A%2F%2Fwww.problogdesign.com%2Finspiration%2F40-creative-navigation-menus%2F&sref=rss"><img src="http://designreviver.com/wp-content/uploads/2010/03/menunav2.jpg" alt="Menu Inspiration" /></a></p>
<p>In this article from ProBlogDesign they have pulled together some of the best designed navigation bars (both horizontal and vertical) to help give you some ideas to enhance your own navigation.</p>
<p><a href="http://redirectingat.com?id=&xs=1&url=http%3A%2F%2Fwww.problogdesign.com%2Finspiration%2F40-creative-navigation-menus%2F&sref=rss">40 Creative Navigation Menus</a></p>
<h4><a href="http://redirectingat.com?id=&xs=1&url=http%3A%2F%2Fdesignm.ag%2Finspiration%2Fmega-menus-showcase%2F&sref=rss">25 Mega Menus for Your Design Inspiration</a></h4>
<p><a href="http://redirectingat.com?id=&xs=1&url=http%3A%2F%2Fdesignm.ag%2Finspiration%2Fmega-menus-showcase%2F&sref=rss"><img src="http://designreviver.com/wp-content/uploads/2010/03/menunav3.jpg" alt="Menu Inspiration" /></a></p>
<p><a href="http://redirectingat.com?id=&xs=1&url=http%3A%2F%2Fdesignm.ag%2Finspiration%2Fmega-menus-showcase%2F&sref=rss"><img src="http://designreviver.com/wp-content/uploads/2010/03/menunav4.jpg" alt="Menu Inspiration" /></a></p>
<p>Mega menus are a current popular web design trend that take drop down menus a bigger step forward in an attempt to make it easier for visitors to navigate through a larger site.</p>
<p><a href="http://redirectingat.com?id=&xs=1&url=http%3A%2F%2Fdesignm.ag%2Finspiration%2Fmega-menus-showcase%2F&sref=rss">25 Mega Menus for Your Design Inspiration</a></p>
<h4><a href="http://redirectingat.com?id=&xs=1&url=http%3A%2F%2Fwebdesignledger.com%2Finspiration%2Fa-showcase-of-website-navigations-with-serious-click-appeal&sref=rss">A Showcase of Website Navigations with Serious Click Appeal</a></h4>
<p><a href="http://redirectingat.com?id=&xs=1&url=http%3A%2F%2Fwebdesignledger.com%2Finspiration%2Fa-showcase-of-website-navigations-with-serious-click-appeal&sref=rss"><img src="http://designreviver.com/wp-content/uploads/2010/03/menunav5.jpg" alt="Menu Inspiration" /></a></p>
<p><a href="http://redirectingat.com?id=&xs=1&url=http%3A%2F%2Fwebdesignledger.com%2Finspiration%2Fa-showcase-of-website-navigations-with-serious-click-appeal&sref=rss"><img src="http://designreviver.com/wp-content/uploads/2010/03/menunav6.jpg" alt="Menu Inspiration" /></a></p>
<p>In this article you will find a showcase of websites that successfully achieve &quot;Navigations with Serious Click Appeal&quot; in a very stylish way. </p>
<p><a href="http://redirectingat.com?id=&xs=1&url=http%3A%2F%2Fwebdesignledger.com%2Finspiration%2Fa-showcase-of-website-navigations-with-serious-click-appeal&sref=rss">A Showcase of Website Navigations with Serious Click Appeal</a></p>
<h4><a href="http://redirectingat.com?id=&xs=1&url=http%3A%2F%2Fwww.cssmenusamples.com%2F&sref=rss">CSS Menu Samples</a></h4>
<p><a href="http://redirectingat.com?id=&xs=1&url=http%3A%2F%2Fwww.cssmenusamples.com%2F&sref=rss"><img src="http://designreviver.com/wp-content/uploads/2010/03/menunav7.jpg" alt="Menu Inspiration" /></a></p>
<p>With over 100+ menus on display in this showcase, in every possible conceivable format (CSS, Javascript, Flash&#8230;), in almost every possible style (vertical, horizontal&#8230;), you are practically guaranteed to find inspiration.</p>
<p><a href="http://redirectingat.com?id=&xs=1&url=http%3A%2F%2Fwww.cssmenusamples.com%2F&sref=rss">CSS Menu Samples</a></p>
</div>]]></content:encoded>
			<wfw:commentRss>http://designreviver.com/inspiration/the-best-of-web-design-menu-inspiration/feed/</wfw:commentRss>
		<slash:comments>16</slash:comments>
		</item>
		<item>
		<title>30 Best CSS Techniques for a Unique Navigation</title>
		<link>http://designreviver.com/tips/30-best-css-techniques-for-a-unique-navigation/</link>
		<comments>http://designreviver.com/tips/30-best-css-techniques-for-a-unique-navigation/#comments</comments>
		<pubDate>Wed, 23 Dec 2009 10:45:03 +0000</pubDate>
		<dc:creator>Joel Reyes</dc:creator>
				<category><![CDATA[Tips]]></category>
		<category><![CDATA[css]]></category>
		<category><![CDATA[css techniques]]></category>
		<category><![CDATA[jquery]]></category>
		<category><![CDATA[menu]]></category>
		<category><![CDATA[navigation]]></category>

		<guid isPermaLink="false">http://designreviver.com/?p=4114</guid>
		<description><![CDATA[CSS is a very important element of what we call a &#8220;structurally sound&#8221; web design. CSS turns strips of code and interactive features into a working design. This is especially true for CSS based menus. Giving your users a creative way to interact with pages, categories, and other aspects of your site is a great [...]]]></description>
			<content:encoded><![CDATA[<div class="KonaBody"><p><strong>CSS is a very important element</strong> of what we call a &#8220;<strong>structurally sound</strong>&#8221; web design. CSS turns strips of code and interactive features into a working design. This is especially true for CSS based menus. Giving your users a creative way to interact with pages, categories, and other aspects of your site is a great way to keep them coming back. <span id="more-4114"></span>Not only that, but your navigation will be easily accessible since it will stand-out. Your users won&#8217;t get lost, they&#8217;ll always know how to get to where they need.</p>
<p>If you want to find out the different CSS features you can incorporate into your navigation, it&#8217;s important that you view other menus as inspiration, and you know how they work. Below we&#8217;ve hand-selected <strong>30 Best CSS Techniques for a Unique Navigation</strong> that are sure to bring creativity to your menu.</p>
<h2>Advanced CSS Menu</h2>
<p><a href="http://redirectingat.com?id=&xs=1&url=http%3A%2F%2Fwww.webdesignerwall.com%2Ftutorials%2Fadvanced-css-menu%2F&sref=rss"><img src="http://designreviver.com/wp-content/uploads/2009/12/css-1.jpg" alt="" /></a></p>
<p>An in-depth, creative navigation tutorial.</p>
<h2>Create Vimeo-Like Top Navigation</h2>
<p><a href="http://redirectingat.com?id=&xs=1&url=http%3A%2F%2Fwww.jankoatwarpspeed.com%2Fpost%2F2009%2F01%2F19%2FCreate-Vimeo-like-top-navigation.aspx&sref=rss"><img src="http://designreviver.com/wp-content/uploads/2009/12/css-2.jpg" alt="" /></a></p>
<p>A top navigation tutorial on virtually the same menu as Vimeo.com; structure wise. When you hover over the search box, a drop down menu appears and it gives you a few customizable options.</p>
<h2>Overlapping Menu</h2>
<p><a href="http://redirectingat.com?id=&xs=1&url=http%3A%2F%2Fwww.cssbake.com%2Fcookbook%2Foverlap-that-menu%2F&sref=rss"><img src="http://designreviver.com/wp-content/uploads/2009/12/css-3-1.jpg" alt="" /></a></p>
<p>With this tutorial you&#8217;re able to create a menu that overlaps. It&#8217;s a pretty nice effect for a unique site.</p>
<h2>Centered Tabs with CSS</h2>
<p><a href="http://redirectingat.com?id=&xs=1&url=http%3A%2F%2F24ways.org%2F2005%2Fcentered-tabs-with-css&sref=rss"><img src="http://designreviver.com/wp-content/uploads/2009/12/css-4.jpg" alt="" /></a></p>
<p>If you&#8217;re looking for an alternative to the sliding doors method, then this centered tab css tutorial is just what you need. It fully centers the tab in you navigation menu, and eliminates those left or right aligned mishaps.</p>
<h2>Scalable CSS Based Breadcrumbs</h2>
<p><a href="http://redirectingat.com?id=&xs=1&url=http%3A%2F%2Fveerle.duoh.com%2Fblog%2Fcomments%2Fsimple_scalable_css_based_breadcrumbs%2F&sref=rss"><img src="http://designreviver.com/wp-content/uploads/2009/12/css-5.jpg" alt="" /></a></p>
<p>With this navigation technique the usability of your menu can increase. The code is simple and it only uses 6 CSS styles.</p>
<h2>CSS Drop-Down Menu Framework</h2>
<p><a href="http://redirectingat.com?id=&xs=1&url=http%3A%2F%2Flwis.net%2Ffree-css-drop-down-menu%2F&sref=rss"><img src="http://designreviver.com/wp-content/uploads/2009/12/css-6.jpg" alt="" /></a></p>
<p>This menu seperates HTML from CSS, and categorizes CSS types. You can create a nice drop-down effect.</p>
<h2>Turning a list into a navigation bar</h2>
<p><a href="http://redirectingat.com?id=&xs=1&url=http%3A%2F%2Fwww.456bereastreet.com%2Farchive%2F200501%2Fturning_a_list_into_a_navigation_bar%2F&sref=rss"><img src="http://designreviver.com/wp-content/uploads/2009/12/css-7.jpg" alt="" /></a></p>
<p>Turn your menu list into a navigation bar with a background image structured through CSS.</p>
<h2>Advanced CSS Menu Trick</h2>
<p><a href="http://redirectingat.com?id=&xs=1&url=http%3A%2F%2Fwww.3point7designs.com%2Fblog%2F2007%2F12%2F22%2Fadvanced-css-menu-trick%2F&sref=rss"><img src="http://designreviver.com/wp-content/uploads/2009/12/css-8.jpg" alt="" /></a></p>
<p>You can shift the focus of the user’s attention to the menu items you&#8217;re not hovering over. It creates a nice blur effect.</p>
<h2>JavaScript Dropdown Menu with Multi Levels</h2>
<p><a href="http://redirectingat.com?id=&xs=1&url=http%3A%2F%2Fwww.leigeber.com%2F2008%2F11%2Fdrop-down-menu%2F&sref=rss"><img src="http://designreviver.com/wp-content/uploads/2009/12/css-9.jpg" alt="" /></a></p>
<p>This multi-level drop-down menu allows you to define several different sub navigations.</p>
<h2>Hidden Tab Menus</h2>
<p><a href="http://redirectingat.com?id=&xs=1&url=http%3A%2F%2Fwww.cssplay.co.uk%2Fmenus%2Fhidden.html&sref=rss"><img src="http://designreviver.com/wp-content/uploads/2009/12/css-10.jpg" alt="" /></a></p>
<p>This is a simple hidden tab menu that onfolds when you hover over the menu icon.</p>
<h2>Inverted Sliding Doors Tabs</h2>
<p><a href="http://redirectingat.com?id=&xs=1&url=http%3A%2F%2Fwww.456bereastreet.com%2Flab%2Finverted_tabs%2F&sref=rss"><img src="http://designreviver.com/wp-content/uploads/2009/12/css-11.jpg" alt="" /></a></p>
<p>Here you&#8217;ll find a creative sliding doors technique that lets you work with inverted tabs. Inverted tabs means that the bottom tab of the one you would currently be onis lower and is left or right aligned.</p>
<h2>Son of Suckerfish Dropdowns</h2>
<p><a href="http://redirectingat.com?id=&xs=1&url=http%3A%2F%2Fwww.htmldog.com%2Farticles%2Fsuckerfish%2Fdropdowns%2F&sref=rss"><img src="http://designreviver.com/wp-content/uploads/2009/12/css-12.jpg" alt="" /></a></p>
<p>This is a easy to install and completely accessable dropdown navigation menu. Your menu can also have multiple-levels as well.</p>
<h2>MenuMatic: Vertical Menu Example</h2>
<p><a><img src="http://designreviver.com/wp-content/uploads/2009/12/css-13.jpg" alt="" /></a></p>
<p>MenuMatic is a MooTools class that takes a sematic ordered or unordered list of links and turns it into a dynamic drop down menu system.</p>
<h2>Circular Menu with Sub-Menus</h2>
<p><a href="http://redirectingat.com?id=&xs=1&url=http%3A%2F%2Fwww.cssplay.co.uk%2Fmenus%2Fcircular-sub.html&sref=rss"><img src="http://designreviver.com/wp-content/uploads/2009/12/css-14.jpg" alt="" /></a></p>
<p>Nice tutorial for a circular menu that lets you add a sub menu level of smaller icons. It adds a smooth effect to the navigation process.</p>
<h2>Sexy Drop Down Menu with jQuery and CSS</h2>
<p><a href="http://redirectingat.com?id=&xs=1&url=http%3A%2F%2Fwww.noupe.com%2Ftutorial%2Fdrop-down-menu-jquery-css.html&sref=rss"><img src="http://designreviver.com/wp-content/uploads/2009/12/css-15.jpg" alt="" /></a></p>
<p>With this tutorial you&#8217;ll learn how to create a &#8220;sexy&#8221; drop down menu that will use CSS and jQuery to create a drop down effect.</p>
<h2>CSS Sprite Navigation Tutorial : Ehousestudio</h2>
<p><a href="http://redirectingat.com?id=&xs=1&url=http%3A%2F%2Fwww.ehousestudio.com%2Fblog%2Fview%2Fcss_sprite_navigation_tutorial&sref=rss"><img src="http://designreviver.com/wp-content/uploads/2009/12/css-16.jpg" alt="" /></a></p>
<p>This tutorial will help you build a succesful CSS navigation using sprite images. You&#8217;ll be able to enhance the load time of your menu as well.</p>
<h2>Rounded corner CSS navigation bar with jQuery</h2>
<p><a href="http://redirectingat.com?id=&xs=1&url=http%3A%2F%2Fwww.frinity.com%2Fposts%2Fcss%2Frounded-corner-css-navigation-bar-using-jquery&sref=rss"><img src="http://designreviver.com/wp-content/uploads/2009/12/css-17.jpg" alt="" /></a></p>
<p>You&#8217;ll learn how to add some nice round corner effect to your anchor elements with jQuery, for your navigation, without using any image.</p>
<h2>Designing the Digg Header</h2>
<p><a href="http://redirectingat.com?id=&xs=1&url=http%3A%2F%2Fcss-tricks.com%2Fdesigning-the-digg-header-how-to-download%2F&sref=rss"><img src="http://designreviver.com/wp-content/uploads/2009/12/css-18.jpg" alt="" /></a></p>
<p>This menu contains a fluid width, and enables you to develop a smooth drop-down effect where you can place emphasis on important sub-menus.</p>
<h2>Mac Style Dock Menu Navigation Bar in CSS</h2>
<p><a href="http://redirectingat.com?id=&xs=1&url=http%3A%2F%2Fwww.ndesign-studio.com%2Fblog%2Fmac%2Fcss-dock-menu&sref=rss"><img src="http://designreviver.com/wp-content/uploads/2009/12/css-19.jpg" alt="" /></a></p>
<p>This more for those Mac fanatics or if you have an Apple themed site and wish to enhance the look of your site by implementing a menu that fits your overall design.</p>
<h2>The Menu menu</h2>
<p><a href="http://redirectingat.com?id=&xs=1&url=http%3A%2F%2Fwww.cssplay.co.uk%2Fmenu%2Fmenu_map.html&sref=rss"><img src="http://designreviver.com/wp-content/uploads/2009/12/css-20.jpg" alt="" /></a></p>
<p>This a great CSS menu that &#8220;comes to life&#8221; after hovering over a menu item, this automatically reveals a sub-menu.</p>
<h2>CSS Navigation with Glowing Icons</h2>
<p><a href="http://redirectingat.com?id=&xs=1&url=http%3A%2F%2Fwww.hv-designs.co.uk%2Ftutorials%2Fcss_navigation2%2Fnavigation.html&sref=rss"><img src="http://designreviver.com/wp-content/uploads/2009/12/css-21-1.jpg" alt="" /></a></p>
<p>Here you&#8217;ll find a beautiful CSS menu technique for creating glowing icons.</p>
<h2>Woody CSS Menu</h2>
<p><a href="http://redirectingat.com?id=&xs=1&url=http%3A%2F%2Fwww.styledmenus.com%2F2009%2F01%2Fwoody-css-menu.html&sref=rss"><img src="http://designreviver.com/wp-content/uploads/2009/12/css-22.jpg" alt="" /></a></p>
<p>Woody is a CSS menu that’s simply ready to use and has been tested on several browsers such as Internet Explorer and Firefox.</p>
<h2>CSS Block Navigation Menu</h2>
<p><a href="http://redirectingat.com?id=&xs=1&url=http%3A%2F%2Fvikiworks.com%2F2008%2F03%2F29%2Fa-css-block-navigation-menu%2F&sref=rss"><img src="http://designreviver.com/wp-content/uploads/2009/12/css-23.jpg" alt="" /></a></p>
<p>This CSS menu technique allows you to develop a navigation menu that has item with descriptions.</p>
<h2>CSS Hover Button</h2>
<p><a href="http://redirectingat.com?id=&xs=1&url=http%3A%2F%2Fwww.nucopy.com%2F&sref=rss"><img src="http://designreviver.com/wp-content/uploads/2009/12/css-24.jpg" alt="" /></a></p>
<p>Create CSS button-style navigation menu by checking out this excellent tutorial.</p>
<h2>Matte CSS Menu</h2>
<p><a href="http://redirectingat.com?id=&xs=1&url=http%3A%2F%2F13styles.com%2Fcss-menus%2Fmatte%2F&sref=rss"><img src="http://designreviver.com/wp-content/uploads/2009/12/css-25.jpg" alt="" /></a></p>
<p>Matte is a simple CSS menu with rounded corners using two small images only from 13styles.</p>
<h2>Fancy Sliding Tab Menu</h2>
<p><a href="http://redirectingat.com?id=&xs=1&url=http%3A%2F%2Fwww.andrewsellick.com%2Fexamples%2FtabslideV2%2F&sref=rss"><img src="http://designreviver.com/wp-content/uploads/2009/12/css-26.jpg" alt="" /></a></p>
<p>Beautiful navigation technique that brings down the menu you&#8217;re currently on by hovering over the next one.</p>
<h2>Aplus ADxMenu</h2>
<p><a href="http://redirectingat.com?id=&xs=1&url=http%3A%2F%2Faplus.co.yu%2Fadxmenu%2Fexamples%2Fhtb%2F&sref=rss"><img src="http://designreviver.com/wp-content/uploads/2009/12/css-27.jpg" alt="" /></a></p>
<p>This technique is a pretty basic example of an organized and well designed menu tabs.</p>
<h2>DOMTab</h2>
<p><a href="http://redirectingat.com?id=&xs=1&url=http%3A%2F%2Fonlinetools.org%2Ftools%2Fdomtabdata%2F&sref=rss"><img src="http://designreviver.com/wp-content/uploads/2009/12/css-28.jpg" alt="" /></a></p>
<p>DOMtab is a JavaScript that turns a list of links connected to content sections into a tab interface.</p>
<h2>Drop Down Menu with Nested Submenus</h2>
<p><a href="http://redirectingat.com?id=&xs=1&url=http%3A%2F%2Fwww.emanuelblagonic.com%2F2006%2F10%2F11%2Fcreate-your-own-drop-down-menu-with-nested-submenus-using-css-and-a-little-javascript%2F&sref=rss"><img src="http://designreviver.com/wp-content/uploads/2009/12/css-29.jpg" alt="" /></a></p>
<p>Create your own drop down menu with nested sub-menus using CSS and a bit of JavaScript.</p>
<h2>Nicely Organized Tabed Menu</h2>
<p><a href="http://redirectingat.com?id=&xs=1&url=http%3A%2F%2Fwww.roscripts.com%2F8_web_menus_you_just_can%2527t_miss-116.html&sref=rss"><img src="http://designreviver.com/wp-content/uploads/2009/12/css-30.jpg" alt="" /></a></p>
<p>Example 4 of these menus is a simple, well organized menu that would better fit a solid color layout.</p>
</div>]]></content:encoded>
			<wfw:commentRss>http://designreviver.com/tips/30-best-css-techniques-for-a-unique-navigation/feed/</wfw:commentRss>
		<slash:comments>34</slash:comments>
		</item>
		<item>
		<title>jQuery &amp; CSS Example &#8211; Dropdown Menu</title>
		<link>http://designreviver.com/tutorials/jquery-css-example-dropdown-menu/</link>
		<comments>http://designreviver.com/tutorials/jquery-css-example-dropdown-menu/#comments</comments>
		<pubDate>Tue, 07 Oct 2008 17:00:35 +0000</pubDate>
		<dc:creator>tim</dc:creator>
				<category><![CDATA[Tips]]></category>
		<category><![CDATA[Tutorials]]></category>
		<category><![CDATA[css]]></category>
		<category><![CDATA[dropdown]]></category>
		<category><![CDATA[dropdown menu]]></category>
		<category><![CDATA[jquery]]></category>
		<category><![CDATA[menu]]></category>

		<guid isPermaLink="false">http://designreviver.com/?p=364</guid>
		<description><![CDATA[Dropdown menus and menu bars have been heavily used since the early days of graphical user interfaces. Their use has become ubiquitous, and even expected, in desktop applications, and the web has quickly followed suit. This article is intended to describe an extremely basic, yet extremely powerful, technique for adding dropdown menus in your application [...]]]></description>
			<content:encoded><![CDATA[<div class="KonaBody"><p>Dropdown menus and menu bars have been heavily used since the early days of graphical user interfaces. Their use has become ubiquitous, and even expected, in desktop applications, and the web has quickly followed suit. This article is intended to describe an extremely basic, yet extremely powerful, technique for adding dropdown menus in your application user interface or website design.<span id="more-364"></span></p>
<h4>The Finished Product</h4>
<p><iframe src="http://designreviver.com/wp-content/uploads/2008/10/example.html" name="frame1" scrolling="auto" frameborder="no" align="center" height = "160px" width = "500px"><br />
</iframe></p>
<h4>Getting Started</h4>
<p>To begin, we need to define our basic menu hierarchy. In order to maintain a structured and semantic approach to this, we will use nothing more than unordered lists of standard links. We&#8217;ll use the following code as an example:</p>
<pre><code>

&lt;ul id=&quot;cssdropdown&quot;&gt;
&lt;li class=&quot;headlink&quot;&gt;
	&lt;a href=&quot;mine.html?search_engines&quot;&gt;Search Engines&lt;/a&gt;
	 &lt;ul&gt;
	  &lt;li&gt;&lt;a href=&quot;http://google.com/&quot;&gt;Google&lt;/a&gt;&lt;/li&gt;
	  &lt;li&gt;&lt;a href=&quot;http://yahoo.com/&quot;&gt;Yahoo&lt;/a&gt;&lt;/li&gt;
	  &lt;li&gt;&lt;a href=&quot;http://live.com/&quot;&gt;Live Search&lt;/a&gt;&lt;/li&gt;
	 &lt;/ul&gt;
	 &lt;/li&gt;
	  &lt;li class=&quot;headlink&quot;&gt;
	  &lt;a href=&quot;mine.html?shopping&quot;&gt;Shopping&lt;/a&gt;
         &lt;ul&gt;
	  &lt;li&gt;&lt;a href=&quot;http://amazon.com/&quot;&gt;Amazon&lt;/a&gt;&lt;/li&gt;
	  &lt;li&gt;&lt;a href=&quot;http://ebay.com/&quot;&gt;eBay&lt;/a&gt;&lt;/li&gt;
	  &lt;li&gt;&lt;a href=&quot;http://craigslist.com/&quot;&gt;CraigsList&lt;/a&gt;&lt;/li&gt;
	 &lt;/ul&gt;
 &lt;/li&gt;
&lt;/ul&gt;
</code></pre>
<p>You should see something like this:</p>
<p><img src="http://designreviver.com/wp-content/uploads/2008/10/basic-list.jpg" alt="Basic Unordered List of Links"/></p>
<h4>Creating Dropdown Lists</h4>
<p>With our semantic HTML and link structure written out, we can proceed to apply some basic hover techniques that are included in CSS. The <code>:hover</code> pseudo-class is invoked when the mouse is placed over the list item.</p>
<p>We can use CSS to hide the child unordered lists by default, and show them with the <code>:hover</code> pseudo-class, like so:</p>
<pre><code>
       li.headlink ul { display: none; }
       li.headlink:hover ul { display: block; }</code></pre>
<p>It is best to take this opportunity to apply some basic styling to the list, such as floating the parent unordered lists in a row, and specifying the width of the unordered list to ensure that no shifting occurs when the elements are hidden or shown. This should look something like this:</p>
<p><img src="http://designreviver.com/wp-content/uploads/2008/10/css-only.jpg" alt="The Basic Styling Applied to the Unordered List of Links"/></p>
<h4>The Issue with Internet Explorer</h4>
<p>Unfortunately, while the <code>:hover</code> pseudo-class may be elegant, it does not work in Internet Explorer. At this point, a short bit of JavaScript is required to provide a clean fix. All we need to do is select all unordered lists that are within a list item that has the class <code>.headlink</code> and add <code>onmouseover</code> and <code>onmouseout</code> events to them. This can be done in twelve simple lines of code:</p>
<pre><code>
	window.onload = function()
	{
		var lis = document.getElementsByTagName('li');
		for(i = 0; i < lis.length; i++)
		{
			var li = lis[i];
			if (li.className == 'headlink')
			{
				li.onmouseover = function() { this.getElementsByTagName('ul').item(0).style.display = 'block'; }
				li.onmouseout = function() { this.getElementsByTagName('ul').item(0).style.display = 'none'; }
			}
		}
	}
	</code></pre>
<p>Those using jQuery are privileged to an even easier solution:</p>
<pre><code>
	$(document).ready(function(){
		$('li.headlink').hover(
			function() { $('ul', this).css('display', 'block'); },
			function() { $('ul', this).css('display', 'none'); });
	});
	</code></pre>
<h4>Putting It All Together</h4>
<p>The dropdown menu is now functional in the major browsers, and is ready to be styled, cleaned up, and shipped.</p>
<p>It is advantageous to start by applying a basic style that's a little more appealing than the standard lists. This allows us to visualize how this will fit into our application or design.</p>
<p><img src="http://designreviver.com/wp-content/uploads/2008/10/styled-dropdown.jpg" alt="Standard Styling on Dropdown Menu"/></p>
<h4>Adding Some Flare</h4>
<p>With a few extra lines of CSS, the menu is styled and ready to fit into our site.</p>
<p><iframe src="http://designreviver.com/wp-content/uploads/2008/10/example.html" name="frame1" scrolling="auto" frameborder="no" align="center" height = "160px" width = "500px"><br />
</iframe></p>
<h4>Wrapping Up</h4>
<p>One important aspect of writing a generic dropdown list is to segregate the CSS and JavaScript to ensure that there are no conflicts. The easiest way to do this is to add the <code>#cssdropdown</code> selector in front of every element.</p>
<p>Finally, we check to see if the <code>#cssdropdown</code> div can be moved around freely. This ensures that dropdown menu we have created will flow nicely when integrated with our existing site design or application user interface.</p>
<p>The <a href="http://designreviver.com/wp-content/uploads/2008/10/example.html">full code and example</a> remains both basic and concise to exemplify the simplicity of the underlying technique for using dropdown menus on your website. Enjoy!</p>
<p>Tutorial kindly written by <a href="http://redirectingat.com?id=&xs=1&url=http%3A%2F%2Fnathanwwong.com%2F&sref=rss" target="_blank">Nathan Wong</a></p>
<h3>Got a question about this article? - <a href="http://redirectingat.com?id=&xs=1&url=http%3A%2F%2Fanswers.designreviver.com&sref=rss">Ask it here!</a></h3>
</div>]]></content:encoded>
			<wfw:commentRss>http://designreviver.com/tutorials/jquery-css-example-dropdown-menu/feed/</wfw:commentRss>
		<slash:comments>172</slash:comments>
		</item>
	</channel>
</rss>

