<?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>blogfreakz.com &#187; Menu &amp; navigation</title>
	<atom:link href="http://blogfreakz.com/category/menus/feed/" rel="self" type="application/rss+xml" />
	<link>http://blogfreakz.com</link>
	<description>Web Development, Web Trends, open source resources</description>
	<lastBuildDate>Fri, 10 Feb 2012 05:40:03 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.1.4</generator>
		<item>
		<title>Build A WordPress Network Navigation Menu</title>
		<link>http://blogfreakz.com/wordpress-tutorial/build-a-wordpress-network-navigation-menu/</link>
		<comments>http://blogfreakz.com/wordpress-tutorial/build-a-wordpress-network-navigation-menu/#comments</comments>
		<pubDate>Tue, 07 Feb 2012 08:39:10 +0000</pubDate>
		<dc:creator>Keith@Blogfreakz</dc:creator>
				<category><![CDATA[Menu & navigation]]></category>
		<category><![CDATA[php]]></category>
		<category><![CDATA[Tutorials]]></category>
		<category><![CDATA[Wordpress]]></category>
		<category><![CDATA[network navigation]]></category>
		<category><![CDATA[WordPress Hack]]></category>

		<guid isPermaLink="false">http://blogfreakz.com/?p=24902</guid>
		<description><![CDATA[WordPress 3.0 has allowed users to host multiple independent websites with just one feature called Multisite. It also lets you share settings, content, and code between websites within your network. Kevin Leary has shared some of the hacks he did to perform the aforementioned abilities in one of his articles; one of them involves building [...]]]></description>
			<content:encoded><![CDATA[<p>WordPress 3.0 has allowed users to host multiple independent websites with just one feature called Multisite. It also lets you share settings, content, and code between websites within your network.</p>
<p><a href="http://www.kevinleary.net/"><strong>Kevin Leary</strong></a> has shared some of the hacks he did to perform the aforementioned abilities in one of his articles; one of them involves building a network navigation menu. Below is a snippet of the code:</p>
<p>Simply paste this in your theme’s functions.php file.</p>
<table border="1" cellspacing="0" cellpadding="0">
<tbody>
<tr>
<td width="638" valign="top"><span style="color: #003366;">/**</span>&nbsp;</p>
<p><span style="color: #003366;">* Build a list of all websites   in a network</span></p>
<p><span style="color: #003366;">*/</span></p>
<p><span style="color: #003366;">function wp_list_sites( $expires = 7200 ) {</span></p>
<p><span style="color: #003366;">if( !is_multisite() ) return   false;</span></p>
<p><span style="color: #003366;">// Because the   get_blog_list() function is currently flagged as deprecated</span></p>
<p><span style="color: #003366;">// due to the potential for   high consumption of resources, we&#8217;ll use</span></p>
<p><span style="color: #003366;">// $wpdb to roll out our own   SQL query instead. Because the query can be</span></p>
<p><span style="color: #003366;">// memory-intensive, we&#8217;ll   store the results using the Transients API</span></p>
<p><span style="color: #003366;">if ( false === ( $site_list   = get_transient( &#8216;multisite_site_list&#8217; ) ) ) {</span></p>
<p><span style="color: #003366;">global $wpdb;</span></p>
<p><span style="color: #003366;">$site_list =   $wpdb-&gt;get_results( $wpdb-&gt;prepare(&#8216;SELECT * FROM wp_blogs ORDER BY   blog_id&#8217;) );</span></p>
<p><span style="color: #003366;">// Set the Transient   cache to expire every two hours</span></p>
<p><span style="color: #003366;">set_site_transient(   &#8216;multisite_site_list&#8217;, $site_list, $expires );</span></p>
<p><span style="color: #003366;">}</span></p>
<p><span style="color: #003366;">$current_site_url = get_site_url(   get_current_blog_id() );</span></p>
<p><span style="color: #003366;">$html = &#8216;</span></p>
<p><span style="color: #003366;">&lt;ul id=&#8221;network-menu&#8221;&gt;&#8217; . &#8220;\n&#8221;;</span></p>
<p><span style="color: #003366;">foreach ( $site_list as   $site ) {</span></p>
<p><span style="color: #003366;">switch_to_blog(   $site-&gt;blog_id );</span></p>
<p><span style="color: #003366;">$class = ( home_url() ==   $current_site_url ) ? &#8221; : &#8221;;</span></p>
<p><span style="color: #003366;">$html .= &#8220;\t&#8221; .   &#8216;</span></p>
<p><span style="color: #003366;">&lt;li id=&#8221;site-&#8217; . $site-&gt;blog_id . &#8216;&#8221; &#8216;=&#8221;"   .=&#8221;" $class=&#8221;"&gt;&lt;a href=&#8221;&#8216; . home_url() .   &#8216;&#8221;&gt;&#8217; . get_bloginfo(&#8216;name&#8217;) . &#8216;&lt;/a&gt;&lt;/li&gt;</span></p>
<p><span style="color: #003366;">&#8216; . &#8220;\n&#8221;;</span></p>
<p><span style="color: #003366;">restore_current_blog();</span></p>
<p><span style="color: #003366;">}</span></p>
<p><span style="color: #003366;">$html .= &#8216;&lt;/ul&gt;</span></p>
<p><span style="color: #003366;">&lt;!&#8211;// end #network-menu &#8211;&gt;&#8217; . &#8220;\n\n&#8221;;</span></p>
<p><span style="color: #003366;">return $html;</span></p>
<p><span style="color: #003366;">}</span></td>
</tr>
</tbody>
</table>
<p>You can use it in your theme by calling its <strong>wp_list_sites()</strong> function.</p>
<table border="1" cellspacing="0" cellpadding="0">
<tbody>
<tr>
<td width="638" valign="top"><span style="color: #003366;">&lt;?php</span>&nbsp;</p>
<p><span style="color: #003366;">// Multisite Network Menu</span></p>
<p><span style="color: #003366;">$network_menu = wp_list_sites();</span></p>
<p><span style="color: #003366;">if( $network_menu ):</span></p>
<p><span style="color: #003366;">?&gt;</span></p>
<p><span style="color: #003366;">&lt;div id=&#8221;network-menu&#8221;&gt;</span></p>
<p><span style="color: #003366;">&lt;?php echo $network_menu;   ?&gt;</span></p>
<p><span style="color: #003366;">&lt;/div&gt;</span></p>
<p><span style="color: #003366;">&lt;!&#8211;// end #network-menu &#8211;&gt;</span></p>
<p><span style="color: #003366;">&lt;?php endif; ?&gt;</span></td>
</tr>
</tbody>
</table>
<p>Cool, huh? Find out more about the rest of his WordPress hacks <a href="http://wp.smashingmagazine.com/2011/11/17/wordpress-multisite-practical-functions-methods/"><strong>here</strong></a>!<br />
<h4>Incoming search terms for the article:</h4>
<ul>
<li><a href="http://blogfreakz.com/wordpress-tutorial/build-a-wordpress-network-navigation-menu/" title="network menu in wordpress">network menu in wordpress</a></li>
</ul>
<p><!-- SEO SearchTerms Tagging 2 Plugin --></p>
]]></content:encoded>
			<wfw:commentRss>http://blogfreakz.com/wordpress-tutorial/build-a-wordpress-network-navigation-menu/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>10 Creative And Uniquely Designed Navigation Menus</title>
		<link>http://blogfreakz.com/web-design/10-creative-and-uniquely-designed-navigation-menus/</link>
		<comments>http://blogfreakz.com/web-design/10-creative-and-uniquely-designed-navigation-menus/#comments</comments>
		<pubDate>Mon, 30 Jan 2012 14:47:48 +0000</pubDate>
		<dc:creator>Keith@Blogfreakz</dc:creator>
				<category><![CDATA[Design]]></category>
		<category><![CDATA[Inspiration]]></category>
		<category><![CDATA[Menu & navigation]]></category>
		<category><![CDATA[Web Design]]></category>
		<category><![CDATA[design]]></category>
		<category><![CDATA[menu]]></category>
		<category><![CDATA[navigation]]></category>

		<guid isPermaLink="false">http://blogfreakz.com/?p=24675</guid>
		<description><![CDATA[A well-designed navigation bar leaves a good impression on first-time visitors. Here’s a list of navigation menu designs that would make you go “why didn’t I think of that?” Small Stone Recordings – Here&#8217;s a perfect example of incorporating your site&#8217;s theme with the design. This immediately gives your site’s visitors an idea of what [...]]]></description>
			<content:encoded><![CDATA[<p>A well-designed navigation bar leaves a good impression on first-time visitors. Here’s a list of navigation menu designs that would make you go “why didn’t I think of that?”</p>
<p><a href="http://www.smallstone.com/"><strong> </strong></a></p>
<p><img class="aligncenter size-medium wp-image-24676" title="Small Stone Recordings " src="http://blogfreakz.com/wp-content/uploads/2012/01/126-285x175.jpg" alt="126 285x175 10 Creative And Uniquely Designed Navigation Menus" width="285" height="175" /></p>
<p><a href="http://www.smallstone.com/"><strong>Small Stone Recordings</strong></a> – Here&#8217;s a perfect example of incorporating your site&#8217;s theme with the   design. This immediately gives your site’s visitors an idea of what  your  site and business is all about.</p>
<p>&nbsp;</p>
<p><img class="aligncenter size-medium wp-image-24677" title="Loodo" src="http://blogfreakz.com/wp-content/uploads/2012/01/216-285x121.jpg" alt="216 285x121 10 Creative And Uniquely Designed Navigation Menus" width="285" height="121" /></p>
<p><a href="http://www.loodo.com.br/"><strong>Loodo</strong></a> – Now here’s a design that would appeal to anyone who enjoys playing traditional board games.</p>
<p>&nbsp;</p>
<p><img class="aligncenter size-medium wp-image-24678" title="Fantasy Cartography" src="http://blogfreakz.com/wp-content/uploads/2012/01/311-285x175.jpg" alt="311 285x175 10 Creative And Uniquely Designed Navigation Menus" width="285" height="175" /></p>
<p><a href="http://www.fantasy-cartography.com/"><strong>Fantasy Cartography</strong></a> – Talk about creating a site map! Here’s a very original approach in navigation menu design by Robin C. Kuprella. The areas of the site are linked directly on the home page map. Clicking on a link will change the content in the central content box.</p>
<p>&nbsp;</p>
<p><img class="aligncenter size-medium wp-image-24679" title="Gene's Sausage Shop" src="http://blogfreakz.com/wp-content/uploads/2012/01/412-195x175.jpg" alt="412 195x175 10 Creative And Uniquely Designed Navigation Menus" width="195" height="175" /></p>
<p><a href="http://www.genessausageshop.com/"><strong>Genes Sausage Shop</strong></a> – Here’s another good example of incorporating the site’s theme into the navigation menu design.</p>
<p>&nbsp;</p>
<p><img class="aligncenter size-medium wp-image-24680" title="NickAd2007" src="http://blogfreakz.com/wp-content/uploads/2012/01/511-285x175.jpg" alt="511 285x175 10 Creative And Uniquely Designed Navigation Menus" width="285" height="175" /></p>
<p><a href="http://www.nickad.com/"><strong>NickAd</strong></a> – This one may seem against every design principle of an effective navigation menu but it gets points for creativity and innovation. As one review site puts it, it’s “probably not the most practical menu available but certainly one of the coolest.” I agree; a first-time visitor may be caught off-guard by the seemingly unintuitive design but trust me, it will wow you.</p>
<p><img class="aligncenter size-medium wp-image-24681" title="CL Designs" src="http://blogfreakz.com/wp-content/uploads/2012/01/65-285x175.jpg" alt="65 285x175 10 Creative And Uniquely Designed Navigation Menus" width="285" height="175" /></p>
<p><a href="http://www.cldesignz.com/"><strong>CL Designz</strong></a> – The main navigation menu at the top of the page may not look like much but you will surely love and appreciate its secondary menu located on the right side. It is unique, fun and definitely practical.</p>
<p>&nbsp;</p>
<p><img class="aligncenter size-medium wp-image-24682" title="Manic" src="http://blogfreakz.com/wp-content/uploads/2012/01/74-177x175.jpg" alt="74 177x175 10 Creative And Uniquely Designed Navigation Menus" width="177" height="175" /></p>
<p><a href="http://wearemanic.com/"><strong>Manic Design</strong></a> – This one’s definitely one of my favorites on this list. It is nicely positioned on the left and all of the options are always visible, animated, and best of all, responsive!</p>
<p>&nbsp;</p>
<p><img class="aligncenter size-medium wp-image-24684" title="C&amp;C Coffee" src="http://blogfreakz.com/wp-content/uploads/2012/01/83-285x175.jpg" alt="83 285x175 10 Creative And Uniquely Designed Navigation Menus" width="285" height="175" /></p>
<p><a href="http://candccoffee.com/"><strong>C &amp; C Coffee</strong></a> – There’s just something visually pleasing and amusing about its fun Flash-based menu as it playfully dangles links from the top of the page.</p>
<p>&nbsp;</p>
<p><img class="aligncenter size-medium wp-image-24685" title="Alexarts" src="http://blogfreakz.com/wp-content/uploads/2012/01/94-285x175.jpg" alt="94 285x175 10 Creative And Uniquely Designed Navigation Menus" width="285" height="175" /></p>
<p><a href="http://www.alexarts.ru/en/index.html"><strong>Alexarts</strong></a> – True to its nature, this graphic arts site uses menu items that appeal to modern aesthetics that are also fun to interact with.</p>
<p>&nbsp;</p>
<p><img class="aligncenter size-medium wp-image-24686" title="Tennessee Trains &amp; Highways" src="http://blogfreakz.com/wp-content/uploads/2012/01/103-285x175.jpg" alt="103 285x175 10 Creative And Uniquely Designed Navigation Menus" width="285" height="175" /></p>
<p><a href="http://www.tntrailsandbyways.com/"><strong>Tennessee Trains &amp; Byways</strong></a> – Don’t let the discreet menu at the top of the page fool you &#8212; Tennessee Trains &amp; Byways is in contention for the largest dropdown menu in the world. It manages to combine old-world elements with modern design, resulting in a charming and highly interactive menu and page layout.<br />
<h4>Incoming search terms for the article:</h4>
<ul>
<li><a href="http://blogfreakz.com/web-design/10-creative-and-uniquely-designed-navigation-menus/" title="creative navigation bar">creative navigation bar</a></li>
</ul>
<p><!-- SEO SearchTerms Tagging 2 Plugin --></p>
]]></content:encoded>
			<wfw:commentRss>http://blogfreakz.com/web-design/10-creative-and-uniquely-designed-navigation-menus/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Animated CSS3 Multilevel Menu with Transition</title>
		<link>http://blogfreakz.com/web-design/animated-css3-multilevel-menu-with-transition/</link>
		<comments>http://blogfreakz.com/web-design/animated-css3-multilevel-menu-with-transition/#comments</comments>
		<pubDate>Mon, 30 Jan 2012 08:06:45 +0000</pubDate>
		<dc:creator>Marvin@Blogfreakz</dc:creator>
				<category><![CDATA[CSS3]]></category>
		<category><![CDATA[Design]]></category>
		<category><![CDATA[Menu & navigation]]></category>
		<category><![CDATA[Tutorials]]></category>
		<category><![CDATA[Web Design]]></category>
		<category><![CDATA[free]]></category>
		<category><![CDATA[html]]></category>
		<category><![CDATA[menu]]></category>

		<guid isPermaLink="false">http://blogfreakz.com/?p=24660</guid>
		<description><![CDATA[Script-tutorials.com gives us this cool UL-LI-based multilevel menu, with transition and animation effect using CSS3. You can create this menu in 2 easy steps. Click on the above image to view the demo. You may also download the full pack HERE. Step 1: HTML Index.html &#60;!DOCTYPE html&#62; &#60;html lang="en" &#62; &#60;head&#62; &#60;meta charset="utf-8" /&#62; &#60;title&#62;CSS3 [...]]]></description>
			<content:encoded><![CDATA[<p><strong><a href="http://www.script-tutorials.com" target="_blank">Script-tutorials.com</a></strong> gives us this cool UL-LI-based multilevel menu, with transition and animation effect using CSS3. You can create this menu in 2 easy steps.</p>
<p><a href="http://www.script-tutorials.com/demos/211/index.html" target="_blank"><img class="aligncenter size-medium wp-image-24661" title="CSS Multilevel Menu" src="http://blogfreakz.com/wp-content/uploads/2012/01/125-285x175.jpg" alt="125 285x175 Animated CSS3 Multilevel Menu with Transition " width="285" height="175" /></a></p>
<p style="text-align: center;">Click on the above image to view the demo.</p>
<p>You may also download the full pack <a href="http://www.script-tutorials.com/demos/211/source.zip   " target="_blank"><strong>HERE.</strong></a><a href="http://www.script-tutorials.com/demos/211/source.zip"></a><br />
<strong>Step 1: HTML</strong></p>
<p><strong>Index.html</strong></p>
<pre><span style="color: #003366;">&lt;!DOCTYPE html&gt;</span></pre>
<pre><span style="color: #003366;">&lt;html lang="en" &gt;</span></pre>
<pre><span style="color: #003366;">&lt;head&gt;</span></pre>
<pre><span style="color: #003366;">&lt;meta charset="utf-8" /&gt;</span></pre>
<pre><span style="color: #003366;">&lt;title&gt;CSS3 multilevel menu with transition and animation | Script Tutorials&lt;/title&gt;</span></pre>
<pre><span style="color: #003366;">&lt;link href="css/layout.css" type="text/css" rel="stylesheet"&gt;</span></pre>
<pre><span style="color: #003366;">&lt;link href="css/menu.css" type="text/css" rel="stylesheet"&gt;</span></pre>
<pre><span style="color: #003366;">&lt;/head&gt;</span></pre>
<pre><span style="color: #003366;">&lt;body&gt;</span></pre>
<pre><span style="color: #003366;">&lt;header&gt;</span></pre>
<pre><span style="color: #003366;">&lt;h2&gt;CSS3 multilevel menu with transition and animation&lt;/h2&gt;</span></pre>
<pre><span style="color: #003366;">&lt;a href="http://www.script-tutorials.com/css3-multilevel-menu-with-transition-and-animation/" class="stuts"&gt;Back to original tutorial on &lt;span&gt;Script Tutorials&lt;/span&gt;&lt;/a&gt;</span></pre>
<pre><span style="color: #003366;">&lt;/header&gt;</span></pre>
<pre><span style="color: #003366;">&lt;div&gt;</span></pre>
<pre><span style="color: #003366;">&lt;ul id="nav"&gt;</span></pre>
<pre><span style="color: #003366;">&lt;li&gt;</span></pre>
<pre><span style="color: #003366;">&lt;a href="#"&gt;Parent link #1&lt;/a&gt;</span></pre>
<pre><span style="color: #003366;">&lt;a href="#"&gt;Sub #11&lt;/a&gt;</span></pre>
<pre><span style="color: #003366;">&lt;a href="#"&gt;Sub #12&lt;/a&gt;</span></pre>
<pre><span style="color: #003366;">&lt;a href="#"&gt;Sub #13&lt;/a&gt;</span></pre>
<pre><span style="color: #003366;">&lt;a href="#"&gt;Sub #14&lt;/a&gt;</span></pre>
<pre><span style="color: #003366;">&lt;/li&gt;</span></pre>
<pre><span style="color: #003366;">&lt;li&gt;</span></pre>
<pre><span style="color: #003366;">&lt;a href="#"&gt;Parent link #2&lt;/a&gt;</span></pre>
<pre><span style="color: #003366;">&lt;a href="#"&gt;Sub #21&lt;/a&gt;</span></pre>
<pre><span style="color: #003366;">&lt;a href="#"&gt;Sub #22&lt;/a&gt;</span></pre>
<pre><span style="color: #003366;">&lt;a href="#"&gt;Sub #23&lt;/a&gt;</span></pre>
<pre><span style="color: #003366;">&lt;a href="#"&gt;Sub #24&lt;/a&gt;</span></pre>
<pre><span style="color: #003366;">&lt;/li&gt;</span></pre>
<pre><span style="color: #003366;">&lt;li&gt;</span></pre>
<pre><span style="color: #003366;">&lt;a href="#"&gt;Parent link #3&lt;/a&gt;</span></pre>
<pre><span style="color: #003366;">&lt;a href="#"&gt;Sub #31&lt;/a&gt;</span></pre>
<pre><span style="color: #003366;">&lt;a href="#"&gt;Sub #32&lt;/a&gt;</span></pre>
<pre><span style="color: #003366;">&lt;a href="#"&gt;Sub #33&lt;/a&gt;</span></pre>
<pre><span style="color: #003366;">&lt;a href="#"&gt;Sub #34&lt;/a&gt;</span></pre>
<pre><span style="color: #003366;">&lt;/li&gt;</span></pre>
<pre><span style="color: #003366;">&lt;li&gt;</span></pre>
<pre><span style="color: #003366;">&lt;a href="#"&gt;Parent link #4&lt;/a&gt;</span></pre>
<pre><span style="color: #003366;">&lt;a href="#"&gt;Sub #41&lt;/a&gt;</span></pre>
<pre><span style="color: #003366;">&lt;a href="#"&gt;Sub #42&lt;/a&gt;</span></pre>
<pre><span style="color: #003366;">&lt;a href="#"&gt;Sub #43&lt;/a&gt;</span></pre>
<pre><span style="color: #003366;">&lt;a href="#"&gt;Sub #44&lt;/a&gt;</span></pre>
<pre><span style="color: #003366;">&lt;/li&gt;</span></pre>
<pre><span style="color: #003366;">&lt;/ul&gt;</span></pre>
<pre><span style="color: #003366;">&lt;/div&gt;</span></pre>
<pre><span style="color: #003366;">&lt;/body&gt;</span></pre>
<pre><span style="color: #003366;">&lt;/html&gt;</span></pre>
<p><strong> </strong></p>
<p><strong> </strong></p>
<p><strong> </strong></p>
<p><strong>Step 2: CSS</strong></p>
<p><strong>Css/menu.css</strong></p>
<pre><span style="color: #003366;">ul#nav {</span>
<span style="color: #003366;">    border: 1px solid #454545;</span>
<span style="color: #003366;">    display: block;</span>
<span style="color: #003366;">    height: 400px;</span>
<span style="color: #003366;">    margin: 0;</span>
<span style="color: #003366;">    padding: 15px;</span>
<span style="color: #003366;">    width: 160px;</span>

<span style="color: #003366;">    -moz-border-radius: 9px;</span>
<span style="color: #003366;">    -ms-border-radius: 9px;</span>
<span style="color: #003366;">    -webkit-border-radius: 9px;</span>
<span style="color: #003366;">    -o-border-radius: 9px;</span>
<span style="color: #003366;">    border-radius: 9px;</span>

<span style="color: #003366;">    background: -moz-linear-gradient(#f1f7ff, #d9e1ec);</span>
<span style="color: #003366;">    background: -ms-linear-gradient(#f1f7ff, #d9e1ec);</span>
<span style="color: #003366;">    background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #f1f7ff), color-stop(100%, #d9e1ec));</span>
<span style="color: #003366;">    background: -webkit-linear-gradient(#f1f7ff, #d9e1ec);</span>
<span style="color: #003366;">    background: -o-linear-gradient(#f1f7ff, #d9e1ec);</span>
<span style="color: #003366;">    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#f1f7ff', endColorstr='#d9e1ec');</span>
<span style="color: #003366;">    -ms-filter: "progid:DXImageTransform.Microsoft.gradient(startColorstr='#f1f7ff', endColorstr='#d9e1ec')";</span>
<span style="color: #003366;">    background: linear-gradient(#f1f7ff, #d9e1ec);</span>
<span style="color: #003366;">}</span>

<span style="color: #003366;">@-moz-keyframes custom_effect {</span>
<span style="color: #003366;">    0% {</span>
<span style="color: #003366;">        background:rgba(255, 255, 255, 0.0);</span>
<span style="color: #003366;">        height: 60px;</span>
<span style="color: #003366;">    }</span>
<span style="color: #003366;">    33% {</span>
<span style="color: #003366;">        background:rgba(255, 255, 255, 0.0);</span>
<span style="color: #003366;">        height: 160px;</span>
<span style="color: #003366;">    }</span>
<span style="color: #003366;">    66% {</span>
<span style="color: #003366;">        background:rgba(255, 255, 255, 1.0);</span>
<span style="color: #003366;">    }</span>
<span style="color: #003366;">    100% {</span>
<span style="color: #003366;">        background:rgba(190, 220, 255, 0.8);</span>
<span style="color: #003366;">        height: 135px;</span>
<span style="color: #003366;">    }</span>
<span style="color: #003366;">}</span>
<span style="color: #003366;">@-webkit-keyframes custom_effect {</span>
<span style="color: #003366;">    0% {</span>
<span style="color: #003366;">        background:rgba(255, 255, 255, 0.0);</span>
<span style="color: #003366;">        height: 60px;</span>
<span style="color: #003366;">    }</span>
<span style="color: #003366;">    33% {</span>
<span style="color: #003366;">        background:rgba(255, 255, 255, 0.0);</span>
<span style="color: #003366;">        height: 160px;</span>
<span style="color: #003366;">    }</span>
<span style="color: #003366;">    66% {</span>
<span style="color: #003366;">        background:rgba(255, 255, 255, 1.0);</span>
<span style="color: #003366;">    }</span>
<span style="color: #003366;">    100% {</span>
<span style="color: #003366;">        background:rgba(190, 220, 255, 0.8);</span>
<span style="color: #003366;">        height: 135px;</span>
<span style="color: #003366;">    }</span>
<span style="color: #003366;">}</span>
<span style="color: #003366;">ul#nav li {</span>
<span style="color: #003366;">    -moz-border-radius: 9px;</span>
<span style="color: #003366;">    -ms-border-radius: 9px;</span>
<span style="color: #003366;">    -webkit-border-radius: 9px;</span>
<span style="color: #003366;">    -o-border-radius: 9px;</span>
<span style="color: #003366;">    border-radius: 9px;</span>

<span style="color: #003366;">    background-color:transparent;</span>
<span style="color: #003366;">    border: 1px solid #454545;</span>
<span style="color: #003366;">    display: block;</span>
<span style="color: #003366;">    height: 60px;</span>
<span style="color: #003366;">    line-height: 60px;</span>
<span style="color: #003366;">    margin-bottom: 15px;</span>
<span style="color: #003366;">    overflow: hidden;</span>
<span style="color: #003366;">}</span>
<span style="color: #003366;">ul#nav li:hover {</span>
<span style="color: #003366;">    -moz-animation-name: custom_effect;</span>
<span style="color: #003366;">    -moz-animation-duration: 0.4s;</span>
<span style="color: #003366;">    -moz-animation-timing-function: ease;</span>
<span style="color: #003366;">    -moz-animation-iteration-count: 1;</span>
<span style="color: #003366;">    -moz-animation-direction: normal;</span>
<span style="color: #003366;">    -moz-animation-delay: 0;</span>
<span style="color: #003366;">    -moz-animation-play-state: running;</span>
<span style="color: #003366;">    -moz-animation-fill-mode: forwards;</span>

<span style="color: #003366;">    -webkit-animation-name: custom_effect;</span>
<span style="color: #003366;">    -webkit-animation-duration: 0.4s;</span>
<span style="color: #003366;">    -webkit-animation-timing-function: ease;</span>
<span style="color: #003366;">    -webkit-animation-iteration-count: 1;</span>
<span style="color: #003366;">    -webkit-animation-direction: normal;</span>
<span style="color: #003366;">    -webkit-animation-delay: 0;</span>
<span style="color: #003366;">    -webkit-animation-play-state: running;</span>
<span style="color: #003366;">    -webkit-animation-fill-mode: forwards;</span>

<span style="color: #003366;">    background:rgba(190, 220, 255, 0.8);</span>
<span style="color: #003366;">    height: 135px;</span>
<span style="color: #003366;">}</span>
<span style="color: #003366;">ul#nav a {</span>
<span style="color: #003366;">    border-style: none;</span>
<span style="color: #003366;">    border-width: 0;</span>
<span style="color: #003366;">    color: #181818;</span>
<span style="color: #003366;">    cursor: pointer;</span>
<span style="color: #003366;">    float: left;</span>
<span style="color: #003366;">    font-size: 13px;</span>
<span style="color: #003366;">    font-weight: bold;</span>
<span style="color: #003366;">    line-height: 30px;</span>
<span style="color: #003366;">    margin-top: 100px;</span>
<span style="color: #003366;">    padding-left: 18px;</span>
<span style="color: #003366;">    text-align: left;</span>
<span style="color: #003366;">    text-decoration: none;</span>
<span style="color: #003366;">    text-shadow: 0 1px 1px #FFFFFF;</span>
<span style="color: #003366;">    vertical-align: middle;</span>

<span style="color: #003366;">    -moz-transition: all 0.1s 0.4s;</span>
<span style="color: #003366;">    -ms-transition: all 0.1s 0.4s;</span>
<span style="color: #003366;">    -o-transition: all 0.1s 0.4s;</span>
<span style="color: #003366;">    -webkit-transition: all 0.1s 0.4s;</span>
<span style="color: #003366;">    transition: all 0.1s 0.4s;</span>
<span style="color: #003366;">}</span></pre>
<h4>Incoming search terms for the article:</h4>
<ul>
<li><a href="http://blogfreakz.com/web-design/animated-css3-multilevel-menu-with-transition/" title="css text animation">css text animation</a></li>
<li><a href="http://blogfreakz.com/web-design/animated-css3-multilevel-menu-with-transition/" title="css3 menus">css3 menus</a></li>
</ul>
<p><!-- SEO SearchTerms Tagging 2 Plugin --></p>
]]></content:encoded>
			<wfw:commentRss>http://blogfreakz.com/web-design/animated-css3-multilevel-menu-with-transition/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Image file errors after moving to new server?</title>
		<link>http://blogfreakz.com/others/image-file-errors-after-moving-to-new-server/</link>
		<comments>http://blogfreakz.com/others/image-file-errors-after-moving-to-new-server/#comments</comments>
		<pubDate>Fri, 11 Nov 2011 19:00:59 +0000</pubDate>
		<dc:creator>Nancy</dc:creator>
				<category><![CDATA[Menu & navigation]]></category>
		<category><![CDATA[Others]]></category>
		<category><![CDATA[Resources]]></category>
		<category><![CDATA[Server]]></category>
		<category><![CDATA[Tutorials]]></category>
		<category><![CDATA[Upload]]></category>
		<category><![CDATA[Wordpress]]></category>
		<category><![CDATA[content uploads]]></category>
		<category><![CDATA[directory]]></category>
		<category><![CDATA[errors]]></category>
		<category><![CDATA[image files]]></category>
		<category><![CDATA[new server]]></category>
		<category><![CDATA[wordpress]]></category>

		<guid isPermaLink="false">http://blogfreakz.com/?p=22878</guid>
		<description><![CDATA[An Error Uploading After Server Move&#8230; Say anyone of you Blogfreakz out there experienced this error when trying to upload an image? I didn&#8217;t realize until after moving my blog onto a new server that, the directory on above image is pointing to the directory on my old server. So here are the steps I [...]]]></description>
			<content:encoded><![CDATA[<p><strong>An Error Uploading After Server Move&#8230;</strong></p>
<p><strong> </strong></p>
<p>Say anyone of you Blogfreakz out there experienced this error when trying to upload an image?</p>
<p><a rel="attachment wp-att-22880" href="http://blogfreakz.com/others/image-file-errors-after-moving-to-new-server/attachment/error-loading-after-server-move/"><img class="aligncenter size-full wp-image-22880" title="error loading after server move" src="http://blogfreakz.com/wp-content/uploads/2011/11/error-loading-after-server-move.png" alt="error loading after server move Image file errors after moving to new server? " width="628" height="361" /></a></p>
<p>I didn&#8217;t realize until after moving my blog onto a new server that, the directory on above image is pointing to the directory on my <strong><em>old </em></strong>server.</p>
<p>So here are the steps I followed to fix it :</p>
<ol>
<li>Login to wordpress, on the Dashboard, go to Settings &gt; Media<br />
<a rel="attachment wp-att-22885" href="http://blogfreakz.com/others/image-file-errors-after-moving-to-new-server/attachment/error-loading-after-server-move2/"><img class="aligncenter size-full wp-image-22885" title="error loading after server move2" src="http://blogfreakz.com/wp-content/uploads/2011/11/error-loading-after-server-move2.png" alt="error loading after server move2 Image file errors after moving to new server? " width="271" height="271" /></a></li>
<li>On the “Uploading Files” section, the “Store uploads in this folder” option shows the old setting.<br />
<a rel="attachment wp-att-22886" href="http://blogfreakz.com/others/image-file-errors-after-moving-to-new-server/attachment/error-loading-after-server-move3/"><img class="aligncenter size-full wp-image-22886" title="error loading after server move3" src="http://blogfreakz.com/wp-content/uploads/2011/11/error-loading-after-server-move3.png" alt="error loading after server move3 Image file errors after moving to new server? " width="628" height="218" /></a>3. Next we need to change it to the default setting:  wp-content/uploads<br />
<a rel="attachment wp-att-22891" href="http://blogfreakz.com/others/image-file-errors-after-moving-to-new-server/attachment/error-loading-after-server-move4/"><img class="aligncenter size-full wp-image-22891" title="error loading after server move4" src="http://blogfreakz.com/wp-content/uploads/2011/11/error-loading-after-server-move4.png" alt="error loading after server move4 Image file errors after moving to new server? " width="628" height="218" /></a></p>
<p>4. Then don&#8217;t forget to <strong>Sa</strong><strong>ve Changes</strong>.</li>
</ol>
<p>Now the error disappears and I’m able to finally upload the image!</p>
<p><a rel="attachment wp-att-22892" href="http://blogfreakz.com/others/image-file-errors-after-moving-to-new-server/attachment/error-loading-after-server-move5/"><img class="aligncenter size-full wp-image-22892" title="error loading after server move5" src="http://blogfreakz.com/wp-content/uploads/2011/11/error-loading-after-server-move5.png" alt="error loading after server move5 Image file errors after moving to new server? " width="628" height="763" /></a><br />
<h4>Incoming search terms for the article:</h4>
<ul>
<li><a href="http://blogfreakz.com/others/image-file-errors-after-moving-to-new-server/" title="after migrating wordpress images disappear">after migrating wordpress images disappear</a></li>
<li><a href="http://blogfreakz.com/others/image-file-errors-after-moving-to-new-server/" title="fiximagefile">fiximagefile</a></li>
<li><a href="http://blogfreakz.com/others/image-file-errors-after-moving-to-new-server/" title="gallery images disapear after wordpress moved to another server">gallery images disapear after wordpress moved to another server</a></li>
<li><a href="http://blogfreakz.com/others/image-file-errors-after-moving-to-new-server/" title="moving picture error">moving picture error</a></li>
<li><a href="http://blogfreakz.com/others/image-file-errors-after-moving-to-new-server/" title="There was an error uploading this file to the server">There was an error uploading this file to the server</a></li>
</ul>
<p><!-- SEO SearchTerms Tagging 2 Plugin --></p>
]]></content:encoded>
			<wfw:commentRss>http://blogfreakz.com/others/image-file-errors-after-moving-to-new-server/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How to disable the admin bar in wordpress</title>
		<link>http://blogfreakz.com/wordpress-tutorial/22196/</link>
		<comments>http://blogfreakz.com/wordpress-tutorial/22196/#comments</comments>
		<pubDate>Wed, 21 Sep 2011 00:12:16 +0000</pubDate>
		<dc:creator>Nancy</dc:creator>
				<category><![CDATA[Menu & navigation]]></category>
		<category><![CDATA[Resources]]></category>
		<category><![CDATA[Themes]]></category>
		<category><![CDATA[Tutorials]]></category>
		<category><![CDATA[Wordpress]]></category>
		<category><![CDATA[admin bar]]></category>
		<category><![CDATA[disable]]></category>
		<category><![CDATA[intrusive]]></category>

		<guid isPermaLink="false">http://blogfreakz.com/?p=22196</guid>
		<description><![CDATA[What is WordPress Admin Bar ? - This is a toolbar that appear in the top of your blog when your status is in login session. If you are of the category that find that new admin bar a bit intrusive&#8230; you can now disable it! -          Login into wordpress admin panel -          Click Users [...]]]></description>
			<content:encoded><![CDATA[<p>What is WordPress Admin Bar ?<br />
- This is a toolbar that appear in the top of your blog when your status is in login session.</p>
<p><a rel="attachment wp-att-22197" href="http://blogfreakz.com/wordpress-tutorial/22196/attachment/wordpress-admin-bar/"><img class="aligncenter size-full wp-image-22197" title="Wordpress admin bar" src="http://blogfreakz.com/wp-content/uploads/2011/09/Wordpress-admin-bar.png" alt="Wordpress admin bar How to disable the admin bar in wordpress" width="583" height="136" /></a></p>
<p>If you are of the category that find that new admin bar a bit intrusive&#8230; you can now disable it!</p>
<p>-          Login into <strong>wordpress admin panel</strong></p>
<p>-          Click <strong>Users</strong> &gt;&gt; <strong>Your Profile</strong></p>
<p>In this page, you can <strong>find Show Admin Bar</strong>, you can simply <strong>uncheck </strong>when viewing site<br />
Please take a screen shot below :</p>
<p><a rel="attachment wp-att-22198" href="http://blogfreakz.com/wordpress-tutorial/22196/attachment/wordpress-admin-bar-profile/"><img class="aligncenter size-full wp-image-22198" title="Wordpress admin bar.profile" src="http://blogfreakz.com/wp-content/uploads/2011/09/Wordpress-admin-bar.profile.png" alt="Wordpress admin bar.profile How to disable the admin bar in wordpress" width="628" height="306" /></a>Don’t forget to click the <strong>Update Profile !<br />
</strong></p>
<p><strong>Note :</strong><br />
This  tutorial will work if you have installed wordpress by yourself in your hosting site.<br />
If you can’t find &#8220;Show Admin Bar&#8221; in the <strong>Profile area</strong>, then you are hosting your site in wordpress.com<br />
<h4>Incoming search terms for the article:</h4>
<ul>
<li><a href="http://blogfreakz.com/wordpress-tutorial/22196/" title="WordPress themes commentluv enabled">WordPress themes commentluv enabled</a></li>
<li><a href="http://blogfreakz.com/wordpress-tutorial/22196/" title="commentluv enabled 1 100 comments">commentluv enabled 1 100 comments</a></li>
<li><a href="http://blogfreakz.com/wordpress-tutorial/22196/" title="portable bar service blog commentluv enabled">portable bar service blog commentluv enabled</a></li>
<li><a href="http://blogfreakz.com/wordpress-tutorial/22196/" title="what is the admin bar in wordpress">what is the admin bar in wordpress</a></li>
<li><a href="http://blogfreakz.com/wordpress-tutorial/22196/" title="wordpress bar">wordpress bar</a></li>
<li><a href="http://blogfreakz.com/wordpress-tutorial/22196/" title="wordpress ide admin bar">wordpress ide admin bar</a></li>
<li><a href="http://blogfreakz.com/wordpress-tutorial/22196/" title="wordpress Show Toolbar when viewing site">wordpress Show Toolbar when viewing site</a></li>
</ul>
<p><!-- SEO SearchTerms Tagging 2 Plugin --></p>
]]></content:encoded>
			<wfw:commentRss>http://blogfreakz.com/wordpress-tutorial/22196/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>DropKick &#8211; jQuery Plugin For Creating Custom Dropdown Menus</title>
		<link>http://blogfreakz.com/menus/dropkick-jquery-plugin-for-creating-custom-dropdown-menus/</link>
		<comments>http://blogfreakz.com/menus/dropkick-jquery-plugin-for-creating-custom-dropdown-menus/#comments</comments>
		<pubDate>Thu, 07 Jul 2011 04:37:59 +0000</pubDate>
		<dc:creator>Mufti Ali</dc:creator>
				<category><![CDATA[JQuery]]></category>
		<category><![CDATA[Menu & navigation]]></category>
		<category><![CDATA[dropdown]]></category>

		<guid isPermaLink="false">http://blogfreakz.com/?p=20917</guid>
		<description><![CDATA[Creating custom dropdowns is usually a tedious process that requires a ton of extra setup time. Oftentimes lacking conveniences that native dropdowns have such as keyboard navigation. DropKick works by transforming your existing, boring &#60;select&#62; lists into beautiful, customizable HTML dropdowns. The name attribute is the only one that is required. You should also set [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://blogfreakz.com/menus/dropkick-jquery-plugin-for-creating-custom-dropdown-menus/" title="Link to DropKick - jQuery Plugin For Creating Custom Dropdown Menus"><img class="wppt_float_left" src="http://blogfreakz.com/wp-content/uploads/wp-post-thumbnail/eOY1rv.jpg" alt="eOY1rv DropKick   jQuery Plugin For Creating Custom Dropdown Menus" title="" width="200" height="200" /></a>Creating custom dropdowns is usually a tedious process that requires a ton of extra setup time. Oftentimes lacking conveniences that native dropdowns have such as keyboard navigation.</p>
<p><span id="more-20917"></span><img class="alignnone size-full wp-image-20921" title="dropkick" src="http://blogfreakz.com/wp-content/uploads/2011/07/dropkick.jpg" alt="dropkick DropKick   jQuery Plugin For Creating Custom Dropdown Menus" width="600" height="300" /><br />
<a title="DropKick" rel="nofollow" href="http://jamielottering.github.com/DropKick/">DropKick</a> works by transforming your existing, boring &lt;select&gt; lists into beautiful, customizable HTML dropdowns. The name attribute is the only one that is required. You should also set a tabindex attribute to enable navigation via tabbing. When an option is selected in a DropKick menu, the corresponding &lt;select&gt; value is updated. This means that your forms and AJAX requests should work the same without having to make any changes.</p>
<h3>Features</h3>
<ul>
<li><em>Keyboard Navigation</em></li>
<li><em>Themeing</em><em> </em></li>
<li><em>Custom Callbacks</em></li>
</ul>
<p>Opened DropKick menus on Internet Explorer 7 will be covered by  other DropKick containers if they are vertically stacked and too close  together.</p>
<p class="download">Requirements: jQuery Framework<br />
Demo: <a title="DropKick" rel="nofollow" href="http://jamielottering.github.com/DropKick/">http://jamielottering.github.com/DropKick</a><br />
License: MIT LIcense</p>
<h4>Incoming search terms for the article:</h4>
<ul>
<li><a href="http://blogfreakz.com/menus/dropkick-jquery-plugin-for-creating-custom-dropdown-menus/" title="dropkick jquery">dropkick jquery</a></li>
<li><a href="http://blogfreakz.com/menus/dropkick-jquery-plugin-for-creating-custom-dropdown-menus/" title="custom dropdown">custom dropdown</a></li>
<li><a href="http://blogfreakz.com/menus/dropkick-jquery-plugin-for-creating-custom-dropdown-menus/" title="jquery drop down menu">jquery drop down menu</a></li>
<li><a href="http://blogfreakz.com/menus/dropkick-jquery-plugin-for-creating-custom-dropdown-menus/" title="jquery dropdown menu">jquery dropdown menu</a></li>
<li><a href="http://blogfreakz.com/menus/dropkick-jquery-plugin-for-creating-custom-dropdown-menus/" title="jquery dropkick option">jquery dropkick option</a></li>
<li><a href="http://blogfreakz.com/menus/dropkick-jquery-plugin-for-creating-custom-dropdown-menus/" title="jquery custom dropdown">jquery custom dropdown</a></li>
<li><a href="http://blogfreakz.com/menus/dropkick-jquery-plugin-for-creating-custom-dropdown-menus/" title="jquery select plugin">jquery select plugin</a></li>
<li><a href="http://blogfreakz.com/menus/dropkick-jquery-plugin-for-creating-custom-dropdown-menus/" title="jquery select menu">jquery select menu</a></li>
<li><a href="http://blogfreakz.com/menus/dropkick-jquery-plugin-for-creating-custom-dropdown-menus/" title="jquery plugin dropdown vertical">jquery plugin dropdown vertical</a></li>
<li><a href="http://blogfreakz.com/menus/dropkick-jquery-plugin-for-creating-custom-dropdown-menus/" title="js menu dropkick">js menu dropkick</a></li>
</ul>
<p><!-- SEO SearchTerms Tagging 2 Plugin --></p>
]]></content:encoded>
			<wfw:commentRss>http://blogfreakz.com/menus/dropkick-jquery-plugin-for-creating-custom-dropdown-menus/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Unicodinator &#8211; Visually Navigating Through Unicode</title>
		<link>http://blogfreakz.com/menus/unicodinator-visually-navigating-through-unicode/</link>
		<comments>http://blogfreakz.com/menus/unicodinator-visually-navigating-through-unicode/#comments</comments>
		<pubDate>Thu, 02 Jun 2011 09:41:28 +0000</pubDate>
		<dc:creator>Mufti Ali</dc:creator>
				<category><![CDATA[Menu & navigation]]></category>
		<category><![CDATA[unicode]]></category>

		<guid isPermaLink="false">http://blogfreakz.com/?p=20232</guid>
		<description><![CDATA[Unicodinator is a tool for visually navigating through the Unicode blocks and codepoints from 0000 through DFFF. It can be used to identify a particular character, understand the various Unicode blocks, find shapes to use in non-image icons, or simply to enjoy the beauty of human writing forms. The following libraries where used to create [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://blogfreakz.com/menus/unicodinator-visually-navigating-through-unicode/" title="Link to Unicodinator - Visually Navigating Through Unicode"><img class="wppt_float_left" src="http://blogfreakz.com/wp-content/uploads/wp-post-thumbnail/qPsUuj.jpg" alt="qPsUuj Unicodinator   Visually Navigating Through Unicode" title="" width="200" height="200" /></a><a rel="nofollow" href="http://unicodinator.com/">Unicodinator</a> is a tool for  visually navigating through the Unicode blocks and codepoints from 0000  through DFFF.  It can be used to identify a particular character,  understand the various Unicode blocks, find shapes to use in non-image  icons, or simply to enjoy the beauty of human writing forms.</p>
<p><span id="more-20232"></span></p>
<p><a rel="nofollow" href="http://unicodinator.com"><img class="alignnone size-full wp-image-20234" title="unicode" src="http://blogfreakz.com/wp-content/uploads/2011/06/unicode.jpg" alt="unicode Unicodinator   Visually Navigating Through Unicode" width="600" height="300" /></a></p>
<p>The following libraries where used to create this application:</p>
<ul>
<li>Mustache.js</li>
<li>Jquery</li>
</ul>
<p class="download">Requirements: -<br />
Demo: <a rel="nofollow" href="http://unicodinator.com/" target="_blank">http://unicodinator.com</a><br />
License: Free License</p>
<h4>Incoming search terms for the article:</h4>
<ul>
<li><a href="http://blogfreakz.com/menus/unicodinator-visually-navigating-through-unicode/" title="unicode icons">unicode icons</a></li>
<li><a href="http://blogfreakz.com/menus/unicodinator-visually-navigating-through-unicode/" title="jquery icons">jquery icons</a></li>
<li><a href="http://blogfreakz.com/menus/unicodinator-visually-navigating-through-unicode/" title="Unicode">Unicode</a></li>
<li><a href="http://blogfreakz.com/menus/unicodinator-visually-navigating-through-unicode/" title="free web icons beauty">free web icons beauty</a></li>
<li><a href="http://blogfreakz.com/menus/unicodinator-visually-navigating-through-unicode/" title="icon jquery">icon jquery</a></li>
<li><a href="http://blogfreakz.com/menus/unicodinator-visually-navigating-through-unicode/" title="icons jquery">icons jquery</a></li>
<li><a href="http://blogfreakz.com/menus/unicodinator-visually-navigating-through-unicode/" title="jquery search icon">jquery search icon</a></li>
<li><a href="http://blogfreakz.com/menus/unicodinator-visually-navigating-through-unicode/" title="unicode icone mail">unicode icone mail</a></li>
<li><a href="http://blogfreakz.com/menus/unicodinator-visually-navigating-through-unicode/" title="facebook unicodinator">facebook unicodinator</a></li>
<li><a href="http://blogfreakz.com/menus/unicodinator-visually-navigating-through-unicode/" title="unicode icons facebook">unicode icons facebook</a></li>
</ul>
<p><!-- SEO SearchTerms Tagging 2 Plugin --></p>
]]></content:encoded>
			<wfw:commentRss>http://blogfreakz.com/menus/unicodinator-visually-navigating-through-unicode/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Kaiten &#8211; New Navigation Model For Web Application</title>
		<link>http://blogfreakz.com/menus/kaiten-new-navigation-model-for-web-application/</link>
		<comments>http://blogfreakz.com/menus/kaiten-new-navigation-model-for-web-application/#comments</comments>
		<pubDate>Sat, 14 May 2011 06:46:01 +0000</pubDate>
		<dc:creator>Mufti Ali</dc:creator>
				<category><![CDATA[JQuery]]></category>
		<category><![CDATA[Menu & navigation]]></category>
		<category><![CDATA[navigation]]></category>

		<guid isPermaLink="false">http://blogfreakz.com/?p=19833</guid>
		<description><![CDATA[Kaiten is a jQuery plug-in which offers a new navigation model for web applications. Unlike conventional applications where the screen flush another without continuity between information and actions, with Kaiten interactions between the user and the application are a stack of contiguous screens where each screen is presented in columns. The new navigation model of [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://blogfreakz.com/menus/kaiten-new-navigation-model-for-web-application/" title="Link to Kaiten - New Navigation Model For Web Application"><img class="wppt_float_left" src="http://blogfreakz.com/wp-content/uploads/wp-post-thumbnail/dIFhvu.jpg" alt="dIFhvu Kaiten   New Navigation Model For Web Application" title="" width="200" height="200" /></a><a title="kaiten" rel="nofollow" href="http://www.officity.com/kaiten" target="_blank">Kaiten</a> is a jQuery plug-in which offers a new navigation model for web applications. Unlike conventional applications where the screen flush another without continuity between information and actions, with Kaiten interactions between the user and the application are a stack of contiguous screens where each screen is presented in columns.<br />
<span id="more-19833"></span></p>
<p><a rel="nofollow" href="http://kaitenbrowser.com"><img class="alignnone size-full wp-image-19871" title="kaiten" src="http://blogfreakz.com/wp-content/uploads/2011/05/kaiten.jpg" alt="kaiten Kaiten   New Navigation Model For Web Application" width="600" height="300" /></a></p>
<p>The new navigation model of Kaiten brings application experience to a new level of continuity. When the user browses through the application, the screens (or &#8220;panels&#8221;) are stacked horizontally in columns, forming a visual continuum keeping intact the visual links between the different step of the usage of the application. All the panels stay in sight or in the breadcrumb: you can go back and forth without having to reload anything. The applications are simple, intuitives, easy to use (each panel provide contextual actions), and comfortable (no reloading, everything in sight).</p>
<p>The columns adapt themselves to the screen resolution: if the screen is small like on an android phone or on a iPad, Kaiten will reduce the number of column visible on the screen. If the screen is normal (laptop) or extra-large (a 30&#8243; or more), Kaiten will add columns to provide a maximal comfort to the user.</p>
<p class="download">Requirements: jQuery Framework<br />
Demo: <a title="kaiten" rel="nofollow" href="http://kaitenbrowser.com" target="_blank">http://kaitenbrowser.com</a><br />
License: GPLv3 License</p>
<h4>Incoming search terms for the article:</h4>
<ul>
<li><a href="http://blogfreakz.com/menus/kaiten-new-navigation-model-for-web-application/" title="kaiten web">kaiten web</a></li>
<li><a href="http://blogfreakz.com/menus/kaiten-new-navigation-model-for-web-application/" title="kaiten html5">kaiten html5</a></li>
<li><a href="http://blogfreakz.com/menus/kaiten-new-navigation-model-for-web-application/" title="new navigation models">new navigation models</a></li>
<li><a href="http://blogfreakz.com/menus/kaiten-new-navigation-model-for-web-application/" title="jquerty kaiten">jquerty kaiten</a></li>
<li><a href="http://blogfreakz.com/menus/kaiten-new-navigation-model-for-web-application/" title="new navigation model">new navigation model</a></li>
<li><a href="http://blogfreakz.com/menus/kaiten-new-navigation-model-for-web-application/" title="web app dev navigation menu">web app dev navigation menu</a></li>
<li><a href="http://blogfreakz.com/menus/kaiten-new-navigation-model-for-web-application/" title="web app navigation models">web app navigation models</a></li>
<li><a href="http://blogfreakz.com/menus/kaiten-new-navigation-model-for-web-application/" title="web application">web application</a></li>
<li><a href="http://blogfreakz.com/menus/kaiten-new-navigation-model-for-web-application/" title="Web Application Navigation">Web Application Navigation</a></li>
<li><a href="http://blogfreakz.com/menus/kaiten-new-navigation-model-for-web-application/" title="web application stacked navigation">web application stacked navigation</a></li>
</ul>
<p><!-- SEO SearchTerms Tagging 2 Plugin --></p>
]]></content:encoded>
			<wfw:commentRss>http://blogfreakz.com/menus/kaiten-new-navigation-model-for-web-application/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Mega Drop Down Menu Plugin for jQuery</title>
		<link>http://blogfreakz.com/menus/mega-drop-down-menu-plugin-for-jquery/</link>
		<comments>http://blogfreakz.com/menus/mega-drop-down-menu-plugin-for-jquery/#comments</comments>
		<pubDate>Fri, 11 Mar 2011 03:34:23 +0000</pubDate>
		<dc:creator>Mufti Ali</dc:creator>
				<category><![CDATA[JQuery]]></category>
		<category><![CDATA[Menu & navigation]]></category>

		<guid isPermaLink="false">http://blogfreakz.com/?p=17272</guid>
		<description><![CDATA[Mega Drop Down Menu is plugin for jQuery to create mega drop down menu. The Mega Drop Down Menu plugin takes standard nested lists and turns them into horizontal mega menus. A mega menu has several advantages over standard drop down menus, including: All options visible at the same time No scrolling and tricky mouse [...]]]></description>
			<content:encoded><![CDATA[<p><a rel="nofollow" title="jquery-mega-drop-down-menu-plugin" href="http://www.designchemical.com/lab/jquery-mega-drop-down-menu-plugin/getting-started/" target="_blank">Mega Drop Down Menu</a> is plugin for jQuery to create <strong>mega drop down menu</strong>. The Mega Drop Down Menu plugin takes standard nested lists and turns them into horizontal mega menus. A mega menu has several advantages over standard drop down menus, including:<br />
<span id="more-17272"></span></p>
<p><a rel="nofollow" href="http://www.designchemical.com/lab/jquery-mega-drop-down-menu-plugin/getting-started/"><img class="alignnone size-large wp-image-17312" title="mega-dropdown-menu" src="http://blogfreakz.com/wp-content/uploads/2011/03/mega-dropdown-menu-600x250.jpg" alt="mega dropdown menu 600x250 Mega Drop Down Menu Plugin for jQuery" width="600" height="250" /></a></p>
<ul>
<li>All options visible at the same time</li>
<li>No scrolling and tricky mouse manoeuvres to see sub-menus fly out</li>
<li>Using standard nested lists the groups can be easily structured and formatted with CSS</li>
</ul>
<p>To get the full effect of the plugin use 3 levels of nested lists. To initialise the mega menu with the default settings – 3 sub menus per row and fade in speed of “fast” – use the following code:</p>
<p><code><br />
jQuery(document).ready(function($) {<br />
jQuery('#mega-menu').dcMegaMenu();<br />
});</code></p>
<p>The <a rel="nofollow" href="http://www.designchemical.com/lab/jquery-mega-drop-down-menu-plugin/download/">download</a> zip file also comes with 8 different skins giving an example of more  advanced styling. To use one of these skins wrap the mega menu in a div  tag and assign the div with a class to match the skin name – e.g  class=”black” and the mega menu ul tag with class=”mega-menu”. Then add the relevant css file to the head of the document.</p>
<p class="download">
Requirements: jQuery framework, <a rel="nofollow" href="http://cherne.net/brian/resources/jquery.hoverIntent.html">hoverIntent plugin</a><br />
Demo: <a rel="nofollow" title="mega-drop-down-menu" href="http://www.designchemical.com/lab/jquery-mega-drop-down-menu-plugin/examples/" target="_blank">http://www.designchemical.com/lab/jquery-mega-drop-down-menu-plugin/examples/</a><br />
License: MIT and GPL licenses
</p>
<h4>Incoming search terms for the article:</h4>
<ul>
<li><a href="http://blogfreakz.com/menus/mega-drop-down-menu-plugin-for-jquery/" title="dcmegamenu">dcmegamenu</a></li>
<li><a href="http://blogfreakz.com/menus/mega-drop-down-menu-plugin-for-jquery/" title="MEGA DROP DOWN MENU">MEGA DROP DOWN MENU</a></li>
<li><a href="http://blogfreakz.com/menus/mega-drop-down-menu-plugin-for-jquery/" title="mega menu jquery">mega menu jquery</a></li>
<li><a href="http://blogfreakz.com/menus/mega-drop-down-menu-plugin-for-jquery/" title="jquery dropdown menu">jquery dropdown menu</a></li>
<li><a href="http://blogfreakz.com/menus/mega-drop-down-menu-plugin-for-jquery/" title="modify row item in dcmegamenu">modify row item in dcmegamenu</a></li>
<li><a href="http://blogfreakz.com/menus/mega-drop-down-menu-plugin-for-jquery/" title="drop down menu">drop down menu</a></li>
<li><a href="http://blogfreakz.com/menus/mega-drop-down-menu-plugin-for-jquery/" title="dropdown menu">dropdown menu</a></li>
<li><a href="http://blogfreakz.com/menus/mega-drop-down-menu-plugin-for-jquery/" title="jquery mega dropdown">jquery mega dropdown</a></li>
<li><a href="http://blogfreakz.com/menus/mega-drop-down-menu-plugin-for-jquery/" title="django sidebar nested menu jquery">django sidebar nested menu jquery</a></li>
<li><a href="http://blogfreakz.com/menus/mega-drop-down-menu-plugin-for-jquery/" title="mega dropdown menu">mega dropdown menu</a></li>
</ul>
<p><!-- SEO SearchTerms Tagging 2 Plugin --></p>
]]></content:encoded>
			<wfw:commentRss>http://blogfreakz.com/menus/mega-drop-down-menu-plugin-for-jquery/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Simple jQuery One Page Navigation Plugin</title>
		<link>http://blogfreakz.com/menus/simple-jquery-one-page-navigation-plugin/</link>
		<comments>http://blogfreakz.com/menus/simple-jquery-one-page-navigation-plugin/#comments</comments>
		<pubDate>Sun, 03 Oct 2010 14:15:14 +0000</pubDate>
		<dc:creator>Mufti Ali</dc:creator>
				<category><![CDATA[JQuery]]></category>
		<category><![CDATA[Menu & navigation]]></category>
		<category><![CDATA[navigation]]></category>

		<guid isPermaLink="false">http://blogfreakz.com/?p=10815</guid>
		<description><![CDATA[One Page Navigation is a lightweight jQuery plugin for the navigation on one-page sites. This plugin allow us to scroll page smoothly when the navigation was clicked, it&#8217;s use the jQuery ScrollTo plugin. The page  also automatically highlight the correct navigation section depending upon which section was scrolled to. There are a few options for [...]]]></description>
			<content:encoded><![CDATA[<p><strong>One Page Navigation</strong> is a lightweight jQuery plugin for the navigation on one-page sites. This plugin allow us to scroll page smoothly when the navigation was clicked, it&#8217;s use the jQuery ScrollTo plugin. The page  also automatically highlight the correct navigation section depending upon which section was scrolled to.</p>
<p><span id="more-10815"></span><a rel="nofollow" href="http://blogfreakz.com/wp-content/uploads/2010/10/one-page-navigation.jpg"><img class="aligncenter size-full wp-image-10816" title="one-page-navigation" src="http://blogfreakz.com/wp-content/uploads/2010/10/one-page-navigation.jpg" alt="one page navigation Simple jQuery One Page Navigation Plugin" width="600" height="277" /></a></p>
<p>There are a few options for this plugin:</p>
<ul>
<li>
<h4>currentClass: &#8216;current&#8217;</h4>
<p>Class to add to the list item when the navigation item is selected</li>
<li>
<h4>changeHash: false</h4>
<p>If you want the hash to change when the user clicks on the navigation, change this to <strong>true</strong></li>
<li>
<h4>scrollSpeed: 750</h4>
<p>Speed to scroll the page when the navigation is clicked</li>
</ul>
<p class="download"><strong>Requirements</strong>: jQuery Framework<br />
<strong>Demo</strong>: <a title="jquery-one-page-nav" rel="nofollow" href="http://trevordavis.net/play/jquery-one-page-nav" target="_blank">http://trevordavis.net/play/jquery-one-page-nav</a><br />
<strong>License</strong>: License free</p>
<h4>Incoming search terms for the article:</h4>
<ul>
<li><a href="http://blogfreakz.com/menus/simple-jquery-one-page-navigation-plugin/" title="jquery one page navigation">jquery one page navigation</a></li>
<li><a href="http://blogfreakz.com/menus/simple-jquery-one-page-navigation-plugin/" title="one page navigation">one page navigation</a></li>
<li><a href="http://blogfreakz.com/menus/simple-jquery-one-page-navigation-plugin/" title="jquery page navigation">jquery page navigation</a></li>
<li><a href="http://blogfreakz.com/menus/simple-jquery-one-page-navigation-plugin/" title="jquery one page nav">jquery one page nav</a></li>
<li><a href="http://blogfreakz.com/menus/simple-jquery-one-page-navigation-plugin/" title="one page navigation jquery">one page navigation jquery</a></li>
<li><a href="http://blogfreakz.com/menus/simple-jquery-one-page-navigation-plugin/" title="jquery one page navigation automatic">jquery one page navigation automatic</a></li>
<li><a href="http://blogfreakz.com/menus/simple-jquery-one-page-navigation-plugin/" title="jQuery One Page Navigation Plugin">jQuery One Page Navigation Plugin</a></li>
<li><a href="http://blogfreakz.com/menus/simple-jquery-one-page-navigation-plugin/" title="single page navigation">single page navigation</a></li>
<li><a href="http://blogfreakz.com/menus/simple-jquery-one-page-navigation-plugin/" title="jQuery-One-Page-Nav">jQuery-One-Page-Nav</a></li>
<li><a href="http://blogfreakz.com/menus/simple-jquery-one-page-navigation-plugin/" title="jquery 1 page">jquery 1 page</a></li>
</ul>
<p><!-- SEO SearchTerms Tagging 2 Plugin --></p>
]]></content:encoded>
			<wfw:commentRss>http://blogfreakz.com/menus/simple-jquery-one-page-navigation-plugin/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
	</channel>
</rss>

