<?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>dhtml-menu-builder.com</title>
	<atom:link href="http://www.dhtml-menu-builder.com/blog/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.dhtml-menu-builder.com/blog</link>
	<description>Tech Tips, Samples and More</description>
	<lastBuildDate>Sat, 01 Oct 2011 13:09:30 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0</generator>
		<item>
		<title>CSS3 Animated Navigation Menu</title>
		<link>http://www.dhtml-menu-builder.com/blog/1174/</link>
		<comments>http://www.dhtml-menu-builder.com/blog/1174/#comments</comments>
		<pubDate>Thu, 25 Aug 2011 12:01:05 +0000</pubDate>
		<dc:creator>evazhou</dc:creator>
				<category><![CDATA[Latest Samples]]></category>
		<category><![CDATA[CSS menu]]></category>
		<category><![CDATA[javascript]]></category>
		<category><![CDATA[navigation menu]]></category>
		<category><![CDATA[navigation menus]]></category>
		<category><![CDATA[web design]]></category>

		<guid isPermaLink="false">http://www.dhtml-menu-builder.com/blog/?p=1174</guid>
		<description><![CDATA[Navigation menus play a crucial role in web design and a good navigation menu is definitely a plus to the design. Lately I was playing around with CSS3 for a navigation menu and I learnt how to create an animated &#8230; <a href="http://www.dhtml-menu-builder.com/blog/1174/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p><strong>Navigation menus</strong> play a crucial role in <strong>web design</strong> and a good navigation menu is definitely a plus to the design. Lately I was playing around with <strong>CSS3</strong> for a navigation menu and I learnt how to create an animated navigation menu by only using CSS3(<strong>No Images</strong>, <strong>No JavaScript</strong>).  Using CSS3 in place of jQuery/JavaScript for animations has obvious  advantages like faster load time, lesser heavier website, etc. In this  article I am sharing the code of a navigation menu made using CSS3. It  renders perfectly on Chrome, Firefox, Safari and Opera. And without the  easing effects on Internet Explorer and non CSS3 compatible browsers.</p>
<p><a href="../wp-content/uploads/2011/08/CSS3-Animated-Navigation-Menu.png"><img title="CSS3-Animated-Navigation-Menu" src="../wp-content/uploads/2011/08/CSS3-Animated-Navigation-Menu.png" alt="" width="871" height="481" /></a></p>
<p>The CSS</p>
<pre><span style="color: #ff0000;">body {
	font-family: 'Lucida Sans Unicode', 'Lucida Grande', sans-serif;
	background:#545454;
	margin: 0;
	background:-webkit-gradient(linear, left top, right bottom,
        from(#5454  color-stop(.5, #7e7e7e), to(#545454)) fixed;
	background:-webkit-linear-gradient(45deg, #545454, #7e7e7e .5,
        #545454);
	background:-moz-linear-gradient(45deg, #545454, #7e7e7e .5,
        #545454);
	background:-o-linear-gradient(45deg, #545454, #7e7e7e .5,
        #545454);
	border-top:7px solid #52a8e8;
	text-shadow:0 0 3px rgba(0, 0, 0, 1);
	letter-spacing: 2px;
	font-size: 20px;
}
a {
	text-decoration:none;
	color:#fff;
}
header {
	width:850px;
	margin-left:auto;
	margin-right:auto;
}
header nav a {
	position:relative;
	float: left;
	width:150px;
	text-align:center;
	padding-top:23px;
	padding-bottom:30px;
	margin-right:20px;
	-webkit-border-bottom-right-radius: 5px;
	-webkit-border-bottom-left-radius: 5px;
	-moz-border-radius-bottomright: 5px;
	-moz-border-radius-bottomleft: 5px;
	border-bottom-right-radius: 5px;
	border-bottom-left-radius: 5px;
        -webkit-transition: all .5s ease-out;
        -moz-transition: all .5s ease-out;
        -o-transition: all .5s ease-out;
	background:#52a8e8;
	background: -webkit-gradient(linear, left top, left bottom,
       color-stop(.2, #52a8e8),
        color-stop(1, #4984ce));
	background: -moz-linear-gradient(center top, #52a8e8 20%,
        #4984ce 100%);
	background: -o-linear-gradient(#52a8e8, #4984ce);
}
header nav a:hover {
	padding-top:53px;
	padding-bottom:60px;
        -webkit-transition: all .5s ease-out;
        -moz-transition: all .5s ease-out;
        -o-transition: all .5s ease-out;
}</span></pre>
<p>The HTML</p>
<pre><span style="color: #ff0000;">&lt;body&gt;
&lt;header&gt;
  &lt;nav&gt;
    &lt;a href="#"&gt;HOME&lt;/a&gt;
    &lt;a href="#"&gt;ABOUT&lt;/a&gt;
    &lt;a href="#"&gt;WORK&lt;/a&gt;
    &lt;a href="#"&gt;CONTACT&lt;/a&gt;
    &lt;a href="#"&gt;BLOG&lt;/a&gt;
  &lt;/nav&gt;
&lt;/header&gt;
&lt;/body&gt;</span></pre>
]]></content:encoded>
			<wfw:commentRss>http://www.dhtml-menu-builder.com/blog/1174/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>21 Free High Quality Navigation Menu PSD</title>
		<link>http://www.dhtml-menu-builder.com/blog/21-free-high-quality-navigation-menu-psd/</link>
		<comments>http://www.dhtml-menu-builder.com/blog/21-free-high-quality-navigation-menu-psd/#comments</comments>
		<pubDate>Tue, 23 Aug 2011 11:49:40 +0000</pubDate>
		<dc:creator>evazhou</dc:creator>
				<category><![CDATA[Latest Samples]]></category>
		<category><![CDATA[drop down menu]]></category>
		<category><![CDATA[horizontal menu]]></category>
		<category><![CDATA[menu]]></category>
		<category><![CDATA[navigation]]></category>
		<category><![CDATA[navigation menu]]></category>
		<category><![CDATA[psd]]></category>

		<guid isPermaLink="false">http://www.dhtml-menu-builder.com/blog/?p=1148</guid>
		<description><![CDATA[One of the most essential part of website is Navigation Menu, Navigation Menu guides visitors how to navigate, explore and interact with the other parts (web pages) of particular website, a navigation menu should be simple and easy to understand, &#8230; <a href="http://www.dhtml-menu-builder.com/blog/21-free-high-quality-navigation-menu-psd/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>One of the most essential part of website is Navigation Menu,  Navigation Menu guides visitors how to navigate, explore and interact  with the other parts (web pages) of particular website, a navigation  menu should be simple and easy to understand, should not conflict the  mind of visitors.</p>
<p>SkyTechGeek explored numerous design sites and collected 21 beautiful  high quality PSD files, so that users don’t need to explore hundred of  Google Pages to find out an appropriate PSD file for their design,  Designers and Web developers can use them in their upcoming projects and  can give their websites stunning and beautiful look.</p>
<h2>1. Simple Navigation Menu</h2>
<p><a href="http://www.dhtml-menu-builder.com/blog/wp-content/uploads/2011/08/Navigation-1.jpg"><img class="aligncenter size-full wp-image-1149" title="Navigation-1" src="http://www.dhtml-menu-builder.com/blog/wp-content/uploads/2011/08/Navigation-1.jpg" alt="" width="500" height="300" /></a></p>
<h2>2. Modern Menu &amp; GUI Elements PSD</h2>
<p><a href="http://www.dhtml-menu-builder.com/blog/wp-content/uploads/2011/08/Navigation-2.jpg"><img class="aligncenter size-full wp-image-1150" title="Navigation-2" src="http://www.dhtml-menu-builder.com/blog/wp-content/uploads/2011/08/Navigation-2.jpg" alt="" width="500" height="300" /></a></p>
<h2>3. Slick Horizontal Menu</h2>
<p><a href="http://www.dhtml-menu-builder.com/blog/wp-content/uploads/2011/08/Navigation-3.jpg"><img class="aligncenter size-full wp-image-1151" title="Navigation-3" src="http://www.dhtml-menu-builder.com/blog/wp-content/uploads/2011/08/Navigation-3.jpg" alt="" width="500" height="300" /></a></p>
<h2>4. Breadcrumb Navigation</h2>
<p><a href="http://www.dhtml-menu-builder.com/blog/wp-content/uploads/2011/08/Navigation-4.jpg"><img class="aligncenter size-full wp-image-1152" title="Navigation-4" src="http://www.dhtml-menu-builder.com/blog/wp-content/uploads/2011/08/Navigation-4.jpg" alt="" width="500" height="300" /></a></p>
<h2>5. Menu Notification Badges</h2>
<p><a href="http://www.dhtml-menu-builder.com/blog/wp-content/uploads/2011/08/Navigation-5.jpg"><img class="aligncenter size-full wp-image-1153" title="Navigation-5" src="http://www.dhtml-menu-builder.com/blog/wp-content/uploads/2011/08/Navigation-5.jpg" alt="" width="500" height="300" /></a></p>
<h2>6. Mini Drop-Down Menu</h2>
<p><a href="http://www.dhtml-menu-builder.com/blog/wp-content/uploads/2011/08/Navigation-6.jpg"><img class="aligncenter size-full wp-image-1154" title="Navigation-6" src="http://www.dhtml-menu-builder.com/blog/wp-content/uploads/2011/08/Navigation-6.jpg" alt="" width="500" height="300" /></a></p>
<h2>7. Clean Crisp Setting Menu</h2>
<p><a href="http://www.dhtml-menu-builder.com/blog/wp-content/uploads/2011/08/Navigation-7.jpg"><img class="aligncenter size-full wp-image-1155" title="Navigation-7" src="http://www.dhtml-menu-builder.com/blog/wp-content/uploads/2011/08/Navigation-7.jpg" alt="" width="500" height="300" /></a></p>
<h2>8. Dark Navigation Menu</h2>
<p><a href="http://www.dhtml-menu-builder.com/blog/wp-content/uploads/2011/08/Navigation-8.jpg"><img class="aligncenter size-full wp-image-1156" title="Navigation-8" src="http://www.dhtml-menu-builder.com/blog/wp-content/uploads/2011/08/Navigation-8.jpg" alt="" width="500" height="300" /></a></p>
<h2>9. Candy Coated Red Navigation</h2>
<p><a href="http://www.dhtml-menu-builder.com/blog/wp-content/uploads/2011/08/Navigation-9.jpg"><img class="aligncenter size-full wp-image-1157" title="Navigation-9" src="http://www.dhtml-menu-builder.com/blog/wp-content/uploads/2011/08/Navigation-9.jpg" alt="" width="500" height="300" /></a></p>
<h2>10. Navigation Menu Horrido</h2>
<p><a href="http://www.dhtml-menu-builder.com/blog/wp-content/uploads/2011/08/Navigation-10.jpg"><img class="aligncenter size-full wp-image-1158" title="Navigation-10" src="http://www.dhtml-menu-builder.com/blog/wp-content/uploads/2011/08/Navigation-10.jpg" alt="" width="500" height="300" /></a></p>
<h2>11. Birds Sign, Grass and Shit Navigation</h2>
<p><a href="http://www.dhtml-menu-builder.com/blog/wp-content/uploads/2011/08/Navigation-11.jpg"><img class="aligncenter size-full wp-image-1159" title="Navigation-11" src="http://www.dhtml-menu-builder.com/blog/wp-content/uploads/2011/08/Navigation-11.jpg" alt="" width="500" height="300" /></a></p>
<h2>12. Sci Fi Menu</h2>
<p><a href="http://www.dhtml-menu-builder.com/blog/wp-content/uploads/2011/08/Navigation-12.jpg"><img class="aligncenter size-full wp-image-1160" title="Navigation-12" src="http://www.dhtml-menu-builder.com/blog/wp-content/uploads/2011/08/Navigation-12.jpg" alt="" width="500" height="300" /></a></p>
<h2>13. Pixel Navigation</h2>
<p><a href="http://www.dhtml-menu-builder.com/blog/wp-content/uploads/2011/08/Navigation-13.jpg"><img class="aligncenter size-full wp-image-1162" title="Navigation-13" src="http://www.dhtml-menu-builder.com/blog/wp-content/uploads/2011/08/Navigation-13.jpg" alt="" width="500" height="300" /></a></p>
<h2>14. Elegant Ribbon Menu</h2>
<p><a href="http://www.dhtml-menu-builder.com/blog/wp-content/uploads/2011/08/Navigation-14.jpg"><img class="aligncenter size-full wp-image-1163" title="Navigation-14" src="http://www.dhtml-menu-builder.com/blog/wp-content/uploads/2011/08/Navigation-14.jpg" alt="" width="500" height="300" /></a></p>
<h2>15. Header Navigation Pack</h2>
<p><a href="http://www.dhtml-menu-builder.com/blog/wp-content/uploads/2011/08/Navigation-15.jpg"><img class="aligncenter size-full wp-image-1164" title="Navigation-15" src="http://www.dhtml-menu-builder.com/blog/wp-content/uploads/2011/08/Navigation-15.jpg" alt="" width="500" height="300" /></a></p>
<h2>16. Grunge Gothic Navigation</h2>
<p><a href="http://www.dhtml-menu-builder.com/blog/wp-content/uploads/2011/08/Navigation-16.jpg"><img class="aligncenter size-full wp-image-1165" title="Navigation-16" src="http://www.dhtml-menu-builder.com/blog/wp-content/uploads/2011/08/Navigation-16.jpg" alt="" width="500" height="300" /></a></p>
<h2>17. Simple Navigation Menu</h2>
<p><a href="http://www.dhtml-menu-builder.com/blog/wp-content/uploads/2011/08/Navigation-17.jpg"><img class="aligncenter size-full wp-image-1166" title="Navigation-17" src="http://www.dhtml-menu-builder.com/blog/wp-content/uploads/2011/08/Navigation-17.jpg" alt="" width="500" height="300" /></a></p>
<h2>18. Mega Menu Navigation</h2>
<p><a href="http://www.dhtml-menu-builder.com/blog/wp-content/uploads/2011/08/Navigation-18.jpg"><img class="aligncenter size-full wp-image-1167" title="Navigation-18" src="http://www.dhtml-menu-builder.com/blog/wp-content/uploads/2011/08/Navigation-18.jpg" alt="" width="500" height="300" /></a></p>
<h2>19. Fresh Drop Down Menu Pack</h2>
<p><a href="http://www.dhtml-menu-builder.com/blog/wp-content/uploads/2011/08/Navigation-19.jpg"><img class="aligncenter size-full wp-image-1168" title="Navigation-19" src="http://www.dhtml-menu-builder.com/blog/wp-content/uploads/2011/08/Navigation-19.jpg" alt="" width="500" height="300" /></a></p>
<h2>20. Pixel Daily</h2>
<p><a href="http://www.dhtml-menu-builder.com/blog/wp-content/uploads/2011/08/Navigation-21.jpg"></a><a href="http://www.dhtml-menu-builder.com/blog/wp-content/uploads/2011/08/Navigation-20.jpg"><img class="aligncenter size-full wp-image-1170" title="Navigation-20" src="http://www.dhtml-menu-builder.com/blog/wp-content/uploads/2011/08/Navigation-20.jpg" alt="" width="500" height="300" /></a><br />
<strong><strong> </strong></strong></p>
<h2><strong><strong>21. Vivid Navigation Bar</strong></strong></h2>
<p><a href="../wp-content/uploads/2011/08/Navigation-21.jpg"></a><a href="http://www.dhtml-menu-builder.com/blog/wp-content/uploads/2011/08/Navigation-21.jpg"><img class="aligncenter size-full wp-image-1169" title="Navigation-21" src="http://www.dhtml-menu-builder.com/blog/wp-content/uploads/2011/08/Navigation-21.jpg" alt="" width="500" height="300" /></a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.dhtml-menu-builder.com/blog/21-free-high-quality-navigation-menu-psd/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How to add Google style menu bar for your blog- Google nav Menu</title>
		<link>http://www.dhtml-menu-builder.com/blog/how-to-add-google-style-menu-bar-for-your-blog-google-nav-menu/</link>
		<comments>http://www.dhtml-menu-builder.com/blog/how-to-add-google-style-menu-bar-for-your-blog-google-nav-menu/#comments</comments>
		<pubDate>Fri, 19 Aug 2011 14:10:20 +0000</pubDate>
		<dc:creator>evazhou</dc:creator>
				<category><![CDATA[Menu Release]]></category>
		<category><![CDATA[CSS]]></category>
		<category><![CDATA[google]]></category>
		<category><![CDATA[html]]></category>
		<category><![CDATA[menu bar]]></category>
		<category><![CDATA[nav menu]]></category>
		<category><![CDATA[style menu]]></category>

		<guid isPermaLink="false">http://www.dhtml-menu-builder.com/blog/?p=1143</guid>
		<description><![CDATA[Google recently updated its all product with new design and also navigation menu in the top of the header. Most of the developers and me too likes google’s new nav menu and want to install this menu style to my &#8230; <a href="http://www.dhtml-menu-builder.com/blog/how-to-add-google-style-menu-bar-for-your-blog-google-nav-menu/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.dhtml-menu-builder.com/blog/wp-content/uploads/2011/08/google-style-navigation-menu-for-blogger.jpg"><img class="aligncenter size-full wp-image-1144" title="google-style-navigation-menu-for-blogger" src="http://www.dhtml-menu-builder.com/blog/wp-content/uploads/2011/08/google-style-navigation-menu-for-blogger.jpg" alt="" width="620" height="120" /></a></p>
<p>Google recently updated its all product with new design and also  navigation menu in the top of the header. Most of the developers and me  too likes google’s new nav menu and want to install this menu style to  my blog. The simple code to add Google style navigation menu to header  for blogspot user.</p>
<p>For<strong> Blogspot users:</strong></p>
<p>1. Sign in to blogger.com</p>
<p>2. Go to design and Edit HTML (Note: Download template xml file with download full template)</p>
<p>3. Find  <strong>]]&gt;&lt;/b:skin&gt;</strong> and paste below code to above it.</p>
<p>Code with custom left Search bar:</p>
<p><code><span style="color: #ff0000;">#c4t_topbar { height: 30px; background: #2d2d2d; width:100%; }<br />
#c4t_access { display: block; float: left; }<br />
#c4t_access .menu-header,div.menu { font: 13px/27px Arial,sans-serif; margin-left: 4px; width: 960px; }<br />
#c4t_access .menu-header ul,div.menu ul { list-style: none; margin: 0; }<br />
#c4t_access .menu-header li,div.menu li { float: left; position: relative; }<br />
#c4t_access a { color: #ccc; display: block; height: 29px; line-height: 30px; text-decoration: none; padding: 0 10px; }<br />
#c4t_access ul ul { box-shadow: 0 3px 3px rgba(0,0,0,0.2);  -moz-box-shadow: 0 3px 3px rgba(0,0,0,0.2); -webkit-box-shadow: 0 3px  3px rgba(0,0,0,0.2); display: none; position: absolute; top: 38px; left:  0; float: left; width: 180px; z-index: 99999; }<br />
#c4t_access ul ul li { min-width: 180px; }<br />
#c4t_access ul ul ul { left: 100%; top: 0; }<br />
#c4t_access ul ul a { background: #f1f2f4; line-height: 1em; width: 160px; height: auto; padding: 10px; }<br />
#c4t_access li:hover &gt; a,#c4t_access ul ul :hover &gt; a {  background: #444; background: #4c4c4c; color: #fff; -webkit-transition:  all 0.5s ease-in-out; -moz-transition: all 0.5s ease-in-out;  -o-transition: all 0.5s ease-in-out; -webkit-transition: all 0.5s  ease-in-out; transition: all 0.5s ease-in-out; }<br />
#c4t_access ul li:hover &gt; ul { display: block; }<br />
#c4t_access ul li.current_page_item &gt; a,#c4t_access ul  li.current-menu-ancestor &gt; a,#c4t_access ul li.current-menu-item &gt;  a,#c4t_access ul li.current-menu-parent &gt; a,* html #c4t_access ul  li.current_page_item a,* html #c4t_access ul li.current-menu-ancestor  a,* html #c4t_access ul li.current-menu-item a,* html #c4t_access ul  li.current-menu-parent a,* html #c4t_access ul li a:hover { height:  28px; line-height: 27px; border-top: 2px solid #DD4B39; color: #FFFFFF;  font-weight: bold; }<br />
/* Google Search Navbar*/<br />
#google-search {<br />
width:175px;<br />
height:19px;<br />
float:right;<br />
moz-border-radius:10px 10px 10px 10px;border-radius:10px;border:3px  solid #B1C3FC;margin:5px 0   0;padding:1px;background-color:#F1F4FE;<br />
display:block;<br />
margin:5px 5px 0 0;<br />
}<br />
#google-search form {<br />
float:left;<br />
}<br />
img.magnify {<br />
position:relative;<br />
top:7px;<br />
left:-5px;<br />
display:none;<br />
}<br />
#google-search input[type="text"] {<br />
float:left;<br />
width:150px;<br />
font-size: 12px;<br />
border:1px solid #186F9A !important;<br />
font-family:Arial;<br />
padding:2px 10px !important;<br />
margin:1px 0 0 0;<br />
}<br />
#google-search input[type="submit"] {<br />
display:none;<br />
}</span></code></p>
<p><code> </code></p>
<p><code>Code without Search Bar:</code></p>
<p><code><code><span style="color: #ff0000;">#c4t_topbar { height: 30px; background: #2d2d2d; width:100%; }<br />
#c4t_access { display: block; float: left; }<br />
#c4t_access .menu-header,div.menu { font: 13px/27px Arial,sans-serif; margin-left: 4px; width: 960px; }<br />
#c4t_access .menu-header ul,div.menu ul { list-style: none; margin: 0; }<br />
#c4t_access .menu-header li,div.menu li { float: left; position: relative; }<br />
#c4t_access a { color: #ccc; display: block; height: 29px; line-height: 30px; text-decoration: none; padding: 0 10px; }<br />
#c4t_access ul ul { box-shadow: 0 3px 3px rgba(0,0,0,0.2);  -moz-box-shadow: 0 3px 3px rgba(0,0,0,0.2); -webkit-box-shadow: 0 3px  3px rgba(0,0,0,0.2); display: none; position: absolute; top: 38px; left:  0; float: left; width: 180px; z-index: 99999; }<br />
#c4t_access ul ul li { min-width: 180px; }<br />
#c4t_access ul ul ul { left: 100%; top: 0; }<br />
#c4t_access ul ul a { background: #f1f2f4; line-height: 1em; width: 160px; height: auto; padding: 10px; }<br />
#c4t_access li:hover &gt; a,#c4t_access ul ul :hover &gt; a {  background: #444; background: #4c4c4c; color: #fff; -webkit-transition:  all 0.5s ease-in-out; -moz-transition: all 0.5s ease-in-out;  -o-transition: all 0.5s ease-in-out; -webkit-transition: all 0.5s  ease-in-out; transition: all 0.5s ease-in-out; }<br />
#c4t_access ul li:hover &gt; ul { display: block; }<br />
#c4t_access ul li.current_page_item &gt; a,#c4t_access ul  li.current-menu-ancestor &gt; a,#c4t_access ul li.current-menu-item &gt;  a,#c4t_access ul li.current-menu-parent &gt; a,* html #c4t_access ul  li.current_page_item a,* html #c4t_access ul li.current-menu-ancestor  a,* html #c4t_access ul li.current-menu-item a,* html #c4t_access ul  li.current-menu-parent a,* html #c4t_access ul li a:hover { height:  28px; line-height: 27px; border-top: 2px solid #DD4B39; color: #FFFFFF;  font-weight: bold; }</span></code></p>
<p>4. Find <strong>&lt;body&gt;</strong> and copy below code and paste to below body section.</p>
<p>HTML Code with Search bar:</p>
<p><span style="color: #ff0000;"><code><span style="color: #ff0000;">&lt;!--  Start Goog</span><span style="color: #ff0000;">le style menu bar with search for blogspot by care4tech.com --&gt;<br />
&lt;div id='c4t_topbar'&gt;<br />
&lt;div id='c4t_access'&gt;<br />
&lt;div class='menu'&gt;<br />
&lt;ul&gt;</span><br />
<span style="color: #ff0000;">&lt;li class='current_page_item'&gt;<br />
&lt;a href=' ' title='home'&gt;Home&lt;/a&gt;<br />
&lt;/li&gt;<br />
&lt;li class='current_page_item'&gt;<br />
&lt;a href='http://www.thangaraju.com ' title='Portfolio'&gt;thangaraju blog&lt;/a&gt;<br />
&lt;/li&gt;<br />
&lt;li&gt;<br />
&lt;a href=' http://www.care4tech.com/' title='Technology care'&gt;care4tech&lt;/a&gt;<br />
&lt;/li&gt;<br />
&lt;li class='current_page_item'&gt;<br />
&lt;a href=' http://www.w3newz.com/' title='Entertainment blog'&gt;w3newz&lt;/a&gt;<br />
&lt;/li&gt;<br />
&lt;li&gt;<br />
&lt;a href=' http://www.technodriller.com/' title='product review'&gt;Technodriller&lt;/a&gt;<br />
&lt;/li&gt;<br />
&lt;li class='current_page_item'&gt;<br />
&lt;a href=' http://www.digzzy.com/' title='Digital Life'&gt;Digzzy&lt;/a&gt;<br />
&lt;/li&gt;<br />
&lt;li&gt;<br />
&lt;a href=' http://www.chitradesam.com/' title='Online moives'&gt;Movies&lt;/a&gt;<br />
&lt;/li&gt;<br />
&lt;/ul&gt;<br />
&lt;/div&gt;<br />
&lt;/div&gt;<br />
&lt;div id='google-search'&gt;<br />
&lt;form action='/search' id='searchThis' method='get' style='display:  inline;'&gt;&lt;input id='searchBox' name='q'  onblur='if(this.value==&amp;apos;&amp;apos;)this.value=this.defaultValue;'   onfocus='if(this.value==this.defaultValue)this.value=&amp;apos;&amp;apos;;'  style='width: 150px;color:#636363;' type='text' value='Search this  Site' vinput=''/&gt; &lt;input id='searchButton' type='submit'  value='Go'/&gt;&lt;/form&gt;<br />
&lt;/div&gt;<br />
&lt;/div&gt;<br />
&lt;br/&gt;<br />
&lt;!-- End Google style Nav menu bar with search for blogspot by care4tech.com --&gt;</span></code></span></p>
<p>Google Navigation Menu without Custom search:</p>
<p><span style="color: #ff0000;"><code><span style="color: #ff0000;">&lt;!--  Start Google style menu bar for blogspot by care4tech.com --&gt;<br />
&lt;div id='c4t_topbar'&gt;</span><br />
<span style="color: #ff0000;">&lt;div id='c4t_access'&gt;<br />
&lt;div class='menu'&gt;<br />
&lt;ul&gt;<br />
&lt;li class='current_page_item'&gt;<br />
&lt;a href=' ' title='home'&gt;Home&lt;/a&gt;<br />
&lt;/li&gt;<br />
&lt;li class='current_page_item'&gt;<br />
&lt;a href='http://www.thangaraju.com ' title='Portfolio'&gt;thangaraju blog&lt;/a&gt;<br />
&lt;/li&gt;<br />
&lt;li &gt;<br />
&lt;a href=' http://www.care4tech.com/' title='Technology care'&gt;care4tech&lt;/a&gt;<br />
&lt;/li&gt;<br />
&lt;li class='current_page_item'&gt;<br />
&lt;a href=' http://www.w3newz.com/' title='Entertainment blog'&gt;w3newz&lt;/a&gt;<br />
&lt;/li&gt;<br />
&lt;li &gt;<br />
&lt;a href=' http://www.technodriller.com/' title='product review'&gt;Technodriller&lt;/a&gt;<br />
&lt;/li&gt;<br />
&lt;li class='current_page_item'&gt;<br />
&lt;a href=' http://www.digzzy.com/' title='Digital Life'&gt;Digzzy&lt;/a&gt;<br />
&lt;/li&gt;<br />
&lt;li &gt;<br />
&lt;a href=' http://www.chitradesam.com/' title='Online moives'&gt;Movies&lt;/a&gt;<br />
&lt;/li&gt;<br />
&lt;/ul&gt;<br />
&lt;/div&gt;<br />
&lt;/div&gt;<br />
&lt;/div&gt;<br />
&lt;!-- End Google style menu bar for blogspot by care4tech.com --&gt;</span></code></span></p>
<p>5. Save template to view Google style navigation.</p>
<p>Note: For both CSS and HTML code above to match with custom search bar or without custom search bar.</p>
<p></code></p>
]]></content:encoded>
			<wfw:commentRss>http://www.dhtml-menu-builder.com/blog/how-to-add-google-style-menu-bar-for-your-blog-google-nav-menu/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Don’t Underestimate the Importance of Navigation in Web Design</title>
		<link>http://www.dhtml-menu-builder.com/blog/don%e2%80%99t-underestimate-the-importance-of-navigation-in-web-design/</link>
		<comments>http://www.dhtml-menu-builder.com/blog/don%e2%80%99t-underestimate-the-importance-of-navigation-in-web-design/#comments</comments>
		<pubDate>Tue, 16 Aug 2011 16:56:42 +0000</pubDate>
		<dc:creator>evazhou</dc:creator>
				<category><![CDATA[Special Offer]]></category>
		<category><![CDATA[bottom menu]]></category>
		<category><![CDATA[drop menu]]></category>
		<category><![CDATA[navigation]]></category>
		<category><![CDATA[top menu]]></category>
		<category><![CDATA[web design]]></category>
		<category><![CDATA[web page]]></category>

		<guid isPermaLink="false">http://www.dhtml-menu-builder.com/blog/?p=1140</guid>
		<description><![CDATA[When people are surfing the web they will get very impatient when they cannot find what they want quickly. Navigating the web has to make sense to the surfer and right away, so if the web design is done with &#8230; <a href="http://www.dhtml-menu-builder.com/blog/don%e2%80%99t-underestimate-the-importance-of-navigation-in-web-design/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>When people are surfing the web they will get very impatient when  they cannot find what they want quickly. Navigating the web has to make  sense to the surfer and right away, so if the web design is done with  this in mind, the layout of an effective website will have similarities  to all the others.</p>
<p>You need to use standard conventional links like buttons underlining  the text and changing the color. It is not such a good idea to use  clever names for the links. Simple is good. Keep in mind the type of  people who are going to visit your website and have it designed to suit  them.</p>
<p>The elements of navigation are very important so whether you are  trying to inform a person about a service or product, or trying to sell  them this service or product, the web design for your links can be the  important factor to consider.</p>
<p>Inform the visitor to your website that the link is just that. Say  you are in real estate and your property is in a specific city so you  need a link with a map of that vicinity to guide them to all the  particulars about that area. They will need the city name to click on to  so specify this on your site. Professional web designers have a rule  they use which is the three clicks method. When a person is surfing they  will click no more than three times to get the information they are  looking for so make sure that they will reach all the particulars of  your site within those parameters.</p>
<p>Three clicks on your website should get them to all that they need to  know. Keeping your web page with a simple web design is more attractive  and is able to keep a person’s interest better than one which is too  full of information. People do not want to read a huge amount at one  time. People who surf the web are basically looking for information, so  only use a short movie or clip if it really adds to your site, and make  sure there is an easy way to link to it or they will be gone from your  site forever.</p>
<p>The best places for navigation</p>
<p>Top Menus-located below the graphic header page where the logo site  is found. These will be expanding menus drop menus or single links. A  text or graphic will represent them. A visitor can click on the link to  any of them. Bottom Menus can be a footer or menu bar. Footers use text  links while menu bars use text links or graphics. These are all very  important aspects of web design.</p>
<p>Right side navigation is not so often used but can be on the right  side of the page as a text area or column. Most often it is used for  advertising. Left side navigation is just the opposite to the right this  is located on the left and usually the top of the page.</p>
<p>These are just a few suggestions that you are going to want to keep in mind for your web design decisions.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.dhtml-menu-builder.com/blog/don%e2%80%99t-underestimate-the-importance-of-navigation-in-web-design/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Accessibility Tips for Better Navigation</title>
		<link>http://www.dhtml-menu-builder.com/blog/accessibility-tips-for-better-navigation/</link>
		<comments>http://www.dhtml-menu-builder.com/blog/accessibility-tips-for-better-navigation/#comments</comments>
		<pubDate>Thu, 11 Aug 2011 11:00:00 +0000</pubDate>
		<dc:creator>evazhou</dc:creator>
				<category><![CDATA[Special Offer]]></category>
		<category><![CDATA[design]]></category>
		<category><![CDATA[menu]]></category>
		<category><![CDATA[navigation]]></category>
		<category><![CDATA[web]]></category>

		<guid isPermaLink="false">http://www.dhtml-menu-builder.com/blog/?p=1133</guid>
		<description><![CDATA[Website navigation is our common communication system between all other web pages. Interlinking through unique identifiers (URLs) has worked for decades. If anything navigation links have been with the basics of web design since the early days. Through advancements in &#8230; <a href="http://www.dhtml-menu-builder.com/blog/accessibility-tips-for-better-navigation/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>Website navigation is our common communication system between all other  web pages. Interlinking through unique identifiers (URLs) has worked for  decades. If anything navigation links have been with the basics of web  design since the early days. Through advancements in digital arts and  design we have seen new practices bubbling up everywhere.</p>
<p><a href="http://www.dhtml-menu-builder.com/blog/wp-content/uploads/2011/08/web-navigation.jpg"><img class="aligncenter size-full wp-image-1134" title="web-navigation" src="http://www.dhtml-menu-builder.com/blog/wp-content/uploads/2011/08/web-navigation.jpg" alt="" width="640" height="200" /></a></p>
<p>Accessibility has turned into a major concern for Internet browsers.  With more users on their mobile phones and tablet devices it’s important  to develop a navigation around common themes. Below are some themes  repeated in modern designs for good, clear website navigation.</p>
<h2>Placement is Everything</h2>
<p>How your navigation looks holds well  over 50% importance towards how your visitors will conceptualize and  interact with your site. The needs between each website are also very  different since there are varying degrees of access and focal points.</p>
<p>A  personal portfolio website may contain 2-3 simple pages with content  and information. This is much different than a social networking  application which will present tens if not hundreds of different views.  This means fitting a lot of links into the same amount of “room” on a  user’s monitor.</p>
<p><a href="http://www.dhtml-menu-builder.com/blog/wp-content/uploads/2011/08/web-navigation-1.jpg"><img class="aligncenter size-full wp-image-1135" title="web-navigation-1" src="http://www.dhtml-menu-builder.com/blog/wp-content/uploads/2011/08/web-navigation-1.jpg" alt="" width="640" height="200" /></a>Top/right placements have yielded the best results for collective site  navigation. Often you’ll see horizontal links sewn across the page a-la  bar-style. This works well and can even contain deeper level links in  drop-down submenus.</p>
<h2>Sidebar Links and Advantages</h2>
<p>I haven’t seen too many around  these days but for future reference there is always plenty of room in a  website’s sidebar for overflow. Instead of trying to cram 30 or 40 links  into a horizontal bar, why not split 8-10 of the site’s most important  links as a heading?</p>
<p>Using this methodology you keep your visitors  focused on the core pages at the top of your layout while offering  sub-topics and related pages all down the sidebar. This method can work  well with smaller-niche sites such as video game communities. Heading  links should contain the site’s core pages while information about the  games, characters, bios, forums and other resources can be split into  sidebar pieces.</p>
<h2>Develop Font Styles Concisely</h2>
<p>CSS provides a number of  advanced features, even for today’s standards. The ability to add text  shadows, glows, embossing (and the list goes on) with just a few lines  of code is irreplaceable. Typography will make up mostly all of the  content on any website and this is <strong>especially</strong> true for site navigation.</p>
<p><a href="http://www.dhtml-menu-builder.com/blog/wp-content/uploads/2011/08/web-navigation-3.jpg"><img class="aligncenter size-full wp-image-1136" title="web-navigation-3" src="http://www.dhtml-menu-builder.com/blog/wp-content/uploads/2011/08/web-navigation-3.jpg" alt="" width="640" height="200" /></a>As a small example the choice between sans-serif and serif font can  make a world of difference in a finished product. Simple designers stick  with simple mindsets and will sometimes choose options at random –  clearly not the best approach. Consider how your final page layout  should look, how elements are aligned. Take into account what style of  font would best stand out as a frontier menu navigation.</p>
<p>You may  also try simple text manipulation techniques to draw attention. Bold  lettering, text capitalization, small caps and letter-spacing variants  are all fun and unique options to try out. CSS3 offers universal rounded  corners which can be applied onto background colors and images for neat  effects.</p>
<h2>Best Practices for Dynamic Menus</h2>
<p>Since many site navigation  links will require crawling it’s important to understand how to style a  menu. As Google and Bing send their search bots out into the web you’ll  notice how quickly a new website will become indexed. Pages which are  readily available will be checked and ranked while an order of  importance is applied.</p>
<p><a href="http://www.dhtml-menu-builder.com/blog/wp-content/uploads/2011/08/web-navigation-4.jpg"><img class="aligncenter size-full wp-image-1137" title="web-navigation-4" src="http://www.dhtml-menu-builder.com/blog/wp-content/uploads/2011/08/web-navigation-4.jpg" alt="" width="640" height="200" /></a></p>
<p>It can be useful to structure links with unordered lists in HTML  code. This is a malleable system which allows for easy  addition/subtraction from a website. Often you’ll want to add links or  change text in your site navigation on-the-fly. Holding all of the  pieces together in a list will help web bots understand the hierarchy  and makes editing super simple.</p>
<p>Unordered lists also allow more  creativity when working with CSS selectors. For example you may develop a  class “.active” which is applied to the navigation link which matches  the current page. This can be applied dynamically in all backend  languages and is even possible through JavaScript (though not  recommended).</p>
<h2>Separate File Includes</h2>
<p>Web developers with any experience in  backend programming such as Python or PHP should be familiar with  includes. When working with multiple files in a project you are able to  include code from another set into a page. This provides huge benefits  when it comes to web layouts, especially for navigation design.</p>
<p>Instead  of keeping multiple files with navigation links in each it is much  simpler to hold an external file with HTML code already written. Then  using include functions it’s simple to add the file into any web page.  This process means you can add/remove links by editing just a single  file – and all changes are updated site-wide <strong>immediately</strong>.</p>
<p><a href="http://www.dhtml-menu-builder.com/blog/wp-content/uploads/2011/08/web-navigation-5.jpg"><img class="aligncenter size-full wp-image-1138" title="web-navigation-5" src="http://www.dhtml-menu-builder.com/blog/wp-content/uploads/2011/08/web-navigation-5.jpg" alt="" width="640" height="200" /></a>Though the exact code for including files will change based on your  backend language of choice (PHP, RoR, etc…) it’s all generally the same  idea. Check through Google for a basic guide if you’re lost, since the  implementation is a bit out of scope for this article.</p>
<h2>Design and Translate</h2>
<p>The best way to learn proper navigation  styles is to study the greats. Check out popular design galleries and  notice key advantages to other navs (especially websites related to your  niche). Modern design frequently changes and there are no base rules or  stone-set solutions.</p>
<p>The best trends cannot be taught and must be  learned through frequent practice. This is why studying comes so  heavily into play when discussing unique webpage design. Examine the  works of other skilled designers and compare elements. Take the best of  all worlds and combine techniques together for your own navigation  formula.</p>
<p>If you’d like to get more involved there are many HTML/CSS menu tutorials available for free. They offer an easy step-by-step process to get  integrated in the world of web page navigation design. The topic is  broad yet refined enough to present accessibility problems. Universal  rules tend to limit creativity in this area, however one truth seems to  remain: the best way to build is study and practice followed by  innovative actions.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.dhtml-menu-builder.com/blog/accessibility-tips-for-better-navigation/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>8 Well-Designed Tabbed Menus Showcase</title>
		<link>http://www.dhtml-menu-builder.com/blog/8-well-designed-tabbed-menu-showcase/</link>
		<comments>http://www.dhtml-menu-builder.com/blog/8-well-designed-tabbed-menu-showcase/#comments</comments>
		<pubDate>Wed, 10 Aug 2011 15:32:23 +0000</pubDate>
		<dc:creator>evazhou</dc:creator>
				<category><![CDATA[Latest Samples]]></category>
		<category><![CDATA[design]]></category>
		<category><![CDATA[menu]]></category>
		<category><![CDATA[navigation]]></category>
		<category><![CDATA[tab-based navigation]]></category>
		<category><![CDATA[tabbed]]></category>
		<category><![CDATA[web design]]></category>

		<guid isPermaLink="false">http://www.dhtml-menu-builder.com/blog/?p=1122</guid>
		<description><![CDATA[There are an extensive amount of roads you can take in web design, specifically in navigation. Here, we will talk about one specific navigation technique, tab-based navigation. If properly carried out, tabbed navigation can be very clean and organized within &#8230; <a href="http://www.dhtml-menu-builder.com/blog/8-well-designed-tabbed-menu-showcase/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>There are an extensive amount of roads you can take in web design,  specifically in navigation. Here, we will talk about one specific  navigation technique, tab-based navigation. If properly carried out,  tabbed navigation can be very clean and organized within a web layout.</p>
<p>So <strong>what is tabbed navigation</strong>? Well, it is  essentially a set of buttons most often set horizontally. Tabs generally  follow numerous different styling guidelines. First, a tab set usually  is attached to or slightly protrudes from a container, like in the  example below. Also, notice how the open tab matches the background  color of the container, and the other buttons are darker. This is  another common styling guideline.</p>
<p>When you look at tabbed navigations, you will also notice many  styling trends. First, many tabs will have rounded corners on buttons.  This helps to create a clean look. Also helping to make a clean look is  the use of separation between buttons. Most designs use space to  separate buttons, but a bevel, single line, or background color contrast  will also look nicely.</p>
<p>You will also see the <strong>use of hover effects</strong>, which is  a common usability characteristic of the tabbed navigation. Gradients,  radial and linear, help to achieve an impressve hover effect that brings  dimension to the button that the user is selecting. Actually, you will  notice that many tab buttons, selected or not, will use a slight  gradient to add depth and demension to the button. This is a very simple  detail often used to bring extra styling to many different user  interface elements, such as buttons. The most important aspect in the  design of tabbed navigation is that the active tab needs to be clear and  obvious. This is what separates a tabbed navigation from an ordinary  horizontal row of buttons or hyperlinks (<em>thanks, Allen</em>).<br />
So, with all of that in mind, take a look at these<strong> excellent tabbed-navigations</strong> shown below. Look for the trends, and follow the link to further  inspect the usability of the tabbed navigation and how it looks with the  rest of the design.</p>
<p><strong>City of Grace</strong><br />
A good example of tabs that work nice colors into a usable layout.</p>
<p><a href="http://www.dhtml-menu-builder.com/blog/wp-content/uploads/2011/08/tab-menu-1.jpg"><img class="aligncenter size-full wp-image-1123" title="tab-menu-1" src="http://www.dhtml-menu-builder.com/blog/wp-content/uploads/2011/08/tab-menu-1.jpg" alt="" width="450" height="350" /></a></p>
<p><strong>Revolution Drviving</strong><br />
Brilliant button backgrounds that aren’t over the top make these tabs really great.</p>
<p><a href="http://www.dhtml-menu-builder.com/blog/wp-content/uploads/2011/08/tab-menu-1.jpg"></a><a href="http://www.dhtml-menu-builder.com/blog/wp-content/uploads/2011/08/tab-menu-2.jpg"><img class="aligncenter size-full wp-image-1124" title="tab-menu-2" src="http://www.dhtml-menu-builder.com/blog/wp-content/uploads/2011/08/tab-menu-2.jpg" alt="" width="450" height="350" /></a></p>
<p><strong>Track My People</strong><br />
These buttons use gradients for depth, and a drop shodow to add demension to the tabs behind the selected one.</p>
<p><a href="http://www.dhtml-menu-builder.com/blog/wp-content/uploads/2011/08/tab-menu-3.jpg"><img class="aligncenter size-full wp-image-1125" title="tab-menu-3" src="http://www.dhtml-menu-builder.com/blog/wp-content/uploads/2011/08/tab-menu-3.jpg" alt="" width="450" height="350" /></a></p>
<p><strong>Jobs on the Wall</strong><br />
More brilliant styling, these tabs fit perfectly with the other elements on the site.</p>
<p><a href="http://www.dhtml-menu-builder.com/blog/wp-content/uploads/2011/08/tab-menu-3.jpg"></a><a href="http://www.dhtml-menu-builder.com/blog/wp-content/uploads/2011/08/tab-menu-4.jpg"><img class="aligncenter size-full wp-image-1126" title="tab-menu-4" src="http://www.dhtml-menu-builder.com/blog/wp-content/uploads/2011/08/tab-menu-4.jpg" alt="" width="450" height="350" /></a></p>
<p><strong>LittleLines</strong><br />
This is one of the better examples of styling in this showcase because  of the gradients to add dimension to the buttons and strong borders.</p>
<p><a href="http://www.dhtml-menu-builder.com/blog/wp-content/uploads/2011/08/tab-menu-4.jpg"></a><a href="http://www.dhtml-menu-builder.com/blog/wp-content/uploads/2011/08/tab-menu-5.jpg"><img class="aligncenter size-full wp-image-1127" title="tab-menu-5" src="http://www.dhtml-menu-builder.com/blog/wp-content/uploads/2011/08/tab-menu-5.jpg" alt="" width="450" height="350" /></a></p>
<p><strong>Magpie</strong><br />
Doesn’t get much more simple than this, but still a good example.</p>
<p><a href="http://www.dhtml-menu-builder.com/blog/wp-content/uploads/2011/08/tab-menu-5.jpg"></a><a href="http://www.dhtml-menu-builder.com/blog/wp-content/uploads/2011/08/tab-menu-6.jpg"><img class="aligncenter size-full wp-image-1128" title="tab-menu-6" src="http://www.dhtml-menu-builder.com/blog/wp-content/uploads/2011/08/tab-menu-6.jpg" alt="" width="450" height="350" /></a></p>
<p><strong>The Invoice Machine</strong><br />
The navigation below uses a strong color difference, usable buttons, and borders to separate tabs from the rest of the design.</p>
<p><a href="http://www.dhtml-menu-builder.com/blog/wp-content/uploads/2011/08/tab-menu-6.jpg"></a><a href="http://www.dhtml-menu-builder.com/blog/wp-content/uploads/2011/08/tab-menu-7.jpg"><img class="aligncenter size-full wp-image-1129" title="tab-menu-7" src="http://www.dhtml-menu-builder.com/blog/wp-content/uploads/2011/08/tab-menu-7.jpg" alt="" width="450" height="350" /></a></p>
<p><strong>Inkd</strong><br />
Good styling and usable because of size and separation.</p>
<p><a href="http://www.dhtml-menu-builder.com/blog/wp-content/uploads/2011/08/tab-menu-7.jpg"></a><a href="http://www.dhtml-menu-builder.com/blog/wp-content/uploads/2011/08/tab-menu-8jpg.jpg"><img class="aligncenter size-full wp-image-1130" title="tab-menu-8jpg" src="http://www.dhtml-menu-builder.com/blog/wp-content/uploads/2011/08/tab-menu-8jpg.jpg" alt="" width="450" height="350" /></a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.dhtml-menu-builder.com/blog/8-well-designed-tabbed-menu-showcase/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Creating a Floating HTML Menu Using jQuery and CSS</title>
		<link>http://www.dhtml-menu-builder.com/blog/creating-a-floating-html-menu-using-jquery-and-css/</link>
		<comments>http://www.dhtml-menu-builder.com/blog/creating-a-floating-html-menu-using-jquery-and-css/#comments</comments>
		<pubDate>Fri, 05 Aug 2011 10:49:10 +0000</pubDate>
		<dc:creator>evazhou</dc:creator>
				<category><![CDATA[Tutorial Release]]></category>
		<category><![CDATA[CSS menu]]></category>
		<category><![CDATA[DHTML menu]]></category>
		<category><![CDATA[float menu]]></category>
		<category><![CDATA[floating menu]]></category>
		<category><![CDATA[html menu]]></category>
		<category><![CDATA[jquery menu]]></category>

		<guid isPermaLink="false">http://www.dhtml-menu-builder.com/blog/?p=1114</guid>
		<description><![CDATA[For all of us who deal with long web pages and need to scroll to the top for the menu, here’s a nice alternative: floating menus that move as you scroll a page. This is done using HTML, CSS and &#8230; <a href="http://www.dhtml-menu-builder.com/blog/creating-a-floating-html-menu-using-jquery-and-css/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>For all of us who deal with long web pages and need to scroll to the top for the menu,</p>
<p>here’s a nice alternative: floating menus that move as you scroll a page. This is done</p>
<p>using HTML, CSS and jQuery, and it’s fully W3C-compliant.</p>
<p><a href="http://www.sothink.com/product/dhtmlmenu/store/floatcenter/floatingcenter.htm" target="_blank">View floating menu samples here </a></p>
<p>This tutorial covers how to create a “floating menu” using HTML, CSS, and jQuery. To</p>
<p>reiterate, a floating menu stays visible even if you scroll down a web page. They’re</p>
<p>animated, so they move up and down as you scroll the browser window up or down. I am</p>
<p>going to show you how to make a floating menu using jQuery and CSS, and hopefully make</p>
<p>some new jQuery disciples <img src='http://www.dhtml-menu-builder.com/blog/wp-includes/images/smilies/icon_biggrin.gif' alt=':D' class='wp-smiley' />  .</p>
<p>Before we continue to the coding steps, have a look at the two screen snaps below. The</p>
<p>first shows a web page with a floating menu at top right. Of course, you can’t tell it’s</p>
<p>floating until you see it live and actually scroll the page. So look at the second</p>
<p>snapshot, and you can see that the menu has moved.</p>
<p><strong>Figure 1</strong></p>
<p><a href="http://www.dhtml-menu-builder.com/blog/wp-content/uploads/2011/08/1.jpg"><img class="aligncenter size-full wp-image-1116" title="1" src="http://www.dhtml-menu-builder.com/blog/wp-content/uploads/2011/08/1.jpg" alt="" width="722" height="409" /></a></p>
<p><strong>Figure 2</strong></p>
<p><a href="http://www.dhtml-menu-builder.com/blog/wp-content/uploads/2011/08/1.jpg"></a><a href="http://www.dhtml-menu-builder.com/blog/wp-content/uploads/2011/08/2.jpg"><img class="aligncenter size-full wp-image-1117" title="2" src="http://www.dhtml-menu-builder.com/blog/wp-content/uploads/2011/08/2.jpg" alt="" width="735" height="298" /></a></p>
<h2><strong>Step 1</strong></h2>
<p>Let’s start with the HTML markup for a nice menu consisting of three sub-menus:<br />
view plaincopy to clipboardprint?</p>
<p><span style="color: #ff0000;">&lt;div id=&#8221;floatMenu&#8221;&gt;<br />
&lt;ul&gt;<br />
&lt;li&gt;&lt;a href=&#8221;#&#8221; onclick=&#8221;return false;&#8221;&gt; Home &lt;/a&gt;&lt;/li&gt;<br />
&lt;/ul&gt;</span></p>
<p><span style="color: #ff0000;">&lt;ul&gt;<br />
&lt;li&gt;&lt;a href=&#8221;#&#8221; onclick=&#8221;return false;&#8221;&gt; Table of content &lt;/a&gt;&lt;/li&gt;<br />
&lt;li&gt;&lt;a href=&#8221;#&#8221; onclick=&#8221;return false;&#8221;&gt; Exam &lt;/a&gt;&lt;/li&gt;<br />
&lt;li&gt;&lt;a href=&#8221;#&#8221; onclick=&#8221;return false;&#8221;&gt; Wiki &lt;/a&gt;&lt;/li&gt;<br />
&lt;/ul&gt;</span></p>
<p><span style="color: #ff0000;">&lt;ul&gt;<br />
&lt;li&gt;&lt;a href=&#8221;#&#8221; onclick=&#8221;return false;&#8221;&gt; Technical support &lt;/a&gt;&lt;/li&gt;<br />
&lt;/ul&gt;<br />
&lt;/div&gt;</span></p>
<p>This is the basic markup we will use. The main part in this bit of HTML is the &lt;div id=”</p>
<p>floatMenu”&gt;…&lt;/div&gt; in Line 01, which encapsulates the whole menu. The three lists are</p>
<p>only used to demonstrate structure, which can be modified to suit your needs. In this</p>
<p>case, there are three sections to the menu, as represented by three unordered HTML</p>
<p>lists.</p>
<p>As a matter of habit, I disable the click on dummy links (href=”#”). Just to be sure</p>
<p>that a click on a dummy link doesn’t send the page back to the top, there is also an</p>
<p>onclick=”return false;” in &lt;a href&gt;. This method allows to add menu item features such</p>
<p>as lightboxing – something that requires the page to stay at its current vertical</p>
<p>position when the user clicks on a menu link.</p>
<h2><strong>Step 2</strong></h2>
<p>Now we need some CSS rules to skin and position the menu. (I used Eric A. Meyer’s CSS</p>
<p>Reset, so that’s why there is no margin:0 or padding:0 on the ul element):<br />
view plaincopy to clipboardprint?</p>
<p><span style="color: #ff0000;">body {<br />
background-color:#000;<br />
height:2000px;<br />
color:#ccc;<br />
font:10px &#8220;Lucida Grande&#8221;, &#8220;Lucida Sans&#8221;, &#8220;Trebuchet MS&#8221;, verdana, sans-serif;<br />
}<br />
#floatMenu {<br />
position:absolute;<br />
top:150px;<br />
left:50%;<br />
margin-left:235px;<br />
width:200px;<br />
}<br />
#floatMenu ul {<br />
margin-bottom:20px;<br />
}<br />
#floatMenu ul li a {<br />
display:block;<br />
border:1px solid #999;<br />
background-color:#222;<br />
border-left:6px solid #999;<br />
text-decoration:none;<br />
color:#ccc;<br />
padding:5px 5px 5px 25px;<br />
}</span></p>
<p>The body height (Line 03, above) has been set only to get enough room for our menu to</p>
<p>scroll up and down with the page. This should be removed in a real case scenario. The</p>
<p>two other things to take note of are the position:absolute (Line 08) and the left:50%</p>
<p>(Line 10), both in the #floatMenu CSS rule (Line 07), above.</p>
<p>The “position” attribute is used when you need to remove an element from the flow of the</p>
<p>document and keep it at a precise place in your page. If you use the text zoom function</p>
<p>of your browser, an element with absolute positioning will not move, even if the text</p>
<p>around it increases in size.</p>
<p>The “left” attribute is used to position the specific div element horizontally. The</p>
<p>value needs to be defined as a percentage in the case that we want a centered design.</p>
<p>With a 50% value, the left side of the container is positioned in the middle of the</p>
<p>page. To position it left or right we need to use the “margin-left” attribute (Line 11),</p>
<p>with a negative value for an offset to the left and a positive one for an offset to the</p>
<p>right.</p>
<p>The others elements in the above stylesheet rules customize the visual design.<br />
<strong></strong></p>
<h2><strong>Step 3</strong></h2>
<p>Now we have a menu of three sections positioned in the upper right hand side of the</p>
<p>page. To enhance the menu item roll-over effect, let’s add style classes menu1, menu2</p>
<p>and menu 3 to each menu section, respectively (to each &lt;ul&gt; element). We will have 3</p>
<p>distinct sub-menus using our 3 &lt;ul&gt; tags. The code below is a modification of the HTML</p>
<p>code shown in Step 1 above:<br />
view plaincopy to clipboardprint?</p>
<p><span style="color: #ff0000;">&lt;div id=&#8221;floatMenu&#8221;&gt;<br />
&lt;ul&gt;<br />
&#8230;<br />
&lt;/ul&gt;</span></p>
<p><span style="color: #ff0000;">&lt;ul&gt;<br />
&#8230;<br />
&lt;/ul&gt;</span></p>
<p><span style="color: #ff0000;">&lt;ul&gt;<br />
&#8230;<br />
&lt;/ul&gt;<br />
&lt;/div&gt;</span></p>
<p>Now let’s define some CSS hover-based roll-over effects, which will be different for</p>
<p>each menu section.<br />
view plaincopy to clipboardprint?</p>
<p><span style="color: #ff0000;">#floatMenu ul.menu1 li a:hover {<br />
border-color:#09f;<br />
}<br />
#floatMenu ul.menu2 li a:hover {<br />
border-color:#9f0;<br />
}<br />
#floatMenu ul.menu3 li a:hover {<br />
border-color:#f09;<br />
}</span></p>
<p>Now each menu section will display a different color when the mouse hovers over a menu</p>
<p>item. If you like, you can also add rules for other menu link states using :link,</p>
<p>:visited, :hover and :active pseudo classes. The order in which you should write them</p>
<p>can be easily memorized like this: LoVe and HAte, where the capitalized letters</p>
<p>represents the first letter of each state.<br />
<strong></strong></p>
<h2><strong>Step 4</strong></h2>
<p>We’ve got a nice looking menu and could stop here, but we do want that floating menu, so</p>
<p>it’s time to add some jQuery. You’ll need to download the jQuery library and the</p>
<p>Dimensions plugin. This plugin will be used to grab information about the browser’s</p>
<p>window (width, height, scroll, etc.). You can link to both bits of jQuery code from your</p>
<p>HTML file in the &lt;head&gt;…&lt;/head&gt; section. Just remember to change the URL path according</p>
<p>to where on your server you place the jQuery library and plugin files.<br />
view plaincopy to clipboardprint?</p>
<p><span style="color: #ff0000;">&lt;script language=&#8221;javascript&#8221; src=&#8221;jquery.js&#8221;&gt;&lt;/script&gt;<br />
&lt;script language=&#8221;javascript&#8221; src=&#8221;jquery.dimensions.js&#8221;&gt;&lt;/script&gt;</span></p>
<p>We’ll need some custom jQuery code as well, so start a new &lt;script&gt; section, also within</p>
<p>the &lt;head&gt;…&lt;/head&gt; section of your HTML document:<br />
view plaincopy to clipboardprint?</p>
<p><span style="color: #ff0000;">&lt;script language=&#8221;javascript&#8221;&gt;<br />
.<br />
&lt;/script&gt;</span></p>
<p>Add the following jQuery code inside the the &lt;script&gt; section:<br />
view plaincopy to clipboardprint?</p>
<p><span style="color: #ff0000;">$(document).ready(function(){<br />
// code will go here<br />
});</span></p>
<p>The $(document).ready() function is similar to the window.onLoad but improved. With the</p>
<p>window.onLoad function, the browser has to wait until the whole page (DOM and display)</p>
<p>is loaded. With the $(document).ready() function, the browser only waits until the DOM</p>
<p>is loaded, which means jQuery can start manipulating elements sooner.<br />
<strong></strong></p>
<h2><strong>Step 5</strong></h2>
<p>We need a listener for the “scroll page” window event. Our custom jQuery script now</p>
<p>looks like this:<br />
view plaincopy to clipboardprint?</p>
<p><span style="color: #ff0000;">$(document).ready(function(){<br />
$(window).scroll(function () {<br />
// code will go here<br />
});<br />
});</span></p>
<p>A listener is an event handler waiting on standby for a particular window event to</p>
<p>happen – in this a page scroll up or down.<br />
<strong></strong></p>
<h2><strong>Step 6</strong></h2>
<p>Since our menu will “float” as the page is scrolled, we need to track its initial</p>
<p>position. Instead of hard-coding that into the jQuery, we’ll read it’s position using</p>
<p>the Dimensions jQuery plugin, then use the retrieved value. We will do the same with the</p>
<p>name of our menu. Let’s add two variable definitions (Lines 01, 02) so that our code now</p>
<p>looks like this:<br />
view plaincopy to clipboardprint?</p>
<p><span style="color: #ff0000;">var name = &#8220;#floatMenu&#8221;;<br />
var menuYloc = null;</span></p>
<p><span style="color: #ff0000;">$(document).ready(function(){<br />
menuYloc = parseInt($(name).css(&#8220;top&#8221;).substring(0,$(name).css(&#8220;top&#8221;).indexOf</span></p>
<p><span style="color: #ff0000;">(&#8220;px&#8221;)))<br />
$(window).scroll(function () {<br />
// code will go here<br />
});<br />
});</span></p>
<p>Lines 01 and 02 define variables “name” and “menuYloc”. Line 05 sets the value of</p>
<p>“menuYloc”. The “name” variable will be used to reference our floating menu. The</p>
<p>“menuYloc” variable will contain the original vertical position of our menu.</p>
<p>Let’s look at how the value of menuYloc is set in Line 05. This statement is an example</p>
<p>of jQuery’s powerful function-chaining. First we read the “top” attribute value from the</p>
<p>CSS rules of our menu element (which is “150px”, set in Step 2). Then we strip off the “</p>
<p>px” string at the end, since we only need the “150? part. To do this, the jQuery function</p>
<p>call .css(“top”) first finds the value of the top attribute for the menu. (This</p>
<p>attribute was set in Line 09 of the code in Step 2, above.) That results in retrieving</p>
<p>the value “150px”. Then the .indexOf() function finds where the “px” in “150px” starts,</p>
<p>and the .substring() function ensures we save everything before the “px”. The .parseInt</p>
<p>() function turns the string “150? into an numeric integer value.<br />
<strong></strong></p>
<h2><strong>Step 7</strong></h2>
<p>We now arrived at the fun part of this tutorial: animating the menu to make it “float”.</p>
<p>To do this, we need to determine how far the page has scrolled in pixel dimension. We</p>
<p>have the original menu location stored in variable “menuYloc”. We need the offset of the</p>
<p>scroll bar, which we can get from the command $(document).scrollTop(), defined in the</p>
<p>Dimensions jQuery plugin. After grabbing the offset we can add the animate command.</p>
<p>Lines 07 and 08, below, show the new code:<br />
view plaincopy to clipboardprint?</p>
<p><span style="color: #ff0000;">var name = &#8220;#floatMenu&#8221;;<br />
var menuYloc = null;</span></p>
<p><span style="color: #ff0000;">$(document).ready(function(){<br />
menuYloc = parseInt($(name).css(&#8220;top&#8221;).substring(0,$(name).css(&#8220;top&#8221;).indexOf</span></p>
<p><span style="color: #ff0000;">(&#8220;px&#8221;)))<br />
$(window).scroll(function () {<br />
var offset = menuYloc+$(document).scrollTop()+&#8221;px&#8221;;<br />
$(name).animate({top:offset},{duration:500,queue:false});<br />
});<br />
});</span></p>
<p>The variable “offset”, in Line 07 above, contains the difference between the original</p>
<p>location of the menu (menuYloc) and the scroll value ($(document).scrollTop()), in pixel</p>
<p>measurement. To make it work as a CSS rule, we add the necessary measurement unit, “px”,</p>
<p>after the numeric value. Now we can apply the vertical offset, as calculated, to</p>
<p>position the menu and thus making it move.</p>
<p>To make it all look nicer, let’s make use of jQuery’s animation options. We’ve stored</p>
<p>the menu name in the variable “name” and can recall it when needed, to use it along with</p>
<p>the .animate() function. The animate function requires two parameters: (1) the style</p>
<p>properties, and the (2) animation options. In this tutorial, we just need to animate the</p>
<p>“top” CSS property, but to specify additional parameters, separate each property:value</p>
<p>pair with a comma (,).</p>
<p>We’re using two parameters here. The “duration” is the length of the animation<br />
in milliseconds, and the “queue” is a list of all positions we want our object to be</p>
<p>animated to. Since we only want to animate our object to its final location (the browser</p>
<p>’s current scroll location), we set “queue” to false.</p>
<p>We should now have a functioning floating menu.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.dhtml-menu-builder.com/blog/creating-a-floating-html-menu-using-jquery-and-css/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>10  Attractive Navigation Menus for Inspiration</title>
		<link>http://www.dhtml-menu-builder.com/blog/10-attractive-navigation-menus-for-inspiration/</link>
		<comments>http://www.dhtml-menu-builder.com/blog/10-attractive-navigation-menus-for-inspiration/#comments</comments>
		<pubDate>Thu, 04 Aug 2011 14:17:05 +0000</pubDate>
		<dc:creator>evazhou</dc:creator>
				<category><![CDATA[Latest Samples]]></category>
		<category><![CDATA[navigation menu]]></category>
		<category><![CDATA[navigation menus]]></category>
		<category><![CDATA[site navigation]]></category>
		<category><![CDATA[web design]]></category>

		<guid isPermaLink="false">http://www.dhtml-menu-builder.com/blog/?p=1098</guid>
		<description><![CDATA[Successful, eye-catching and mainly user-friendly site navigation sometimes is key to whole web design, because users usually search for navigation at first, when they visit website. Also don’t shy to experiment – portfolio websites can stand out just by that, &#8230; <a href="http://www.dhtml-menu-builder.com/blog/10-attractive-navigation-menus-for-inspiration/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>Successful, eye-catching and mainly user-friendly site navigation  sometimes is key to whole web design, because users usually search for  navigation at first, when they visit website. Also don’t shy to  experiment – portfolio websites can stand out just by that, creating  something beautiful and unusual. In our days there are times when whole  websites slide over your eyes, possibilities are pretty limitless. Keeping in mind such parameters, I created a list with 10 innovative,  beautiful, creative and eye-catching navigation menus for your  inspiration in web development process.<strong> </strong></p>
<ol>
<li><strong>Panic – Coda</strong></li>
<p>Popular menu already, you may know about this one before.</p>
<p><a href="http://www.dhtml-menu-builder.com/blog/wp-content/uploads/2011/08/web-menu-navigation-1.jpg"><img class="aligncenter size-full wp-image-1099" title="web-menu-navigation-1" src="http://www.dhtml-menu-builder.com/blog/wp-content/uploads/2011/08/web-menu-navigation-1.jpg" alt="" width="570" height="369" /></a></p>
<li><strong>Helmy-Bern</strong></li>
<p>Excellent example of well implemented grunge website and JavaScript navigation</p>
<p><a href="http://www.dhtml-menu-builder.com/blog/wp-content/uploads/2011/08/web-menu-navigation-2.jpg"><img class="aligncenter size-full wp-image-1100" title="web-menu-navigation-2" src="http://www.dhtml-menu-builder.com/blog/wp-content/uploads/2011/08/web-menu-navigation-2.jpg" alt="" width="570" height="333" /></a></p>
<li><strong>SkiAlpine</strong></li>
<p>Simple yet well designed navigation dropdown menu.</p>
<p><a href="http://www.dhtml-menu-builder.com/blog/wp-content/uploads/2011/08/web-menu-navigation-3.jpg"><img class="aligncenter size-full wp-image-1103" title="web-menu-navigation-3" src="http://www.dhtml-menu-builder.com/blog/wp-content/uploads/2011/08/web-menu-navigation-3.jpg" alt="" width="570" height="202" /></a></p>
<li><strong>TapTapTap</strong></li>
<p>Exceptional navigation, you gonna love this one.</p>
<p><a href="http://www.dhtml-menu-builder.com/blog/wp-content/uploads/2011/08/web-menu-navigation-4.jpg"><img class="aligncenter size-full wp-image-1104" title="web-menu-navigation-4" src="http://www.dhtml-menu-builder.com/blog/wp-content/uploads/2011/08/web-menu-navigation-4.jpg" alt="" width="570" height="459" /></a></p>
<li><strong>TheHoleInOurGospel</strong></li>
<p><strong><br />
</strong><a href="http://www.dhtml-menu-builder.com/blog/wp-content/uploads/2011/08/web-menu-navigation-4.jpg"></a><a href="http://www.dhtml-menu-builder.com/blog/wp-content/uploads/2011/08/web-menu-navigation-5.jpg"><img class="aligncenter size-full wp-image-1105" title="web-menu-navigation-5" src="http://www.dhtml-menu-builder.com/blog/wp-content/uploads/2011/08/web-menu-navigation-5.jpg" alt="" width="570" height="174" /></a></p>
<li><strong>Apple</strong></li>
<p>Whole website is one big beauty and MAC section has interesting sliding menu.</p>
<p><a href="http://www.dhtml-menu-builder.com/blog/wp-content/uploads/2011/08/web-menu-navigation-5.jpg"></a><a href="http://www.dhtml-menu-builder.com/blog/wp-content/uploads/2011/08/web-menu-navigation-6.jpg"><img class="aligncenter size-full wp-image-1106" title="web-menu-navigation-6" src="http://www.dhtml-menu-builder.com/blog/wp-content/uploads/2011/08/web-menu-navigation-6.jpg" alt="" width="570" height="207" /></a></p>
<li><strong>Creasenso</strong></li>
<p>Beautiful rollover effects in navigation.</p>
<p><a href="http://www.dhtml-menu-builder.com/blog/wp-content/uploads/2011/08/web-menu-navigation-6.jpg"></a><a href="http://www.dhtml-menu-builder.com/blog/wp-content/uploads/2011/08/web-menu-navigation-7.jpg"><img class="aligncenter size-full wp-image-1107" title="web-menu-navigation-7" src="http://www.dhtml-menu-builder.com/blog/wp-content/uploads/2011/08/web-menu-navigation-7.jpg" alt="" width="570" height="204" /></a></p>
<li><strong>Branded07</strong></li>
<p><strong><br />
</strong><a href="http://www.dhtml-menu-builder.com/blog/wp-content/uploads/2011/08/web-menu-navigation-7.jpg"></a><a href="http://www.dhtml-menu-builder.com/blog/wp-content/uploads/2011/08/web-menu-navigation-8.jpg"><img class="aligncenter size-full wp-image-1108" title="web-menu-navigation-8" src="http://www.dhtml-menu-builder.com/blog/wp-content/uploads/2011/08/web-menu-navigation-8.jpg" alt="" width="570" height="279" /></a></p>
<li><strong>Aperfolio</strong></li>
<p><strong><br />
</strong><a href="http://www.dhtml-menu-builder.com/blog/wp-content/uploads/2011/08/web-menu-navigation-8.jpg"></a><a href="http://www.dhtml-menu-builder.com/blog/wp-content/uploads/2011/08/web-menu-navigation-9.jpg"><img class="aligncenter size-full wp-image-1109" title="web-menu-navigation-9" src="http://www.dhtml-menu-builder.com/blog/wp-content/uploads/2011/08/web-menu-navigation-9.jpg" alt="" width="570" height="221" /></a></p>
<li><strong>AteBits</strong></li>
<p><strong><br />
</strong><a href="http://www.dhtml-menu-builder.com/blog/wp-content/uploads/2011/08/web-menu-navigation-10.jpg"><img class="aligncenter size-full wp-image-1110" title="web-menu-navigation-10" src="http://www.dhtml-menu-builder.com/blog/wp-content/uploads/2011/08/web-menu-navigation-10.jpg" alt="" width="570" height="246" /></a></ol>
]]></content:encoded>
			<wfw:commentRss>http://www.dhtml-menu-builder.com/blog/10-attractive-navigation-menus-for-inspiration/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>8 Example Websites Using Rounded Corner Menu</title>
		<link>http://www.dhtml-menu-builder.com/blog/8-example-websites-using-rounded-corner-menu/</link>
		<comments>http://www.dhtml-menu-builder.com/blog/8-example-websites-using-rounded-corner-menu/#comments</comments>
		<pubDate>Thu, 28 Jul 2011 15:55:09 +0000</pubDate>
		<dc:creator>evazhou</dc:creator>
				<category><![CDATA[Latest Samples]]></category>
		<category><![CDATA[DHTML menu]]></category>
		<category><![CDATA[drop down menu]]></category>
		<category><![CDATA[rounded menu]]></category>
		<category><![CDATA[web menu]]></category>

		<guid isPermaLink="false">http://www.dhtml-menu-builder.com/blog/?p=1085</guid>
		<description><![CDATA[Creating rounded corner in web design absolutely not a new thing, but with the presence of CSS3 in popular browser like Firefox, Chrome, Safari, and Opera, now is easier for us to creating rounded corner, sometimes I remember before when &#8230; <a href="http://www.dhtml-menu-builder.com/blog/8-example-websites-using-rounded-corner-menu/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>Creating rounded corner in web design absolutely not a new thing, but  with the presence of CSS3 in popular browser like Firefox, Chrome,  Safari, and Opera, now is easier for us to creating rounded corner,  sometimes I remember before when I need to add an image in each corner  of the box, what a frustrating. Untill these day many websites still  using it as a main navigation style, even in the corporate website, and  some of more simple websites their menu style inspired by apple.</p>
<h2><strong>Mozilla Firefox</strong></h2>
<h2><a href="http://www.dhtml-menu-builder.com/blog/wp-content/uploads/2011/07/rounded-corner-menu.png"><img class="aligncenter size-full wp-image-1086" title="rounded-corner-menu" src="http://www.dhtml-menu-builder.com/blog/wp-content/uploads/2011/07/rounded-corner-menu.png" alt="drop down menu" width="500" height="200" /></a><strong>Oracle</strong></h2>
<h2><a href="http://www.dhtml-menu-builder.com/blog/wp-content/uploads/2011/07/rounded-corner-menu-2.png"><img class="aligncenter size-full wp-image-1087" title="rounded-corner-menu-2" src="http://www.dhtml-menu-builder.com/blog/wp-content/uploads/2011/07/rounded-corner-menu-2.png" alt="dhtml menu" width="496" height="200" /></a><strong>Apple</strong></h2>
<h2><a href="http://www.dhtml-menu-builder.com/blog/wp-content/uploads/2011/07/rounded-corner-menu-3.png"><img class="aligncenter size-full wp-image-1088" title="rounded-corner-menu-3" src="http://www.dhtml-menu-builder.com/blog/wp-content/uploads/2011/07/rounded-corner-menu-3.png" alt="web menu" width="500" height="200" /></a><strong>Roxio</strong></h2>
<h2><a href="http://www.dhtml-menu-builder.com/blog/wp-content/uploads/2011/07/rounded-corner-menu-4.png"><img class="aligncenter size-full wp-image-1089" title="rounded-corner-menu-4" src="http://www.dhtml-menu-builder.com/blog/wp-content/uploads/2011/07/rounded-corner-menu-4.png" alt="drop down menu" width="500" height="200" /></a><strong>Real Mac Software</strong></h2>
<h2><a href="http://www.dhtml-menu-builder.com/blog/wp-content/uploads/2011/07/rounded-corner-menu-5.png"><img class="aligncenter size-full wp-image-1090" title="rounded-corner-menu-5" src="http://www.dhtml-menu-builder.com/blog/wp-content/uploads/2011/07/rounded-corner-menu-5.png" alt="web menu" width="500" height="200" /></a><strong>gOS</strong><a href="http://www.dhtml-menu-builder.com/blog/wp-content/uploads/2011/07/rounded-corner-menu-6.png"><img class="aligncenter size-full wp-image-1091" title="rounded-corner-menu-6" src="http://www.dhtml-menu-builder.com/blog/wp-content/uploads/2011/07/rounded-corner-menu-6.png" alt="web menu" width="500" height="200" /></a><strong>Skype</strong></h2>
<h2><strong></strong><a href="http://www.dhtml-menu-builder.com/blog/wp-content/uploads/2011/07/rounded-corner-menu-7.png"><img class="aligncenter size-full wp-image-1092" title="rounded-corner-menu-7" src="http://www.dhtml-menu-builder.com/blog/wp-content/uploads/2011/07/rounded-corner-menu-7.png" alt="dhtml menu" width="500" height="200" /></a><strong>Loop Insight</strong></h2>
<p><a href="http://www.dhtml-menu-builder.com/blog/wp-content/uploads/2011/07/rounded-corner-menu-8.png"><img class="aligncenter size-full wp-image-1093" title="rounded-corner-menu-8" src="http://www.dhtml-menu-builder.com/blog/wp-content/uploads/2011/07/rounded-corner-menu-8.png" alt="menu builder" width="500" height="200" /></a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.dhtml-menu-builder.com/blog/8-example-websites-using-rounded-corner-menu/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>10 Creative Drop Down Menus</title>
		<link>http://www.dhtml-menu-builder.com/blog/10-creative-drop-down-menus/</link>
		<comments>http://www.dhtml-menu-builder.com/blog/10-creative-drop-down-menus/#comments</comments>
		<pubDate>Tue, 26 Jul 2011 16:41:04 +0000</pubDate>
		<dc:creator>evazhou</dc:creator>
				<category><![CDATA[Latest Samples]]></category>
		<category><![CDATA[drop down menus]]></category>
		<category><![CDATA[horizontal menu]]></category>
		<category><![CDATA[navigation menu]]></category>
		<category><![CDATA[vertical menu]]></category>

		<guid isPermaLink="false">http://www.dhtml-menu-builder.com/blog/?p=1071</guid>
		<description><![CDATA[One of the first things to do when planning out a new website is to work out all of the content that will be in the site. You then divide that up into sections and then into various levels of &#8230; <a href="http://www.dhtml-menu-builder.com/blog/10-creative-drop-down-menus/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>One of the first things to do when planning out a new website is to  work out all of the content that will be in the site. You then divide  that up into sections and then into <strong>various levels of navigation</strong>.</p>
<p>The result is a boring list of links.</p>
<p>That list of links is one of the most <strong>important part of your website</strong> though, it goes without saying that every visitor to the site will be using them to get around.</p>
<p>In this post we’ve pulled together some of the <strong>best designed drop down menus</strong> (both horizontal menus and vertical menus) to help give you ideas to enhance your own.<br />
<strong><br />
1. Clear Left</strong></p>
<p>Another multi-line menu with a great color scheme.</p>
<p><a href="http://www.dhtml-menu-builder.com/blog/wp-content/uploads/2011/07/navigation-menu.png"><img class="aligncenter size-full wp-image-1073" title="navigation-menu" src="http://www.dhtml-menu-builder.com/blog/wp-content/uploads/2011/07/navigation-menu.png" alt="" width="501" height="121" /></a></p>
<p><strong>2. Mint</strong></p>
<p>Another wide-tabbed menu with a transparent effect.</p>
<p><a href="http://www.dhtml-menu-builder.com/blog/wp-content/uploads/2011/07/navigation-menu-2.png"><img class="aligncenter size-full wp-image-1074" title="navigation-menu-2" src="http://www.dhtml-menu-builder.com/blog/wp-content/uploads/2011/07/navigation-menu-2.png" alt="" width="501" height="158" /></a></p>
<p><strong>3. Ronny Pries</strong></p>
<p>Chalk-on-blackboard effect makes the menu casual yet creative.</p>
<p><a href="http://www.dhtml-menu-builder.com/blog/wp-content/uploads/2011/07/navigation-menu-3.png"><img class="aligncenter size-full wp-image-1075" title="navigation-menu-3" src="http://www.dhtml-menu-builder.com/blog/wp-content/uploads/2011/07/navigation-menu-3.png" alt="" width="413" height="159" /></a></p>
<p><strong>4. Sohtanaka</strong></p>
<p>Pretty colors, elegant fonts and light effects.</p>
<p><a href="http://www.dhtml-menu-builder.com/blog/wp-content/uploads/2011/07/navigation-menu-4.png"><img class="aligncenter size-full wp-image-1076" title="navigation-menu-4" src="http://www.dhtml-menu-builder.com/blog/wp-content/uploads/2011/07/navigation-menu-4.png" alt="" width="481" height="187" /></a></p>
<p><strong>5. The Resume Girl</strong></p>
<p>Another creative menu with a nice casual look.</p>
<p><a href="http://www.dhtml-menu-builder.com/blog/wp-content/uploads/2011/07/navigation-menu-5.png"><img class="aligncenter size-full wp-image-1077" title="navigation-menu-5" src="http://www.dhtml-menu-builder.com/blog/wp-content/uploads/2011/07/navigation-menu-5.png" alt="" width="517" height="136" /></a></p>
<p><strong>6. Web Designer Wall</strong></p>
<p>Another casual sticky-note style menu.</p>
<p><a href="http://www.dhtml-menu-builder.com/blog/wp-content/uploads/2011/07/navigation-menu-5.png"></a><a href="http://www.dhtml-menu-builder.com/blog/wp-content/uploads/2011/07/navigation-menu-6.png"><img class="aligncenter size-full wp-image-1078" title="navigation-menu-6" src="http://www.dhtml-menu-builder.com/blog/wp-content/uploads/2011/07/navigation-menu-6.png" alt="" width="490" height="156" /></a></p>
<p><strong>7.  Carbonica</strong></p>
<p>A casual arrow and a circle indicates the current page. The casual font also adds to the beauty of this menu.</p>
<p><a href="http://www.dhtml-menu-builder.com/blog/wp-content/uploads/2011/07/navigation-menu-7.png"><img class="aligncenter size-full wp-image-1079" title="navigation-menu-7" src="http://www.dhtml-menu-builder.com/blog/wp-content/uploads/2011/07/navigation-menu-7.png" alt="" width="296" height="310" /></a></p>
<p><strong>8. IipVapi</strong></p>
<p>A black-and-white vertical menu in the shape of a post card.</p>
<p><a href="http://www.dhtml-menu-builder.com/blog/wp-content/uploads/2011/07/navigation-menu-7.png"></a><a href="http://www.dhtml-menu-builder.com/blog/wp-content/uploads/2011/07/navigation-menu-8.png"><img class="aligncenter size-full wp-image-1080" title="navigation-menu-8" src="http://www.dhtml-menu-builder.com/blog/wp-content/uploads/2011/07/navigation-menu-8.png" alt="" width="241" height="259" /></a></p>
<p><strong>9. Nando Designer</strong></p>
<p>A casual menu with a notebook effect.</p>
<p><a href="http://www.dhtml-menu-builder.com/blog/wp-content/uploads/2011/07/navigation-menu-8.png"></a><a href="http://www.dhtml-menu-builder.com/blog/wp-content/uploads/2011/07/navigation-menu-9.png"><img class="aligncenter size-full wp-image-1081" title="navigation-menu-9" src="http://www.dhtml-menu-builder.com/blog/wp-content/uploads/2011/07/navigation-menu-9.png" alt="" width="222" height="212" /></a><a href="http://www.dhtml-menu-builder.com/blog/wp-content/uploads/2011/07/navigation-menu-10.png"></a></p>
<p><strong>10. Nick Ad</strong></p>
<p>A highly dynamic menu with great effects and contrasting colors.</p>
<p><a href="http://www.dhtml-menu-builder.com/blog/wp-content/uploads/2011/07/navigation-menu-10.png"><img class="aligncenter size-full wp-image-1082" title="navigation-menu-10" src="http://www.dhtml-menu-builder.com/blog/wp-content/uploads/2011/07/navigation-menu-10.png" alt="" width="238" height="134" /></a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.dhtml-menu-builder.com/blog/10-creative-drop-down-menus/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

