<?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 &#187; DHTML menu</title>
	<atom:link href="http://www.dhtml-menu-builder.com/blog/tag/dhtml-menu/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>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>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>How to display pop up menu by right-clicking?</title>
		<link>http://www.dhtml-menu-builder.com/blog/how-to-display-pop-up-menu-by-right-clicking/</link>
		<comments>http://www.dhtml-menu-builder.com/blog/how-to-display-pop-up-menu-by-right-clicking/#comments</comments>
		<pubDate>Tue, 22 Feb 2011 13:49:38 +0000</pubDate>
		<dc:creator>evazhou</dc:creator>
				<category><![CDATA[Tutorial Release]]></category>
		<category><![CDATA[context menu]]></category>
		<category><![CDATA[DHTML menu]]></category>
		<category><![CDATA[navigation menu]]></category>
		<category><![CDATA[pop up menu]]></category>
		<category><![CDATA[web menu]]></category>

		<guid isPermaLink="false">http://www.dhtml-menu-builder.com/blog/?p=985</guid>
		<description><![CDATA[Pop up menu is visible and placed on the top for majority websites. For some websites, the web designers want to navigate the website by DHTML menu, but there is no space to place menu, context menu type is the &#8230; <a href="http://www.dhtml-menu-builder.com/blog/how-to-display-pop-up-menu-by-right-clicking/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>Pop up menu is  visible and placed on the top for majority  websites.  For some websites, the web designers want to navigate the website by  DHTML menu, but there is no space to place  menu, context menu type is  the best choice to show menu and it can be shown anywhere just by  right-clicking.<a href="http://www.sothink.com/product/dhtmlmenu/pop-up-menu.htm" target="_blank"><img class="aligncenter size-full wp-image-986" title="context-menu" src="http://www.dhtml-menu-builder.com/blog/wp-content/uploads/2011/02/context-menu.jpg" alt="pop-up-menu" width="703" height="211" /></a><br />
<strong>Step 1: Create pop up menu from built-in templates</strong></p>
<p>Launch <a href="http://www.sothink.com/product/dhtmlmenu/">Sothink DHTML Menu</a>,  &#8220;Startup&#8221; window opens, you can start menu from built-in templates or  new blank. First, click the name from built-in templates to select the  menu; and then, preview menu style in preview window of Startup; last,  click &#8220;OK&#8221; to start menu creation.</p>
<p><img title="Pop up Menu" src="http://www.sothink.com/images/product/dhtmlmenu/pop-up-menu-1.jpg" alt="Pop up Menu - Menu Template" width="570" height="467" /></p>
<p><strong>Step 2: Choose menu type for the chosen menu </strong></p>
<p>In tasks panel, click &#8220;Menu Type&#8221; option on the Global  panel; and enter the &#8220;Global &gt; Menu Type&#8221; to set the menu as &#8220;Context  menu&#8221;.</p>
<p><img title="Pop up Menu" src="http://www.sothink.com/images/product/dhtmlmenu/pop-up-menu-2.jpg" alt="Pop up Menu - Menu Type" width="560" height="188" /></p>
<p><strong>Step 3: Publish menu to website</strong></p>
<p>Menu creation is finished. Click the button &#8220;Publish&#8221; to  choose the best publishing method. After the option is check, you can  follow the step to publish your navigation to website. And upload all  the resources.</p>
<p><img title="Pop up Menu" src="http://www.sothink.com/images/product/dhtmlmenu/pop-up-menu-3.jpg" alt="Pop up Menu - Publish Menu" width="249" height="177" /></p>
]]></content:encoded>
			<wfw:commentRss>http://www.dhtml-menu-builder.com/blog/how-to-display-pop-up-menu-by-right-clicking/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Showcase of 30 diverse white menu styles</title>
		<link>http://www.dhtml-menu-builder.com/blog/showcase-of-30-diverse-white-menu-styles/</link>
		<comments>http://www.dhtml-menu-builder.com/blog/showcase-of-30-diverse-white-menu-styles/#comments</comments>
		<pubDate>Mon, 21 Feb 2011 15:16:36 +0000</pubDate>
		<dc:creator>evazhou</dc:creator>
				<category><![CDATA[Latest Samples]]></category>
		<category><![CDATA[DHTML menu]]></category>
		<category><![CDATA[horizontal menu]]></category>
		<category><![CDATA[navigation]]></category>
		<category><![CDATA[vertical menu]]></category>
		<category><![CDATA[web menu]]></category>
		<category><![CDATA[white menu]]></category>

		<guid isPermaLink="false">http://www.dhtml-menu-builder.com/blog/?p=983</guid>
		<description><![CDATA[White menu refers to drop down menu which adopts white as the main color to navigate website. As we known, white is the feasible color to match with all kinds of color, it can create wonderful visual matchable effect with &#8230; <a href="http://www.dhtml-menu-builder.com/blog/showcase-of-30-diverse-white-menu-styles/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>White menu refers to drop down menu which adopts white as the main  color to navigate  website. As we known, white is the feasible color to  match with all kinds of color, it can create wonderful visual matchable  effect with other colors. Similarly, white menus are also wild  navigation menu to decorate most websites of different colors. Besides  color, white menus can be built in horizontal level, vertical level, tab  menu, round-corner menu and multi-column menu. Next, let&#8217;s appreciate  changeable  menu styles:</p>
<h2>White menu &#8211; horizontal menu</h2>
<ul>
<li><strong>Special menu designed by Jason Reed Web</strong></li>
</ul>
<p><img title="White Menu" src="http://www.sothink.com/images/product/dhtmlmenu/white-menu-11.jpg" alt="White Menu - Horizontal Menu" width="480" height="154" /></p>
<ul>
<li><strong>Gotmilk Flash menu</strong></li>
</ul>
<p><img title="White Menu" src="http://www.sothink.com/images/product/dhtmlmenu/white-menu-17.jpg" alt="White Menu - Horizontal Menu" width="490" height="135" /></p>
<ul>
<li><strong>Web menu designed by Jeremy Levine </strong></li>
</ul>
<p><img title="White Menu" src="http://www.sothink.com/images/product/dhtmlmenu/white-menu-12.jpg" alt="White Menu - Horizontal Menu" width="480" height="175" /></p>
<ul>
<li><strong>Maxandlous.com unusual menu</strong></li>
</ul>
<p><img title="White Menu" src="http://www.sothink.com/images/product/dhtmlmenu/white-menu-30.png" alt="White Menu - Horizontal Menu" width="386" height="79" /></p>
<ul>
<li><strong>JavaScript menu with handwring style</strong></li>
</ul>
<p><img title="White Menu" src="http://www.sothink.com/images/product/dhtmlmenu/white-menu-26.png" alt="White Menu - Horizontal Menu" width="476" height="125" /></p>
<ul>
<li><strong>Web menu with button style </strong>
<p><img title="White Menu" src="http://www.sothink.com/images/product/dhtmlmenu/white-menu-24.png" alt="White Menu - Horizontal Menu" width="490" height="105" /></li>
<li><strong>DHTML Menu for Jayme Blackmon</strong></li>
</ul>
<p><img title="White Menu" src="http://www.sothink.com/images/product/dhtmlmenu/white-menu-19.jpg" alt="White Menu - Horizontal Menu" width="480" height="90" /></p>
<ul>
<li><strong>Alex Buga menu</strong></li>
</ul>
<p><img title="White Menu" src="http://www.sothink.com/images/product/dhtmlmenu/white-menu-16.jpg" alt="White Menu - Horizontal Menu" width="480" height="137" /></p>
<ul>
<li><strong>Water’s Edge Media web menu</strong></li>
</ul>
<p><img title="White Menu" src="http://www.sothink.com/images/product/dhtmlmenu/white-menu-20.jpg" alt="White Menu - Horizontal Menu" width="480" height="130" /></p>
<ul>
<li><strong>Ronnypries.de navigation menu</strong></li>
</ul>
<p><img title="White Menu" src="http://www.sothink.com/images/product/dhtmlmenu/white-menu-21.jpg" alt="White Menu - Horizontal Menu" width="480" height="163" /></p>
<ul>
<li><strong>Pipe DHTML menu</strong></li>
</ul>
<p><a href="http://www.sothink.com/product/dhtmlmenu/samples/"><img title="White Menu" src="http://www.sothink.com/images/product/dhtmlmenu/white-menu-1.jpg" alt="White Menu - Horizontal Menu" width="560" height="198" /></a></p>
<h2>White menu &#8211; round corner menu</h2>
<ul>
<li><strong>Round style menu with mouse over </strong></li>
</ul>
<p><img title="White Menu" src="http://www.sothink.com/images/product/dhtmlmenu/white-menu-25.png" alt="White Menu - Round Corner Menu" width="406" height="60" /></p>
<ul>
<li><strong>Silver round corner menu </strong></li>
</ul>
<p><a href="http://www.sothink.com/product/dhtmlmenu/samples/"><img title="White Menu" src="http://www.sothink.com/images/product/dhtmlmenu/white-menu-3.jpg" alt="White Menu - Round Corner Menu" width="556" height="149" /></a></p>
<h2>White menu &#8211; tab menu</h2>
<ul>
<li><strong>Silver tab menu </strong></li>
</ul>
<p><a href="http://www.sothink.com/product/dhtmlmenu/samples/"><img title="White Menu" src="http://www.sothink.com/images/product/dhtmlmenu/white-menu-4.jpg" alt="White Menu - Tab Menu" width="555" height="161" /></a></p>
<ul>
<li><strong>Vertical tab menu</strong></li>
</ul>
<p><img title="White Menu" src="http://www.sothink.com/images/product/dhtmlmenu/white-menu-28.jpg" alt="White Menu - Tab Menu" width="326" height="418" /></p>
<ul>
<li><strong>Fubiz slidebar </strong></li>
</ul>
<p><img title="White Menu" src="http://www.sothink.com/images/product/dhtmlmenu/white-menu-9.jpg" alt="White Menu - Tab Menu" width="480" height="215" /></p>
<ul>
<li><strong>Great FreelanceSwitch menu</strong></li>
</ul>
<p><img title="White Menu" src="http://www.sothink.com/images/product/dhtmlmenu/white-menu-10.jpg" alt="White Menu - Tab Menu" width="480" height="215" /></p>
<h2>White menu &#8211; multi-column menu</h2>
<ul>
<li><strong>Barack Obama menu </strong></li>
</ul>
<p><img title="White Menu" src="http://www.sothink.com/images/product/dhtmlmenu/white-menu-6.jpg" alt="White Menu - Multi-Column Menu" width="480" height="215" /></p>
<ul>
<li><strong>&#8220;Speaking&#8221; navigation menu</strong></li>
</ul>
<p><img title="White Menu" src="http://www.sothink.com/images/product/dhtmlmenu/white-menu-23.png" alt="White Menu - Multi-Column Menu" width="520" height="158" /></p>
<ul>
<li><strong>Multi-column menu navigation </strong></li>
</ul>
<p><a href="http://www.sothink.com/product/dhtmlmenu/samples/"><img title="White Menu" src="http://www.sothink.com/images/product/dhtmlmenu/white-menu-5.jpg" alt="White Menu - Multi-Column Menu" width="556" height="197" /></a></p>
<h2>White menu &#8211; vertical menu</h2>
<ul>
<li><strong>lace web menu</strong></li>
</ul>
<p><a href="http://www.sothink.com/product/dhtmlmenu/samples/"><img title="White Menu" src="http://www.sothink.com/images/product/dhtmlmenu/white-menu-2.jpg" alt="White Menu - Vertical Menu" width="359" height="297" /></a></p>
<ul>
<li><strong>Cobahair.co.uk uses only BIG typography…</strong></li>
</ul>
<p><img title="White Menu" src="http://www.sothink.com/images/product/dhtmlmenu/white-menu-29.gif" alt="White Menu - Vertical Menu" width="256" height="270" /></p>
<ul>
<li> <strong>jBunti Hover-effect Menu </strong></li>
</ul>
<p><img title="White Menu" src="http://www.sothink.com/images/product/dhtmlmenu/white-menu-28.png" alt="White Menu - Vertical Menu" width="249" height="317" /></p>
<ul>
<li><strong>Icon vertical menu</strong></li>
</ul>
<p><img title="White Menu" src="http://www.sothink.com/images/product/dhtmlmenu/white-menu-27.png" alt="White Menu - Vertical Menu" width="228" height="423" /></p>
<ul>
<li><strong>nBloom  menu with   animation</strong><br />
<img title="White Menu" src="http://www.sothink.com/images/product/dhtmlmenu/white-menu-29.png" alt="White Menu - Vertical Menu" width="116" height="213" /></li>
<li><strong>Checkout list-style menu</strong></li>
</ul>
<p><img title="White Menu" src="http://www.sothink.com/images/product/dhtmlmenu/white-menu-8.jpg" alt="White Menu - Vertical Menu" width="480" height="215" /></p>
<ul>
<li><strong>Ruby Tuesday slidebar menu</strong></li>
</ul>
<p><img title="White Menu" src="http://www.sothink.com/images/product/dhtmlmenu/white-menu-7.jpg" alt="White Menu - Vertical Menu" width="480" height="215" /></p>
<ul>
<li><strong>Alexandru Cohaniuc Navigation</strong></li>
</ul>
<p><img title="White Menu" src="http://www.sothink.com/images/product/dhtmlmenu/white-menu-14.jpg" alt="White Menu - Vertical Menu" width="480" height="221" /></p>
<ul>
<li><strong>Web menu &#8211; handwriting style</strong></li>
</ul>
<p><img title="White Menu" src="http://www.sothink.com/images/product/dhtmlmenu/white-menu-18.gif" alt="White Menu - Vertical Menu" width="480" height="246" /></p>
<ul>
<li><strong>web menu of Porsche Canada</strong>
<p><img title="White Menu" src="http://www.sothink.com/images/product/dhtmlmenu/white-menu-13.jpg" alt="White Menu - Vertical Menu" width="480" height="175" /></li>
</ul>
]]></content:encoded>
			<wfw:commentRss>http://www.dhtml-menu-builder.com/blog/showcase-of-30-diverse-white-menu-styles/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How to change navigation menu to Windows Vista menu?</title>
		<link>http://www.dhtml-menu-builder.com/blog/how-to-change-navigation-menu-to-windows-vista-menu/</link>
		<comments>http://www.dhtml-menu-builder.com/blog/how-to-change-navigation-menu-to-windows-vista-menu/#comments</comments>
		<pubDate>Thu, 17 Feb 2011 17:27:57 +0000</pubDate>
		<dc:creator>evazhou</dc:creator>
				<category><![CDATA[Tutorial Release]]></category>
		<category><![CDATA[DHTML menu]]></category>
		<category><![CDATA[navigation menu]]></category>
		<category><![CDATA[style]]></category>
		<category><![CDATA[vista menu]]></category>
		<category><![CDATA[web menu]]></category>
		<category><![CDATA[windows vista menu]]></category>

		<guid isPermaLink="false">http://www.dhtml-menu-builder.com/blog/?p=975</guid>
		<description><![CDATA[Windows Vista menu is attractive and stylish navigation menu, which not only possesses the same functions with web menu to navigate the website, but also has the remarkable appearance like vista style to beautify your website design. The major differences &#8230; <a href="http://www.dhtml-menu-builder.com/blog/how-to-change-navigation-menu-to-windows-vista-menu/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>Windows Vista menu is attractive and stylish navigation menu, which not only possesses the same functions with web menu to navigate the website, but also has the remarkable appearance like vista style to beautify your website design. The major differences between general navigation menu and Windows Vista menu is background setting. In Windows Vista menu, the background is usually set as silver and transparent, as if it glitters on the webpage.</p>
<p><a href="http://www.sothink.com/product/dhtmlmenu/samples/v-black/black.htm"><img class="aligncenter size-full wp-image-977" title="windows-vista-menu" src="http://www.dhtml-menu-builder.com/blog/wp-content/uploads/2011/02/windows-vista-menu.jpg" alt="window vista menu" width="662" height="136" /></a></p>
<p>If you wanna change the existing web menu to Window vista  menu, there are two methods available to make it come true. Supposed  that your DHTML menu as below, we can make it change into Windows Vista  menu by applying preset style or setting the background image  from  image library with the help of <a href="http://www.sothink.com/product/dhtmlmenu/" target="_blank">Sothink DHTML Menu</a>.</p>
<p><img src="http://webtestserver/images/product/dhtmlmenu/windows-vista-menu-1.jpg" alt="Navigation Menu" width="319" height="130" /></p>
<h2>Change navigation menu to Windows Vista menu</h2>
<p>Method 1: Applying preset style to DHTML menu:</p>
<ol>
<li>Select all the top menu items in menu panel.
<p><img src="http://webtestserver/images/product/dhtmlmenu/windows-vista-menu-2.jpg" alt="Navigation Menu" width="231" height="205" /></li>
<li>Check &#8220;Menu Item &gt; Style&#8221; in tasks panel; and double  click the vista style to apply this style to web menu in bottom property  window.<br />
<img src="http://webtestserver/images/product/dhtmlmenu/windows-vista-menu-3.jpg" alt="Navigation Menu - Style" width="560" height="212" /></li>
<li>Modify the background as &#8220;Transparent&#8221; for all menu item;  set properties for each menu item, popup menu. The new Windows Vista  menu is as follows.
<p><img src="http://webtestserver/images/product/dhtmlmenu/windows-vista-menu-4.jpg" alt="Windows Vista Menu" width="403" height="140" /></li>
</ol>
<p>Method 2: Setting the background image from image library</p>
<ol>
<li>Select all the top menu items in menu panel.
<p><img src="http://webtestserver/images/product/dhtmlmenu/windows-vista-menu-2.jpg" alt="Navigation Menu" width="231" height="205" /></li>
<li>Check &#8220;Menu Item &gt; Background&#8221; in tasks panel; choose  the proper background image from image library; set &#8220;bg color&#8221; as  transparent.<br />
<img src="http://webtestserver/images/product/dhtmlmenu/windows-vista-menu-5.jpg" alt="Navigation Menu" width="560" height="212" /></li>
<li>Modify the background as &#8220;Transparent&#8221; for all menu item;  set properties for each menu item, popup menu. The new menu is as  follows.<br />
<img src="http://webtestserver/images/product/dhtmlmenu/windows-vista-menu-6.jpg" alt="Windows Vista Menu" width="395" height="151" /></li>
</ol>
]]></content:encoded>
			<wfw:commentRss>http://www.dhtml-menu-builder.com/blog/how-to-change-navigation-menu-to-windows-vista-menu/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How to make DHTML tree menus?</title>
		<link>http://www.dhtml-menu-builder.com/blog/how-to-make-dhtml-tree-menus/</link>
		<comments>http://www.dhtml-menu-builder.com/blog/how-to-make-dhtml-tree-menus/#comments</comments>
		<pubDate>Wed, 16 Feb 2011 11:39:28 +0000</pubDate>
		<dc:creator>evazhou</dc:creator>
				<category><![CDATA[Tutorial Release]]></category>
		<category><![CDATA[DHTML menu]]></category>
		<category><![CDATA[link bar]]></category>
		<category><![CDATA[menu maker]]></category>
		<category><![CDATA[navigation menu]]></category>
		<category><![CDATA[tree menus]]></category>

		<guid isPermaLink="false">http://www.dhtml-menu-builder.com/blog/?p=963</guid>
		<description><![CDATA[What&#8217;s DHTML tree menus? DHTML tree menus are navigation menu used for large scale website. It also known as a links bar or link bar, which pulls down its nodes after mouse movement. It contains hypertext links on web page &#8230; <a href="http://www.dhtml-menu-builder.com/blog/how-to-make-dhtml-tree-menus/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p><strong>What&#8217;s DHTML tree menus?</strong></p>
<p>DHTML tree menus are navigation menu used for  large scale website. It also known as a links bar or link bar, which  pulls down its nodes after mouse movement. It contains hypertext links  on web page   so as to navigate between the pages of a website, and  quick link to the   target page.</p>
<p><a href="http://www.sothink.com/product/treemenu/samples/statecode/statecode.htm" target="_blank"><img class="aligncenter size-full wp-image-964" title="tree-menu-1" src="http://www.dhtml-menu-builder.com/blog/wp-content/uploads/2011/02/tree-menu-1.jpg" alt="tree menu sample" width="210" height="351" /></a><strong>Why choose this DHTML menu maker?</strong></p>
<ul>
<li> Cross-browser  navigation menu works excellently on main-stream browsers on various platforms.</li>
<li>Edit web menu directly in HTML editors as add-on, Dreamweaver, FrontPage included.</li>
<li> Build SE friendly navigation menu by the useful tool.</li>
<li>Publish wizard guides publishing the navigation bar, JavaScript menu to website step by step.</li>
<li>Customizes element for web menu, like font, icon, background,  color, border, cursor, effects, alignment, transparency, size, etc.</li>
<li>Offers 50+ free menu templates and  image library resources .</li>
<li>Any HTML code can be used within the JavaScript menu item.</li>
</ul>
<p><strong>DHTML menu templates</strong></p>
<p>Sothink Tree Menu offers excellent <a href="http://www.dhtml-menu-builder.com/product/treemenu/sample.htm" target="_blank">menu templates</a> by usage, and one customized type in the template gallery. You can  start web menu from template; create a blank menu and apply a template  to it later; and create new templates and modify the existing ones.</p>
<p><a href="http://www.sothink.com/product/treemenu/samples.htm"><img class="aligncenter size-full wp-image-965" title="tree-menu-2" src="http://www.dhtml-menu-builder.com/blog/wp-content/uploads/2011/02/tree-menu-2.jpg" alt="tree menu samples" width="637" height="107" /></a></p>
<p><strong>How to make  tree menus ?</strong></p>
<p>Step 1: Create DHTML tree menus from built-in templates</p>
<p>Launch Sothink Tree Menu, &#8220;Startup&#8221; window opens, you  can start menu from built-in templates or new blank. First, click the  name from built-in templates to select the menu; and then, preview menu  style in preview window of Startup;  last, click &#8220;OK&#8221; to start menu  creation.</p>
<p><a href="http://www.dhtml-menu-builder.com/blog/wp-content/uploads/2011/02/tree-menu-template.jpg"><img class="aligncenter size-full wp-image-966" title="tree-menu-template" src="http://www.dhtml-menu-builder.com/blog/wp-content/uploads/2011/02/tree-menu-template.jpg" alt="tree menu template" width="552" height="458" /></a>Step 2: Edit nodes and replace the contents</p>
<p>Add or remove nodes for DHTML tree menus. The added nodes will  auto-inherit the node&#8217;s properties. Replace the text and set the link  for each menu item.</p>
<p><a href="http://www.dhtml-menu-builder.com/blog/wp-content/uploads/2011/02/tree-menu-3.jpg"><img class="aligncenter size-full wp-image-967" title="tree-menu-3" src="http://www.dhtml-menu-builder.com/blog/wp-content/uploads/2011/02/tree-menu-3.jpg" alt="tree menu" width="534" height="236" /></a>Step 3: Publish  menu to website</p>
<p>Menu creation is finished. Click the button &#8220;Publish&#8221; to   publish DHTML menu. After the option is check, you can follow the step  to publish your navigation to website. And upload all the resources.<a href="http://www.dhtml-menu-builder.com/blog/wp-content/uploads/2011/02/tree-menu-4.jpg"><img class="aligncenter size-full wp-image-968" title="tree-menu-4" src="http://www.dhtml-menu-builder.com/blog/wp-content/uploads/2011/02/tree-menu-4.jpg" alt="tree menu - publish" width="79" height="39" /></a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.dhtml-menu-builder.com/blog/how-to-make-dhtml-tree-menus/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How to Make SE-friendly JS Menu?</title>
		<link>http://www.dhtml-menu-builder.com/blog/how-to-make-se-friendly-js-menu/</link>
		<comments>http://www.dhtml-menu-builder.com/blog/how-to-make-se-friendly-js-menu/#comments</comments>
		<pubDate>Mon, 14 Feb 2011 15:09:03 +0000</pubDate>
		<dc:creator>evazhou</dc:creator>
				<category><![CDATA[Tutorial Release]]></category>
		<category><![CDATA[DHTML menu]]></category>
		<category><![CDATA[google]]></category>
		<category><![CDATA[js menu]]></category>
		<category><![CDATA[navigation menu]]></category>
		<category><![CDATA[search engine]]></category>

		<guid isPermaLink="false">http://www.dhtml-menu-builder.com/blog/?p=958</guid>
		<description><![CDATA[The web designers usually apply &#8220;Cool&#8221; JS menu to navigate the website. This JS menu has the features of dynamic and interactive, which attracts the more traffic. Although JS menu is a stunning navigation menu, it is not friendly for &#8230; <a href="http://www.dhtml-menu-builder.com/blog/how-to-make-se-friendly-js-menu/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>The web designers usually apply &#8220;Cool&#8221; JS  menu to navigate the website. This JS menu has the features of dynamic  and interactive, which attracts the more traffic. Although JS menu is a  stunning navigation menu,  it is not friendly for search engine. How to  make JS menu SE friendly to Google spider? Search Engine Friendly Code  Maker included in <a href="http://www.sothink.com/product/dhtmlmenu/" target="_blank">Sothink DHTML Menu</a> will help you to generate special code to make your JS menu crawled quickly by SE spider.</p>
<p>How to use Search Engine Friendly Code Maker?</p>
<p>When you finish JS menu configuration, click &#8220;<strong>Tools &gt; Search Engine   Friendly Coder Maker</strong>&#8221; or click <img src="http://webtestserver/images/product/dhtmlmenu/enginecode.jpg" alt="DHTML Menu - Search Engine Code Maker" width="22" height="25" align="middle" /> on the toolbar to open Search   Engine Friendly Coder Maker Dialog. The  generated codes are listed within the   dialog. You can click the  button &#8220;Copy All&#8221; to copy these codes and then paste   them into the  page through web editor. These codes should be placed behind the   menu  code within BODY tag.</p>
<p><img src="http://webtestserver/images/product/dhtmlmenu/search-engine-coder.jpg" alt="JS Menu - Search Engine Coder" width="456" height="451" /></p>
<p>The codes are like this after they are copied   to the web page:</p>
<p>The JS menu codes are marked by <strong>green</strong>.<br />
The generated codes by search engine   friendly code maker are marked by<strong> red</strong>.</p>
<p>&lt;body&gt;<br />
<span style="color: #339966;">&lt;script   type=&#8221;text/javascript&#8221;&gt;<br />
&lt;!&#8211;<br />
stm_bm(["menu0e98",800,"","blank.gif",0,"","",0,0,250,0,1000,1,0,0,"","",0,0,1,2,"default",<br />
"hand",""],this);<br />
stm_bp(&#8220;p0&#8243;,[0,4,0,0,2,3,0,7,100,"",-2,"",-2,50,0,0,"#999999","#E6EFF9","",3,1,1,"#000000"]);<br />
stm_ai(&#8220;p0i0&#8243;,[0,"Menu   Item    1","","",-1,-1,0,"","_self","","","","",0,0,0,"","",0,0,0,0,1,"#E6EFF9",0,"#FFD602",0,"","",3,3,1,1,<br />
"#E6EFF9","#000000","#000000","#000000","8pt    Verdana","8pt Verdana",0,0]);<br />
stm_aix(&#8220;p0i1&#8243;,&#8221;p0i0&#8243;,[0,"Menu Item   2"]);<br />
stm_aix(&#8220;p0i2&#8243;,&#8221;p0i0&#8243;,[0,"Menu Item   3","","",-1,-1,0,"","_self","","","","",0,0,0,"arrow_r.gif","arrow_r.gif",7,7]);<br />
stm_bpx(&#8220;p1&#8243;,&#8221;p0&#8243;,[1,4,0,0,2,3,0,0]);<br />
stm_aix(&#8220;p1i0&#8243;,&#8221;p0i0&#8243;,[]);<br />
stm_aix(&#8220;p1i1&#8243;,&#8221;p0i1&#8243;,[]);<br />
stm_aix(&#8220;p1i2&#8243;,&#8221;p0i0&#8243;,[0,"Menu   Item 3"]);<br />
stm_ep();<br />
stm_aix(&#8220;p0i3&#8243;,&#8221;p0i0&#8243;,[0,"Menu Item   4"]);<br />
stm_aix(&#8220;p0i4&#8243;,&#8221;p0i0&#8243;,[0,"Menu Item   5"]);<br />
stm_ep();<br />
stm_em();<br />
//&#8211;&gt;<br />
&lt;/script&gt;</span><br />
<span style="color: red;"> <span style="color: #ff0000;">&lt;noscript&gt;<br />
&lt;ul&gt;<br />
&lt;li&gt;Unspecified&lt;/li&gt;<br />
&lt;li&gt;&lt;a   title=&#8221;/index.htm&#8221; href=&#8221;/index.htm&#8221; target=&#8221;_self&#8221;&gt;   Home&lt;/a&gt;|&lt;/li&gt;<br />
&lt;li&gt;&lt;a title=&#8221;/product.htm&#8221;   href=&#8221;/product.htm&#8221; target=&#8221;_self&#8221;&gt; Products   &lt;/a&gt;&lt;/li&gt;<br />
&lt;li&gt; Showcase   &lt;/li&gt;<br />
&lt;/ul&gt;<br />
&lt;/noscript&gt;</span></span><br />
&lt;/body&gt;</p>
<p>Now,  the remarkable JS menu is shown on your website; and SE  friendly  menu code is available to make your website indexed and  crawled quickly by spider.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.dhtml-menu-builder.com/blog/how-to-make-se-friendly-js-menu/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How to make frameset highlight menu?</title>
		<link>http://www.dhtml-menu-builder.com/blog/how-to-make-frameset-highlight-menu/</link>
		<comments>http://www.dhtml-menu-builder.com/blog/how-to-make-frameset-highlight-menu/#comments</comments>
		<pubDate>Sat, 29 Jan 2011 16:58:48 +0000</pubDate>
		<dc:creator>evazhou</dc:creator>
				<category><![CDATA[Tutorial Release]]></category>
		<category><![CDATA[DHTML menu]]></category>
		<category><![CDATA[dreamweaver]]></category>
		<category><![CDATA[frameset]]></category>
		<category><![CDATA[highlight menu]]></category>
		<category><![CDATA[iframe]]></category>
		<category><![CDATA[menu]]></category>

		<guid isPermaLink="false">http://www.dhtml-menu-builder.com/blog/?p=932</guid>
		<description><![CDATA[This is a frameset page including iframe and wonderful DHTML menu. Here displays the iframe content. Click the menu item above to see the picture in the iframe window, and you will find that the item is be activated, which &#8230; <a href="http://www.dhtml-menu-builder.com/blog/how-to-make-frameset-highlight-menu/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>This is a frameset page including iframe and wonderful DHTML menu. Here displays the iframe content. Click the menu item above to see the picture in the iframe window, and you will find that the item is be activated, which the icon is shining and its background color becomes into blue.</p>
<p><a href="http://www.sothink.com/product/dhtmlmenu/store/highlight/frameset/framehighlight.htm" target="_blank"><img class="aligncenter size-full wp-image-933" title="frameset-highlight-menu" src="http://www.dhtml-menu-builder.com/blog/wp-content/uploads/2011/01/frameset-highlight-menu.jpg" alt="frameset-highlight-menu" width="456" height="421" /></a></p>
<p><strong>Steps:</strong></p>
<ol>
<li> Create an iframe page in Dreamweaver.<br />
Select the menu item, add the linked page and Enter the frame name in the target filed in Menu Item &gt; General.</li>
<li>Set the icon for the menu item by type the image&#8217; path in Menu Item Settings &gt; Icon; set the background image in Menu Item &gt; Background; and set the border in Menu Item &gt; Border.</li>
<li>Set the global properties for the whole menu. Check the option &#8220;Auto highlight current item&#8221;; set text color, Bg colcor, border color, Bg image and icon as the highlighted items style; and check &#8220;Clear highlighted item&#8217;s link&#8221; and &#8220;Highlight parent menu item&#8221; for the menu in Global &gt; Highlight.</li>
</ol>
]]></content:encoded>
			<wfw:commentRss>http://www.dhtml-menu-builder.com/blog/how-to-make-frameset-highlight-menu/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>15 inspiring nav bar styles for website navigation</title>
		<link>http://www.dhtml-menu-builder.com/blog/15-inspiring-nav-bar-styles-for-website-navigation/</link>
		<comments>http://www.dhtml-menu-builder.com/blog/15-inspiring-nav-bar-styles-for-website-navigation/#comments</comments>
		<pubDate>Wed, 26 Jan 2011 16:33:43 +0000</pubDate>
		<dc:creator>evazhou</dc:creator>
				<category><![CDATA[Latest Samples]]></category>
		<category><![CDATA[DHTML menu]]></category>
		<category><![CDATA[horizontal menu]]></category>
		<category><![CDATA[nav bar]]></category>
		<category><![CDATA[navbar]]></category>
		<category><![CDATA[navigation menu]]></category>
		<category><![CDATA[vertical menu]]></category>

		<guid isPermaLink="false">http://www.dhtml-menu-builder.com/blog/?p=911</guid>
		<description><![CDATA[Nav bar is regarded as the most important element in website design because it is usually placed in the most visible location of the webpage, which makes a significant impact on the visitor’s first impression. Website designers always seek for &#8230; <a href="http://www.dhtml-menu-builder.com/blog/15-inspiring-nav-bar-styles-for-website-navigation/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.sothink.com/product/dhtmlmenu/">Nav bar</a> is regarded as the most important element in website design because it  is usually placed in the most visible location of the webpage, which  makes a significant impact on the visitor’s first impression. Website  designers always seek for outstanding nav bar styles to sustain the  viewer&#8217;s interest.        As the adage goes, &#8220;Content is king&#8221;, but  getting to the content requires navigation. The modern nav bar not only  needs  clear-structure navigation, but also applies remarkable menu  style to attract the eyes.</p>
<p>Nav bar generally comes in one of two orientations: vertical   and horizontal. Horizontal nav bar displays items side by side;  vertical nav bar stacks items on top of each other. Next, we will enjoy  15 nav bar styles of horizontal and vertical to give your more  inspiration.</p>
<h2>Horizontal nav bar with rounded corners</h2>
<p><strong>LemonStand<br />
</strong>LemonStand’s primary navigation features rounded dark-gray buttons with a slight gradient.</p>
<p><a href="http://www.sothink.com/product/dhtmlmenu/samples/"><br />
<img title="Sothink DHTML Menu" src="http://webtestserver/images/product/dhtmlmenu/dhtml-menu-corner-3.jpg" alt="Nav Bar - Horizontal Menu" width="500" height="200" /></a></p>
<p><strong>gugafit<br />
</strong>gugafit’s navigation buttons change to green on hover. The active item is given a dark-blue pressed look.</p>
<p><a href="http://www.sothink.com/product/dhtmlmenu/samples/"><br />
<img title="Sothink DHTML Menu" src="http://webtestserver/images/product/dhtmlmenu/dhtml-menu-4.jpg" alt="Nav Bar - Horizontal Menu" width="500" height="200" /></a></p>
<p><strong>PeepNote<br />
</strong>PeepNote   has beige rounded buttons, with the active  menu item in blue. It also   uses the CSS 3 text-shadow property to add  drop-shadows in most modern   Web browsers.</p>
<p><a href="http://www.sothink.com/product/dhtmlmenu/samples/"><img title="Sothink DHTML Menu" src="http://webtestserver/images/product/dhtmlmenu/dhtml-menu-5.jpg" alt="Nav Bar - Horizontal Menu" width="500" height="200" /></a></p>
<p><strong>Modern web menu</strong></p>
<p>This DHTML menu is clean and popular, which is widely used for many industry. The <strong>web menu</strong> made by <a href="http://www.sothink.com/product/dhtmlmenu/">Sothink DHTML Menu</a> presents us the silver and rectangle shape of menu item.</p>
<p><a href="http://www.sothink.com/product/dhtmlmenu/samples/modern/modern.htm"><img title="Sothink DHTML Menu" src="http://webtestserver/images/product/dhtmlmenu/dhtml-menu-corner-2.jpg" alt="Nav Bar - Horizontal Menu" width="615" height="244" /></a></p>
<p><strong>Crystal JavaScript menu<br />
</strong>This crystal menu delivers the sense of   modern,  fashion and elegance.  Round   rectangle design gives you more  imaginations &#8211; button.</p>
<p><a href="http://www.sothink.com/product/dhtmlmenu/samples/crystal/crystal.htm"><img title="Sothink DHTML Menu" src="http://webtestserver/images/product/dhtmlmenu/dhtml-menu-corner-1.jpg" alt="Nav Bar - Horizontal Menu" width="617" height="212" /></a></p>
<h2>Horizontal nav bar with icon</h2>
<p><strong>Carsonified<br />
</strong>Carsonified uses icons to indicate the active menu item; and upon hovering over an inactive menu item, its icon is revealed.</p>
<p><a href="http://www.sothink.com/product/dhtmlmenu/samples/"><img title="Sothink DHTML Menu" src="http://webtestserver/images/product/dhtmlmenu/dhtml-menu-6.jpg" alt="Nav Bar - Horizontal Menu" width="500" height="103" /></a></p>
<p><strong>MobileMySite.com<br />
</strong>The   company behind this website specializes in  creating mobile versions of   websites, so the designer made the  navigation look similar to the iPhone’s UI41, making it seem familiar to  first-time visitors.</p>
<p><img title="Sothink DHTML Menu" src="http://webtestserver/images/product/dhtmlmenu/dhtml-menu-7.jpg" alt="Nav Bar - Horizontal Menu" width="500" height="308" /></p>
<p><strong>RedVelvetart.com<br />
</strong>This   website features hand-drawn elements, and the  navigation menu continues   that theme with hand-drawn and -sketched  icons above the text.</p>
<p><a href="http://www.sothink.com/product/dhtmlmenu/samples/"><img title="Sothink DHTML Menu" src="http://webtestserver/images/product/dhtmlmenu/dhtml-menu-8.jpg" alt="Nav Bar - Horizontal Menu" width="500" height="170" /></a></p>
<p><strong>Dot JavaScript menu<br />
</strong><a href="http://www.sothink.com/product/dhtmlmenu/">Sothink DHTML Menu</a> creates this classic red &amp; black nav bar,   the red dots work as  separator to divide the menu items. When moving   the mouse over the  menu item, you will see the popup menu shown in line,   and white dots  divide the 2-level menu item.</p>
<p><a href="http://www.sothink.com/product/dhtmlmenu/samples/dot/dot.htm"><img title="Sothink DHTML Menu" src="http://webtestserver/images/product/dhtmlmenu/dhtml-menu-9.jpg" alt="Nav Bar - Horizontal Menu" width="539" height="137" /></a></p>
<p><strong>Image DHTML menu<br />
</strong>The image works as icon, the top icon and the bottom  text together explain the usage for this menu item. Just see the image,  you will know where the menu item will link to.</p>
<p><img title="Sothink DHTML Menu" src="http://webtestserver/images/product/dhtmlmenu/dhtml-menu-10.jpg" alt="Nav Bar - Horizontal Menu" width="477" height="232" /></p>
<h2>Vertical nav bar with various styles</h2>
<p><strong>Mellasat Vineyard<br />
</strong>Mellasat Vineyard’s vertical navigation menu is a  modular, one-piece   design element that also contains the website name  and logo. The menu is   a focal element here.</p>
<p><a href="http://www.sothink.com/product/dhtmlmenu/samples/"><img title="Sothink DHTML Menu" src="http://webtestserver/images/product/dhtmlmenu/tree-menu-1.jpg" alt="Nav Bar - Vertical Menu" width="245" height="407" /></a></p>
<p><strong>Utah.travel<br />
</strong>This interactive menu has a slick slide-out menu that  displays   sub-links and content when a user hovers over a primary menu  item.</p>
<p><a href="http://www.sothink.com/product/dhtmlmenu/samples/"><img title="Sothink DHTML Menu" src="http://webtestserver/images/product/dhtmlmenu/tree-menu-2.jpg" alt="Nav Bar - Vertical Menu" width="269" height="285" /></a></p>
<p><strong>A J Miles<br />
</strong>The portfolio of A J Miles has vertical navigation as  its primary   visual element. The menu is fashioned as a piece of paper  held in   position by tape.</p>
<p><a href="http://www.sothink.com/product/dhtmlmenu/samples/"><img title="Sothink DHTML Menu" src="http://webtestserver/images/product/dhtmlmenu/tree-menu-3.jpg" alt="Nav Bar - Vertical Menu" width="252" height="371" /></a></p>
<p><strong>Notorious Design<br />
</strong>In this navigation system, the primary links are vertically oriented. Sub-menu items come out horizontally.</p>
<p><a href="http://www.sothink.com/product/dhtmlmenu/samples/"><img title="Sothink DHTML Menu" src="http://webtestserver/images/product/dhtmlmenu/tree-menu-4.jpg" alt="Nav Bar - Vertical Menu" width="480" height="324" /></a></p>
<p><strong>Envira Media Inc<br />
</strong>This irregularly arranged menu truly embodies the  website’s organic   look and feel. Icons on the left of each item help  with visual   recognition and complement the design.</p>
<p><a href="http://www.sothink.com/product/dhtmlmenu/samples/"><img title="Sothink DHTML Menu" src="http://webtestserver/images/product/dhtmlmenu/tree-menu-5.jpg" alt="Nav Bar - Vertical Menu" width="204" height="402" /></a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.dhtml-menu-builder.com/blog/15-inspiring-nav-bar-styles-for-website-navigation/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How to make navigation menu?</title>
		<link>http://www.dhtml-menu-builder.com/blog/how-to-make-navigation-menu/</link>
		<comments>http://www.dhtml-menu-builder.com/blog/how-to-make-navigation-menu/#comments</comments>
		<pubDate>Fri, 21 Jan 2011 14:55:18 +0000</pubDate>
		<dc:creator>evazhou</dc:creator>
				<category><![CDATA[Tutorial Release]]></category>
		<category><![CDATA[design menu]]></category>
		<category><![CDATA[DHTML menu]]></category>
		<category><![CDATA[menu style]]></category>
		<category><![CDATA[menu templaye]]></category>
		<category><![CDATA[navigation menu]]></category>

		<guid isPermaLink="false">http://www.dhtml-menu-builder.com/blog/?p=886</guid>
		<description><![CDATA[It is time to design new style for your website. With festival arrival, special day coming, website designers will work out new style to dress up the existing website. When web has been changed its style to new one, it &#8230; <a href="http://www.dhtml-menu-builder.com/blog/how-to-make-navigation-menu/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>It is time to design new style for your website. With festival arrival, special day coming, website designers will work out new style to dress up the existing website. When web has been changed its style to new one, it is obviously outdated if navigation menu still keeps unchangeable.  For website that needs to transform frequently, you should solve the problem about how to build navigation menu to match with versatile website styles. To get perfect visual effect between website and navigation, you need to edit two elements in navigation menu, background image or color. Let&#8217;s see how <a href="http://www.sothink.com/product/dhtmlmenu/" target="_blank">Sothink DHTML Menu</a> create navigation menu:</p>
<h3><strong>Step 1:</strong> Add Menu Items to scheme structure for navigation menu</h3>
<p>Launch Sothink DHTML Menu, you can add menu item on the left panel. First, check one menu item; and then, choose the button to add the same-level menu items or sub-level menu items; final, click once to add one menu item, and click more add more.</p>
<p><a href="http://www.dhtml-menu-builder.com/"><img class="aligncenter size-full wp-image-887" title="DHTML Menu" src="http://www.dhtml-menu-builder.com/blog/wp-content/uploads/2011/01/Snap3.jpg" alt="navigation menu builder" width="479" height="235" /></a><strong>Step 2:</strong> <strong>Apply menu style from templates to navigation menu</strong></p>
<p>After menu structure is done, you can edit the menu item, including text, link, and font. To quick Apply the menu style from template, you can choose “Template &gt; Apply template to menu” command to apply template style to your navigation menu.</p>
<p><a href="http://www.dhtml-menu-builder.com/"><img class="aligncenter size-full wp-image-888" title="Apply Template to Menu" src="http://www.dhtml-menu-builder.com/blog/wp-content/uploads/2011/01/Snap4.jpg" alt="drop down menu" width="603" height="394" /></a><strong>Step 2:</strong> <strong>Publish navigation menu to website</strong></p>
<p>Menu creation is finished. Click the button “Publish” to choose the best publishing method. After the option is check, you can follow the step to publish your navigation to website. And upload all the resources for navigation menu.</p>
<p><a href="http://www.dhtml-menu-builder.com/"><img class="aligncenter size-full wp-image-889" title="publish menu" src="http://www.dhtml-menu-builder.com/blog/wp-content/uploads/2011/01/Snap5.jpg" alt="navigation menu" width="265" height="211" /></a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.dhtml-menu-builder.com/blog/how-to-make-navigation-menu/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

