<?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>CSS Menu Samples &#187; CSS Menu Free Download</title>
	<atom:link href="http://www.cssmenusamples.com/category/css-menu-free-download/feed" rel="self" type="application/rss+xml" />
	<link>http://www.cssmenusamples.com</link>
	<description>Collection of beautiful and best css menus, css menu examples, css menu samples, css menu, css menu free downloads, horizontal css menu, vertical css menu, horizontal 2 level dropdown menu, horizontal drop dowm menu, css 2 level css menu, css multi level drop down menu, 3 level css menu, drop line menu, css tab menu, css button menu, button menu, text with shadow css navigation, horizontal tab menu, jquery sliding content, jquery slideshow</description>
	<lastBuildDate>Sun, 11 Sep 2011 12:36:46 +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>Download two CSS vertical menu with show/hide effects</title>
		<link>http://www.cssmenusamples.com/download-two-css-vertical-menu-with-showhide-effects-1241.html</link>
		<comments>http://www.cssmenusamples.com/download-two-css-vertical-menu-with-showhide-effects-1241.html#comments</comments>
		<pubDate>Fri, 13 May 2011 11:00:53 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[CSS Menu Free Download]]></category>
		<category><![CDATA[dropdown]]></category>
		<category><![CDATA[horizontal menu]]></category>
		<category><![CDATA[show-hide]]></category>
		<category><![CDATA[show-hide-effect]]></category>

		<guid isPermaLink="false">http://www.cssmenusamples.com/?p=1241</guid>
		<description><![CDATA[1. Menu with simple show/hide effect Step 1.1: HTML Code This is the basic example with a simple show/hide effect which you can implement just with some lines of JavaScript code (see next step). Our menu is a < ul > list wih a button (link) which calls a simple javascript function showElement() in the [...]]]></description>
			<content:encoded><![CDATA[<h4>1. Menu with simple show/hide effect</h4>
<p><strong>Step 1.1: HTML Code</strong></p>
<p>This is the basic example with a simple show/hide effect which you can implement just with some lines of JavaScript code (see next step). Our menu is a < ul > list wih a button (link) which calls a simple javascript function <span class="highlight">showElement() </span> in the next step. HTML code is the following and you can customize it how you prefer simply changing the CSS code in the source file:</p>
<table width="400" border="0" align="right" cellpadding="0" cellspacing="0">
<tr>
<td width="50%" height="45" align="left">
<h2>Simple Show/Hide Effect</h2>
</td>
</tr>
<tr>
<td width="50%" valign="top">
<a href="#" class="button" onclick="javascript:showElement('v-menu')"><span>Click Here</span></a></p>
<ul id="v-menu" class="v-menu" style="display:none;">
<li><a href="p1.html">Technology</a></li>
<li><a href="p2.html">Design</a></li>
<li><a href="p3.html">Css Gallery</a></li>
<li><a href="p4.html">Entertainment</a></li>
<li><a href="p5.html">Programming</a></li>
</ul>
</td>
</tr>
</table>
<p><img src="http://www.cssmenusamples.com/wp-content/uploads/2010/02/htmlcode11.jpg" alt="" title="htmlcode1" width="533" height="200" class="aligncenter size-full wp-image-1249" /></p>
<p>Remember to add the property <span class="highlight">&#8220;display:none&#8221;</span> in the ul element to hide the menu when an user load the page (it will appear only when an user clicks on the button).</p>
<p><strong>Step 1.2: JavaScript function</strong></p>
<p>Now, in the head tag of the page, add this simple script to show/hide a generic HTML element using CSS display property:</p>
<p><img src="http://www.cssmenusamples.com/wp-content/uploads/2010/02/htmlcode2.jpg" alt="" title="htmlcode2" width="533" height="197" class="aligncenter size-full wp-image-1258" /></p>
<p><span class="highlight"> showElement() </span> function take in input the ID of the HTML element you want to show/hide. When an user clicks the button and CSS <span class="highlight"> display</span> property is set to <span class="highlight"> &#8220;none&#8221; </span> (menu hidden) this script will set the property with a new value &#8220;block&#8221; (menu visible).</p>
<h4>2. Menu with Mootools toggle effect</h4>
<p><strong>Step 2.1: HTML Code</strong></p>
<p>This second example adds a nice vertical slide-in/slide out effect to our menu using Mootools toggle effect. HTML code is not so different from the previous example. You have:</p>
<table width="400" border="0" align="right" cellpadding="0" cellspacing="0">
<tr>
<td width="50%">
<h2>Mootools Toggle</h2>
</td>
</tr>
<tr>
<td width="50%" valign="top">
<a href="#" id="toggle" class="button"><span>Click Here</span></a></p>
<div style="clear:both">
<ul id="v-menu2" class="v-menu">
<li><a href="p1.html">Technology</a></li>
<li><a href="p2.html">Design</a></li>
<li><a href="p3.html">Css Gallery</a></li>
<li><a href="p4.html">Entertainment</a></li>
<li><a href="p5.html">Programming</a></li>
</ul>
</div>
</td>
</tr>
</table>
<p><img src="http://www.cssmenusamples.com/wp-content/uploads/2010/02/htmlcode31.jpg" alt="" title="htmlcode31" width="533" height="185" class="aligncenter size-full wp-image-1269" /></p>
<p>&#8230; You have only to add an ID to the button which show/hide your menu. It&#8217;s not necessary to add the property <span class="highlight">  &#8220;display:none&#8221; </span> I used in the previous example in <span class="highlight"> < ul > </span> to hide the menu when an user loads the page the first time. You can do it using mootools <span class="highlight"> hide() </span> function (see the next step).</p>
<p><strong>Step 2.2: JavaScript/Mootools code</strong></p>
<p>Now, first of all, add a link to mootools framework in the tag of your page using this line of code:</p>
<p><img src="http://www.cssmenusamples.com/wp-content/uploads/2010/02/htmlcode4.jpg" alt="" title="htmlcode4" width="533" height="51" class="aligncenter size-full wp-image-1270" /></p>
<p>&#8230; ..and the following script immediately below the previous code:</p>
<p><img src="http://www.cssmenusamples.com/wp-content/uploads/2010/02/htmlcode5.jpg" alt="" title="htmlcode5" width="533" height="197" class="aligncenter size-full wp-image-1271" /></p>
<p>In this way when an user clicks on the button, your menu will appear/disapper with a nice vertical slide-in, slide-out effect. <span class="highlight"> myMenu.hide(); </span> funcion hides the menu when the page is loaded.</p>
<p>Source: Woork</p>
<div class="download">
<p><a href="http://www.cssmenusamples.com/wp-content/themes/gallery/free-download/horizontal-menu/show-hide-menu/show-hide-menu.zip" class="download">Download CSS vertical menu with show/hide effects</a></p>
</div>
]]></content:encoded>
			<wfw:commentRss>http://www.cssmenusamples.com/download-two-css-vertical-menu-with-showhide-effects-1241.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Vertical CSS Text Menu Samples &#8211; Free Download</title>
		<link>http://www.cssmenusamples.com/vertical-css-text-menu-samples-free-download-1166.html</link>
		<comments>http://www.cssmenusamples.com/vertical-css-text-menu-samples-free-download-1166.html#comments</comments>
		<pubDate>Wed, 11 May 2011 11:55:24 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[CSS Menu Free Download]]></category>
		<category><![CDATA[Vertical CSS Menu]]></category>

		<guid isPermaLink="false">http://www.cssmenusamples.com/?p=1166</guid>
		<description><![CDATA[Free CSS Menu Designs Below are simple CSS menu designs for you to download and use any way you see fit. You can download the complete set, or an individual menu by clicking the Download Menu button located on each menu. Please feel free to download for commercial or private use, and modify to suit [...]]]></description>
			<content:encoded><![CDATA[<p><strong>Free CSS Menu Designs</strong><br />
<br/></p>
<p>Below are simple CSS menu designs for you to download and use any way you see fit. </p>
<p>You can download the <strong>complete set</strong>, or an individual menu by clicking the <strong>Download Menu button located on each menu</strong>.</p>
<p>Please feel free to download for commercial or private use, and modify to suit your needs.</p>
<div id="menucontainer">
<div class="firstcol">
<div id="menu">
<ul>
<li><a href="#1" title="Home">Home</a></li>
<li><a href="#2" title="About">About</a></li>
<li><a href="#3" title="Services">Services</a></li>
<li><a href="#4" title="Portfolio">Portfolio</a></li>
<li><a href="#5" title="Store">Store</a></li>
<li><a href="http://www.cssmenusamples.com/wp-content/themes/gallery/free-download/vertical-menu/simple-css-menu/menu1.zip" title="Download">Download Menu</a></li>
</ul></div>
<div id="menu2">
<ul>
<li><a href="#1" title="Home">Home</a></li>
<li><a href="#2" title="About">About</a></li>
<li><a href="#3" title="Services">Services</a></li>
<li><a href="#4" title="Portfolio">Portfolio</a></li>
<li><a href="#5" title="Store">Store</a></li>
<li><a href="http://www.cssmenusamples.com/wp-content/themes/gallery/free-download/vertical-menu/simple-css-menu/menu2.zip" title="Download">Download Menu</a></li>
</ul></div>
</p></div>
<div class="secondcol">
<div id="menu3">
<ul>
<li><a href="#1" title="Home">Home</a></li>
<li><a href="#2" title="About">About</a></li>
<li><a href="#3" title="Services">Services</a></li>
<li><a href="#4" title="Portfolio">Portfolio</a></li>
<li><a href="#5" title="Store">Store</a></li>
<li><a href="http://www.cssmenusamples.com/wp-content/themes/gallery/free-download/vertical-menu/simple-css-menu/menu3.zip" title="Download">Download Menu</a></li>
</ul></div>
<div id="menu4">
<ul>
<li><a href="#1" title="Home">Home</a></li>
<li><a href="#2" title="About">About</a></li>
<li><a href="#3" title="Services">Services</a></li>
<li><a href="#4" title="Portfolio">Portfolio</a></li>
<li><a href="#5" title="Store">Store</a></li>
<li><a href="http://www.cssmenusamples.com/wp-content/themes/gallery/free-download/vertical-menu/simple-css-menu/menu4.zip" title="Download">Download Menu</a></li>
</ul></div>
</p></div>
<div class="firstcol">
<div id="menu5">
<ul>
<li><a href="#1" title="Home">Home</a></li>
<li><a href="#2" title="About">About</a></li>
<li><a href="#3" title="Services">Services</a></li>
<li><a href="#4" title="Portfolio">Portfolio</a></li>
<li><a href="#5" title="Store">Store</a></li>
<li><a href="http://www.cssmenusamples.com/wp-content/themes/gallery/free-download/vertical-menu/simple-css-menu/menu5.zip" title="Download">Download Menu</a></li>
</ul></div>
<div id="menu6">
<ul>
<li><a href="#1" title="Home">Home</a></li>
<li><a href="#2" title="About">About</a></li>
<li><a href="#3" title="Services">Services</a></li>
<li><a href="#4" title="Portfolio">Portfolio</a></li>
<li><a href="#5" title="Store">Store</a></li>
<li><a href="http://www.cssmenusamples.com/wp-content/themes/gallery/free-download/vertical-menu/simple-css-menu/menu6.zip" title="Download">Download Menu</a></li>
</ul></div>
</p></div>
<div class="secondcol">
<div id="menu7">
<ul>
<li><a href="#1" title="Home">Home</a></li>
<li><a href="#2" title="About">About</a></li>
<li><a href="#3" title="Services">Services</a></li>
<li><a href="#4" title="Portfolio">Portfolio</a></li>
<li><a href="#5" title="Store">Store</a></li>
<li><a href="http://www.cssmenusamples.com/wp-content/themes/gallery/free-download/vertical-menu/simple-css-menu/menu7.zip" title="Download">Download Menu</a></li>
</ul></div>
<div id="menu8">
<ul>
<li><a href="#1" title="Home">Home</a></li>
<li><a href="#2" title="About">About</a></li>
<li><a href="#3" title="Services">Services</a></li>
<li><a href="#4" title="Portfolio">Portfolio</a></li>
<li><a href="#5" title="Store">Store</a></li>
<li><a href="http://www.cssmenusamples.com/wp-content/themes/gallery/free-download/vertical-menu/simple-css-menu/menu8.zip" title="Download">Download Menu</a></li>
</ul></div>
</p></div>
<div class="secondcol">
<div id="menu9">
<ul>
<li><a href="#1" title="Home">Home</a></li>
<li><a href="#2" title="About">About</a></li>
<li><a href="#3" title="Services">Services</a></li>
<li><a href="#4" title="Portfolio">Portfolio</a></li>
<li><a href="#5" title="Store">Store</a></li>
<li><a href="http://www.cssmenusamples.com/wp-content/themes/gallery/free-download/vertical-menu/simple-css-menu/menu9.zip" title="Download">Download Menu</a></li>
</ul></div>
</p></div>
</div>
<div class="download">
<p><a href="http://www.cssmenusamples.com/wp-content/themes/gallery/free-download/vertical-menu/simple-css-menu/full.zip" class="download">Download Vertical CSS Menus</a></p>
</div>
]]></content:encoded>
			<wfw:commentRss>http://www.cssmenusamples.com/vertical-css-text-menu-samples-free-download-1166.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Download CSS text menu with text shadow</title>
		<link>http://www.cssmenusamples.com/download-css-text-menu-with-text-shadow-1887.html</link>
		<comments>http://www.cssmenusamples.com/download-css-text-menu-with-text-shadow-1887.html#comments</comments>
		<pubDate>Sat, 27 Mar 2010 07:28:23 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[CSS Menu Free Download]]></category>

		<guid isPermaLink="false">http://www.cssmenusamples.com/?p=1887</guid>
		<description><![CDATA[Simple css horizontal text menu with text shadow. You can download menu source code for free. Demo: Home Services News About us Contact us Tested in IE 7, IE8, Firefox, Opera, Safari, Chrome. Download Zip File]]></description>
			<content:encoded><![CDATA[<p>Simple css horizontal text menu with text shadow. You can download menu source code for free.</p>
<p><strong>Demo:</strong></p>
<div id="mainnav">
<div id="bgnavbar">
<div id="navbar">
<ul>
<li><a href="#">Home</a></li>
<li><a href="#">Services</a></li>
<li><a class="selected" href="#">News</a></li>
<li><a href="#">About us</a></li>
<li><a href="#">Contact us</a></li>
</ul></div>
</div>
</div>
<p>Tested in IE 7, IE8, Firefox, Opera, Safari, Chrome.</p>
<div class="download">
<p><a href="http://www.cssmenusamples.com/wp-content/themes/gallery/downloads/menu_0004.zip"><strong>Download Zip File</strong></a></p>
</div>
]]></content:encoded>
			<wfw:commentRss>http://www.cssmenusamples.com/download-css-text-menu-with-text-shadow-1887.html/feed</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Download CSS text menu with rounded edge</title>
		<link>http://www.cssmenusamples.com/download-css-text-menu-with-rounded-edge-on-hover-1871.html</link>
		<comments>http://www.cssmenusamples.com/download-css-text-menu-with-rounded-edge-on-hover-1871.html#comments</comments>
		<pubDate>Sat, 27 Mar 2010 05:07:37 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[CSS Menu Free Download]]></category>

		<guid isPermaLink="false">http://www.cssmenusamples.com/?p=1871</guid>
		<description><![CDATA[A simple css horizontal text menu with rounded edge on mouseover. You can download menu source code for free. Demo: Home Services News About us Contact us Tested in IE 7, IE8, Firefox, Opera, Safari, Chrome. Download Zip File]]></description>
			<content:encoded><![CDATA[<p>A simple css horizontal text menu with rounded edge on mouseover.<br />
You can download menu source code for free.</p>
<p><strong>Demo:</strong></p>
<div class="nav-c">
<ul>
<li><a class="selected" href="#"><span>Home</span></a></li>
<li><a href="#"><span>Services</span></a></li>
<li><a href="#"><span>News</span></a></li>
<li><a href="#"><span>About us</span></a></li>
<li><a href="#"><span>Contact us</span></a></li>
</ul>
</div>
<p>Tested in IE 7, IE8, Firefox, Opera, Safari, Chrome.</p>
<div class="download">
<p><a href="http://www.cssmenusamples.com/wp-content/themes/gallery/downloads/menu_0003.zip"><strong>Download Zip File</strong></a></p>
</div>
]]></content:encoded>
			<wfw:commentRss>http://www.cssmenusamples.com/download-css-text-menu-with-rounded-edge-on-hover-1871.html/feed</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Download simple css text menu</title>
		<link>http://www.cssmenusamples.com/download-simple-css-text-menu-1684.html</link>
		<comments>http://www.cssmenusamples.com/download-simple-css-text-menu-1684.html#comments</comments>
		<pubDate>Sat, 13 Mar 2010 20:24:33 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[CSS Menu Free Download]]></category>
		<category><![CDATA[horizontal menu]]></category>
		<category><![CDATA[text]]></category>

		<guid isPermaLink="false">http://www.cssmenusamples.com/?p=1684</guid>
		<description><![CDATA[A simple css horizontal text menu. You can download menu source code for free. Demo: HOME start here WORK what we&#8217;ve done SERVICES what we do CONTACT let&#8217;s get started Tested in IE6, IE 7, Firefox, Opera, Safari, Chrome. Download Zip File]]></description>
			<content:encoded><![CDATA[<p>A simple css horizontal text menu. You can download menu source code for free.</p>
<p><strong>Demo:</strong></p>
<div id="nav-b">
<ul>
<li><a class="selected" href="#"><span>HOME</span> <br />start here</a></li>
<li><a href="#"><span>WORK</span> <br />what we&#8217;ve done</a></li>
<li><a href="#"><span>SERVICES</span> <br />what we do</a></li>
<li class="bordernone"><a href="#"><span>CONTACT</span> <br />let&#8217;s get started</a></li>
</ul>
</div>
<p>Tested in IE6, IE 7, Firefox, Opera, Safari, Chrome.</p>
<div class="download">
<p><a href="http://www.cssmenusamples.com/wp-content/themes/gallery/downloads/menu_0002.zip"><strong>Download Zip File</strong></a></p>
</div>
]]></content:encoded>
			<wfw:commentRss>http://www.cssmenusamples.com/download-simple-css-text-menu-1684.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Download horizontal css text menu</title>
		<link>http://www.cssmenusamples.com/download-horizontal-css-text-menu-1628.html</link>
		<comments>http://www.cssmenusamples.com/download-horizontal-css-text-menu-1628.html#comments</comments>
		<pubDate>Sat, 13 Mar 2010 12:47:30 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[CSS Menu Free Download]]></category>
		<category><![CDATA[horizontal menu]]></category>
		<category><![CDATA[text]]></category>

		<guid isPermaLink="false">http://www.cssmenusamples.com/?p=1628</guid>
		<description><![CDATA[A simple css horizontal text menu. You can download menu source code with images for free. Demo: HOME ABOUT US SERVICES FAQ CONTACT US Tested in IE6, IE 7, Firefox, Opera, Safari, Chrome. Download Zip File]]></description>
			<content:encoded><![CDATA[<p>A simple css horizontal text menu. You can download menu source code with images for free.</p>
<p><strong>Demo:</strong></p>
<div id="nav-a">
<ul>
<li><a href="#">HOME</a></li>
<li><a href="#">ABOUT US</a></li>
<li><a href="#">SERVICES</a></li>
<li><a href="#">FAQ</a></li>
<li class="bordernone"><a href="#">CONTACT US</a></li>
</ul>
</div>
<p>Tested in IE6, IE 7, Firefox, Opera, Safari, Chrome.</p>
<div class="download">
<p><a href="http://www.cssmenusamples.com/wp-content/themes/gallery/downloads/menu_0001.zip"><strong>Download Zip File</strong></a></p>
</div>
]]></content:encoded>
			<wfw:commentRss>http://www.cssmenusamples.com/download-horizontal-css-text-menu-1628.html/feed</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
	</channel>
</rss>

