<?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; Wordpress</title>
	<atom:link href="http://blogfreakz.com/category/wordpress-tutorial/feed/" rel="self" type="application/rss+xml" />
	<link>http://blogfreakz.com</link>
	<description>Web Development, Web Trends, open source resources</description>
	<lastBuildDate>Wed, 08 Feb 2012 06:17:17 +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>!</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>Reduce Spam in WordPress with .htaccess</title>
		<link>http://blogfreakz.com/wordpress-tutorial/reduce-spam-in-wordpress-with-htaccess/</link>
		<comments>http://blogfreakz.com/wordpress-tutorial/reduce-spam-in-wordpress-with-htaccess/#comments</comments>
		<pubDate>Tue, 31 Jan 2012 11:42:36 +0000</pubDate>
		<dc:creator>Keith@Blogfreakz</dc:creator>
				<category><![CDATA[Freebies]]></category>
		<category><![CDATA[Software & Tools]]></category>
		<category><![CDATA[Wordpress]]></category>
		<category><![CDATA[code]]></category>
		<category><![CDATA[htaccess]]></category>
		<category><![CDATA[spam]]></category>
		<category><![CDATA[spam blocker]]></category>

		<guid isPermaLink="false">http://blogfreakz.com/?p=24712</guid>
		<description><![CDATA[Here&#8217;s a very useful snippet from allguru.net that helps reduce spam in WordPress. Blocking spam at the .htaccess level is more efficient and effective than merely using plugins, and you may want to try this out. It’ll help if make a backup copy of your .htaccess file first. Once you’re done, simply paste this code [...]]]></description>
			<content:encoded><![CDATA[<p>Here&#8217;s a very useful snippet from <a href="http://www.allguru.net/web/wordpress-security-hardening-htaccess/"><strong>allguru.net</strong></a> that helps reduce spam in WordPress. Blocking spam at the .htaccess level is more efficient and effective than merely using plugins, and you may want to try this out.</p>
<p>It’ll help if make a backup copy of your .htaccess file first. Once you’re done, simply paste this code into your .htaccess file located in the root directory of your WordPress install.</p>
<table border="1" cellspacing="0" cellpadding="0">
<tbody>
<tr>
<td width="638" valign="top"><span style="color: #003366;"><strong>&lt;IfModule mod_rewrite.c&gt;</strong></span></p>
<p><span style="color: #003366;"><strong>RewriteEngine On</strong></span></p>
<p><span style="color: #003366;"><strong>RewriteCond %{REQUEST_METHOD} POST</strong></span></p>
<p><span style="color: #003366;"><strong>RewriteCond %{REQUEST_URI} .wp-comments-post\.php*</strong></span></p>
<p><span style="color: #003366;"><strong>RewriteCond %{HTTP_REFERER} !.*yourdomainname.*   [OR]</strong></span></p>
<p><span style="color: #003366;"><strong>RewriteCond %{HTTP_USER_AGENT} ^$</strong></span></p>
<p><span style="color: #003366;"><strong>RewriteRule (.*) ^http://%{REMOTE_ADDR}/$ [R=301,L]</strong></span></p>
<p><span style="color: #003366;"><strong>&lt;/IfModule&gt;</strong></span></td>
</tr>
</tbody>
</table>
<p>&nbsp;</p>
<p>Don’t forget to replace <strong>yourdomainname</strong> with your real domain name. This code will prevent spam bots from accessing your wp-comments-posts.php file directly and significantly help reduce the amount of spam on your blog.</p>
<p>&nbsp;<br />
<h4>Incoming search terms for the article:</h4>
<ul>
<li><a href="http://blogfreakz.com/wordpress-tutorial/reduce-spam-in-wordpress-with-htaccess/" title="wordpress blog plugin reduce spam">wordpress blog plugin reduce spam</a></li>
<li><a href="http://blogfreakz.com/wordpress-tutorial/reduce-spam-in-wordpress-with-htaccess/" title="wordpress more spam">wordpress more spam</a></li>
</ul>
<p><!-- SEO SearchTerms Tagging 2 Plugin --></p>
]]></content:encoded>
			<wfw:commentRss>http://blogfreakz.com/wordpress-tutorial/reduce-spam-in-wordpress-with-htaccess/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Tumblr Importer for WordPress</title>
		<link>http://blogfreakz.com/wordpress-tutorial/tumblr-importer-for-wordpress/</link>
		<comments>http://blogfreakz.com/wordpress-tutorial/tumblr-importer-for-wordpress/#comments</comments>
		<pubDate>Tue, 31 Jan 2012 08:56:46 +0000</pubDate>
		<dc:creator>Marvin@Blogfreakz</dc:creator>
				<category><![CDATA[Freebies]]></category>
		<category><![CDATA[Software & Tools]]></category>
		<category><![CDATA[Wordpress]]></category>
		<category><![CDATA[blogs]]></category>
		<category><![CDATA[importer]]></category>
		<category><![CDATA[plugin]]></category>
		<category><![CDATA[Tumblr]]></category>
		<category><![CDATA[wordpress]]></category>

		<guid isPermaLink="false">http://blogfreakz.com/?p=24700</guid>
		<description><![CDATA[This new WordPress plugin called Tumblr Importer makes moving your Tumblr blog content to your self-hosted WordPress blog an easy feat. Since Tumblr is known for its multimedia posts, this plugin also keeps your audio, images and video intact. Plugin features: Imports posts, pages and drafts It handles post formats correctly Duplicate checking Media sideloading [...]]]></description>
			<content:encoded><![CDATA[<p><strong></strong>This new WordPress plugin called Tumblr Importer makes moving your Tumblr blog content to your self-hosted WordPress blog an easy feat. Since Tumblr is known for its multimedia posts, this plugin also keeps your audio, images and video intact.</p>
<p><img class="aligncenter size-full wp-image-24702" title="Tumblr" src="http://blogfreakz.com/wp-content/uploads/2012/01/128.jpg" alt="128 Tumblr Importer for WordPress" width="238" height="75" /></p>
<p><strong>Plugin features:</strong></p>
<ol>
<li>Imports posts, pages and drafts</li>
<li>It handles post formats correctly</li>
<li>Duplicate checking</li>
<li>Media sideloading for audio, video and image posts</li>
<li>WP-Cron based background importing: you can start it up and return later to check its progress.</li>
</ol>
<p><strong>Installation: </strong></p>
<ol>
<li>Download the plugin <a href="http://wordpress.org/extend/plugins/tumblr-importer/" target="_blank"><strong>HERE</strong></a>.</li>
<li>Upload the files to /wp-content/plugins/tumblr-importer/ directory</li>
<li>Activate it through ’Plugins’ menu in your WordPress.</li>
<li>Go to Tools &gt; Import and use the new importer.</li>
</ol>
<h4>Incoming search terms for the article:</h4>
<ul>
<li><a href="http://blogfreakz.com/wordpress-tutorial/tumblr-importer-for-wordpress/" title="review tumblr -tumblr com">review tumblr -tumblr com</a></li>
</ul>
<p><!-- SEO SearchTerms Tagging 2 Plugin --></p>
]]></content:encoded>
			<wfw:commentRss>http://blogfreakz.com/wordpress-tutorial/tumblr-importer-for-wordpress/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>6 Useful CSS Color Tools</title>
		<link>http://blogfreakz.com/wordpress-tutorial/6-useful-css-color-tools/</link>
		<comments>http://blogfreakz.com/wordpress-tutorial/6-useful-css-color-tools/#comments</comments>
		<pubDate>Tue, 24 Jan 2012 02:57:11 +0000</pubDate>
		<dc:creator>Marvin@Blogfreakz</dc:creator>
				<category><![CDATA[Color Picker]]></category>
		<category><![CDATA[CSS3]]></category>
		<category><![CDATA[Design]]></category>
		<category><![CDATA[Freebies]]></category>
		<category><![CDATA[Inspiration]]></category>
		<category><![CDATA[Photoshop]]></category>
		<category><![CDATA[Software & Tools]]></category>
		<category><![CDATA[Web Design]]></category>
		<category><![CDATA[Wordpress]]></category>
		<category><![CDATA[color]]></category>
		<category><![CDATA[css]]></category>
		<category><![CDATA[DIY]]></category>
		<category><![CDATA[photoshop]]></category>
		<category><![CDATA[wordpress]]></category>

		<guid isPermaLink="false">http://blogfreakz.com/?p=24504</guid>
		<description><![CDATA[If you wish to design your WordPress blog’s appearance by yourself, you can rely on CSS. Here are 6 useful CSS color tools that could help get you started. Color Scheme Designer Color Scheme Designer provides colors in color wheel form.  It has different color variations in percentage ratio like mono, tetrad, triad, analogic, accented [...]]]></description>
			<content:encoded><![CDATA[<p>If you wish to design your WordPress blog’s appearance by yourself, you can rely on CSS. Here are 6 useful CSS color tools that could help get you started.</p>
<p><a href="http://colorschemedesigner.com/" target="_blank"><strong>Color Scheme Designer</strong></a></p>
<p>Color Scheme Designer provides colors in color wheel form.  It has different color variations in percentage ratio like mono, tetrad, triad, analogic, accented analogic and complementary. This is especially useful in creating color combinations that work.</p>
<p><strong> </strong></p>
<p><strong> </strong></p>
<p><strong> </strong></p>
<p><a href="http://2.bp.blogspot.com/_Eiwce13X738/S-hEjZritBI/AAAAAAAAIQk/pbxnRDP_Vjc/s1600/ColorSchemeDesigner.1.png"><img class="aligncenter size-medium wp-image-24505" title="ColorSchemeDesigner" src="http://blogfreakz.com/wp-content/uploads/2012/01/115-285x175.jpg" alt="115 285x175 6 Useful CSS Color Tools" width="285" height="175" /></a></p>
<p><span style="color: #888888;"><strong><a href="http://www.colorzilla.com/gradient-editor/" target="_blank">Ultimate CSS Gradient Generator</a></strong></span></p>
<p>This gradient editor and generator tool allows you to make CSS gradients with cross-browser support. It has a Photoshop-like interface, opacity support with opacity stops, import from image and existing CSS, flexible preview panel, over 135 gradient presets and more!</p>
<p><a href="http://www.practicalecommerce.com/uploads/images/0002/5388/Ultimate_CSS_Gradient_Generator.jpg"><img class="aligncenter size-medium wp-image-24506" title="Ultimate CSS Gradient Generator" src="http://blogfreakz.com/wp-content/uploads/2012/01/29-285x175.jpg" alt="29 285x175 6 Useful CSS Color Tools" width="285" height="175" /></a></p>
<p><strong> </strong></p>
<p><strong> </strong></p>
<p><strong> </strong></p>
<p><strong> </strong></p>
<p><a href="http://www.quackit.com/css/css_color_codes.cfm" target="_blank"><strong>CSS ColorCodes</strong></a></p>
<p>With this tool, you can select any color from the color picker then copy its hexadecimal value from the bottom field. It also has 2 options which you can provide the RGB and hexadecimal color codes.</p>
<p><a href="http://www.csstextdecoration.com/images/css-color-codes.png"><img class="aligncenter size-medium wp-image-24507" title="CSS ColorCodes" src="http://blogfreakz.com/wp-content/uploads/2012/01/35-285x175.jpg" alt="35 285x175 6 Useful CSS Color Tools" width="285" height="175" /></a></p>
<p><strong> </strong></p>
<p><strong> </strong></p>
<p><a href="http://www.cssdrive.com/imagepalette/index.php" target="_blank"><strong>Colors Palette Generator</strong></a></p>
<p>Colors Palette Generator allows you to upload any image you want for generating and using a color palette based on the image’s primary colors.</p>
<p><strong> </strong></p>
<p><strong> </strong></p>
<p><a href="http://www.funspill.com/content//2010/03/online-color-tools/cssdrive-image-to-colors-palette-generator.png"><img class="aligncenter size-medium wp-image-24510" title="CSS Drive Colors Palette Generator" src="http://blogfreakz.com/wp-content/uploads/2012/01/44-285x175.jpg" alt="44 285x175 6 Useful CSS Color Tools" width="285" height="175" /></a></p>
<p><strong> </strong></p>
<p><a href="http://www.w3schools.com/cssref/css_colors.asp" target="_blank"><strong>CSS Colors</strong></a></p>
<p>This tool offers over 16 million colors with both RGB and hexadecimal color modes.</p>
<p><strong> </strong></p>
<p><strong> </strong></p>
<p><strong> </strong></p>
<p><a href="http://smashinghub.com/wp-content/uploads/2011/11/CSS-Colors1.jpg"><img class="aligncenter size-medium wp-image-24511" title="CSS Colors" src="http://blogfreakz.com/wp-content/uploads/2012/01/55-285x175.jpg" alt="55 285x175 6 Useful CSS Color Tools" width="285" height="175" /></a></p>
<p><strong> </strong></p>
<p><strong> </strong></p>
<p><a href="http://tools.dynamicdrive.com/gradient/" target="_blank"><strong>Gradient Image Maker</strong></a></p>
<p>Gradient Image Maker creates gradient images that you can use in your website’s template design. It lets you generate 3 types of gradient images with instant previewing.</p>
<p><strong> </strong></p>
<p><strong> </strong></p>
<p><a href="http://net.onextrapixel.com/wp-content/uploads/2011/10/cssgenerator6.jpg"><img class="aligncenter size-medium wp-image-24512" title="Gradient Image Maker" src="http://blogfreakz.com/wp-content/uploads/2012/01/64-285x175.jpg" alt="64 285x175 6 Useful CSS Color Tools" width="285" height="175" /></a></p>
<p><strong> </strong></p>
<p><strong> </strong><br />
<h4>Incoming search terms for the article:</h4>
<ul>
<li><a href="http://blogfreakz.com/wordpress-tutorial/6-useful-css-color-tools/" title="color design table css">color design table css</a></li>
<li><a href="http://blogfreakz.com/wordpress-tutorial/6-useful-css-color-tools/" title="primary hexadecimal colors">primary hexadecimal colors</a></li>
<li><a href="http://blogfreakz.com/wordpress-tutorial/6-useful-css-color-tools/" title="color tools">color tools</a></li>
<li><a href="http://blogfreakz.com/wordpress-tutorial/6-useful-css-color-tools/" title="css color">css color</a></li>
<li><a href="http://blogfreakz.com/wordpress-tutorial/6-useful-css-color-tools/" title="hexadecimal color codes">hexadecimal color codes</a></li>
<li><a href="http://blogfreakz.com/wordpress-tutorial/6-useful-css-color-tools/" title="hexadecimal colors">hexadecimal colors</a></li>
<li><a href="http://blogfreakz.com/wordpress-tutorial/6-useful-css-color-tools/" title="palette color maker">palette color maker</a></li>
<li><a href="http://blogfreakz.com/wordpress-tutorial/6-useful-css-color-tools/" title="smash box color pallets">smash box color pallets</a></li>
</ul>
<p><!-- SEO SearchTerms Tagging 2 Plugin --></p>
]]></content:encoded>
			<wfw:commentRss>http://blogfreakz.com/wordpress-tutorial/6-useful-css-color-tools/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
		<item>
		<title>How to Create KnobKnob: A Shiny Knob Control with jQuery and CSS3</title>
		<link>http://blogfreakz.com/wordpress-tutorial/how-to-create-knobknob-a-shiny-knob-control-with-jquery-and-css3/</link>
		<comments>http://blogfreakz.com/wordpress-tutorial/how-to-create-knobknob-a-shiny-knob-control-with-jquery-and-css3/#comments</comments>
		<pubDate>Tue, 10 Jan 2012 12:56:46 +0000</pubDate>
		<dc:creator>Marvin@Blogfreakz</dc:creator>
				<category><![CDATA[CSS3]]></category>
		<category><![CDATA[Design]]></category>
		<category><![CDATA[Freebies]]></category>
		<category><![CDATA[JQuery]]></category>
		<category><![CDATA[Software & Tools]]></category>
		<category><![CDATA[Tutorials]]></category>
		<category><![CDATA[Wordpress]]></category>
		<category><![CDATA[download]]></category>
		<category><![CDATA[free]]></category>
		<category><![CDATA[KnobKnob]]></category>
		<category><![CDATA[plugin]]></category>

		<guid isPermaLink="false">http://blogfreakz.com/?p=24163</guid>
		<description><![CDATA[This tutorial by Martin Angelov of tutorialzine.com will show you how to create a cool shiny knob control called KnobKnob. Made with jQuery and CSS3, this plugin uses CSS transformations and features jQuery’s new handling method. It will definitely give users a fun and interesying way of interactively selecting a pool of values from a [...]]]></description>
			<content:encoded><![CDATA[<p><img class="size-medium wp-image-24164 aligncenter" title="shiny-switch-rotation" src="http://blogfreakz.com/wp-content/uploads/2012/01/shiny-switch-rotation-285x175.jpg" alt="shiny switch rotation 285x175 How to Create KnobKnob: A Shiny Knob Control with jQuery and CSS3" width="285" height="175" /></p>
<p>This tutorial by Martin Angelov of <strong><a href="http://tutorialzine.com" target="_blank">tutorialzine.com</a></strong> will show you how to create a cool shiny knob control called KnobKnob. Made with jQuery and CSS3, this plugin uses CSS transformations and features jQuery’s new handling method. It will definitely give users a fun and interesying way of interactively selecting a pool of values from a range in your WordPress blog.</p>
<p>See the <strong><a href="http://demo.tutorialzine.com/2011/11/pretty-switches-css3-jquery/" target="_blank">Demo</a></strong> and get the <strong><a href="http://demo.tutorialzine.com/2011/11/pretty-switches-css3-jquery/shiny-knobs.zip" target="_blank">Download</a></strong>.</p>
<p><strong>Step 1: HTML</strong></p>
<p><span style="color: #000080;">&lt;!DOCTYPE html&gt;</span></p>
<p><span style="color: #000080;">&lt;html&gt;</span></p>
<p><span style="color: #000080;">&lt;head&gt;</span></p>
<p><span style="color: #000080;">&lt;meta charset=&#8221;utf-8&#8243; /&gt;</span></p>
<p><span style="color: #000080;">&lt;title&gt;Shiny Switches with CSS3 &amp;amp; jQuery | Tutorialzine Demo&lt;/title&gt;</span></p>
<p><span style="color: #000080;">&lt;!&#8211; CSS stylesheets &#8211;&gt;</span></p>
<p><span style="color: #000080;">&lt;link rel=&#8221;stylesheet&#8221; href=&#8221;assets/css/styles.css&#8221; /&gt;</span></p>
<p><span style="color: #000080;">&lt;link rel=&#8221;stylesheet&#8221; href=&#8221;assets/knobKnob/knobKnob.css&#8221; /&gt;</span></p>
<p><span style="color: #000080;">&lt;!&#8211;[if lt IE 9]&gt;</span></p>
<p><span style="color: #000080;">&lt;script src=&#8221;http://html5shiv.googlecode.com/svn/trunk/html5.js&#8221;&gt;&lt;/script&gt;</span></p>
<p><span style="color: #000080;">&lt;![endif]&#8211;&gt;</span></p>
<p><span style="color: #000080;">&lt;/head&gt;</span></p>
<p><span style="color: #000080;">&lt;body&gt;</span></p>
<p><span style="color: #000080;">&lt;section id=&#8221;main&#8221;&gt;</span></p>
<p><span style="color: #000080;">&lt;div id=&#8221;bars&#8221;&gt;</span></p>
<p><span style="color: #000080;">&lt;div id=&#8221;control&#8221;&gt;</span></p>
<p><span style="color: #000080;">&lt;!&#8211; The knob markup will go here &#8211;&gt;</span></p>
<p><span style="color: #000080;">&lt;/div&gt;</span></p>
<p><span style="color: #000080;">&lt;!&#8211; The colorful dividers will go here &#8211;&gt;</span></p>
<p><span style="color: #000080;">&lt;/div&gt;</span></p>
<p><span style="color: #000080;">&lt;/section&gt;</span></p>
<p><span style="color: #000080;">&lt;!&#8211; JavaScript includes &#8211;&gt;</span></p>
<p><span style="color: #000080;">&lt;script src=&#8221;http://code.jquery.com/jquery-1.7.1.min.js&#8221;&gt;&lt;/script&gt;</span></p>
<p><span style="color: #000080;">&lt;script src=&#8221;assets/knobKnob/transform.js&#8221;&gt;&lt;/script&gt;</span></p>
<p><span style="color: #000080;">&lt;script src=&#8221;assets/knobKnob/knobKnob.jquery.js&#8221;&gt;&lt;/script&gt;</span></p>
<p><span style="color: #000080;">&lt;script src=&#8221;assets/js/script.js&#8221;&gt;&lt;/script&gt;</span></p>
<p><span style="color: #000080;">&lt;/body&gt;</span></p>
<p><span style="color: #000080;">&lt;/html&gt;</span></p>
<p><strong>Step 2: jQuery Code</strong></p>
<p><strong>assets/knobKnob/knobKnob.jquery.js</strong></p>
<pre><span style="color: #000080;">/**</span>
<span style="color: #000080;"> * @name               jQuery KnobKnob plugin</span>
<span style="color: #000080;"> * @author             Martin Angelov</span>
<span style="color: #000080;"> * @version    1.0</span>
<span style="color: #000080;"> * @url                http://tutorialzine.com/2011/11/pretty-switches-css3-jquery/</span>
<span style="color: #000080;"> * @license            MIT License</span>
<span style="color: #000080;"> */</span>

<span style="color: #000080;">(function($){</span>

<span style="color: #000080;">        $.fn.knobKnob = function(props){</span>

<span style="color: #000080;">               var options = $.extend({</span>
<span style="color: #000080;">                       snap: 0,</span>
<span style="color: #000080;">                       value: 0,</span>
<span style="color: #000080;">                       turn: function(){}</span>
<span style="color: #000080;">               }, props || {});</span>

<span style="color: #000080;">               var tpl = '&lt;div&gt;\</span>
<span style="color: #000080;">                               &lt;div&gt;&lt;/div&gt;\</span>
<span style="color: #000080;">                               &lt;div&gt;&lt;/div&gt;\</span>
<span style="color: #000080;">                       &lt;/div&gt;';</span>

<span style="color: #000080;">               return this.each(function(){</span>

<span style="color: #000080;">                       var el = $(this);</span>
<span style="color: #000080;">                       el.append(tpl);</span>

<span style="color: #000080;">                       var knob = $('.knob',el)</span>
<span style="color: #000080;">                               knobTop = knob.find('.top'),</span>
<span style="color: #000080;">                               startDeg = -1,</span>
<span style="color: #000080;">                               currentDeg = 0,</span>
<span style="color: #000080;">                               rotation = 0,</span>
<span style="color: #000080;">                               lastDeg = 0,</span>
<span style="color: #000080;">                               doc = $(document);</span>

<span style="color: #000080;">                       if(options.value &gt; 0 &amp;&amp; options.value &lt;= 359){</span>
<span style="color: #000080;">                               rotation = currentDeg = options.value;</span>
<span style="color: #000080;">                               knobTop.css('transform','rotate('+(currentDeg)+'deg)');</span>
<span style="color: #000080;">                               options.turn(currentDeg/359);</span>
<span style="color: #000080;">                       }</span>

<span style="color: #000080;">                       knob.on('mousedown', function(e){</span>

<span style="color: #000080;">                               e.preventDefault();</span>

<span style="color: #000080;">                               var offset = knob.offset();</span>
<span style="color: #000080;">                               var center = {</span>
<span style="color: #000080;">                                      y : offset.top + knob.height()/2,</span>
<span style="color: #000080;">                                      x: offset.left + knob.width()/2</span>
<span style="color: #000080;">                               };</span>

<span style="color: #000080;">                               var a, b, deg, tmp,</span>
<span style="color: #000080;">                                      rad2deg = 180/Math.PI;</span>

<span style="color: #000080;">                               knob.on('mousemove.rem',function(e){</span>

<span style="color: #000080;">                                      a = center.y - e.pageY;</span>
<span style="color: #000080;">                                      b = center.x - e.pageX;</span>
<span style="color: #000080;">                                      deg = Math.atan2(a,b)*rad2deg;</span>

<span style="color: #000080;">                                      // we have to make sure that negative</span>
<span style="color: #000080;">                                      // angles are turned into positive:</span>
<span style="color: #000080;">                                      if(deg&lt;0){</span>
<span style="color: #000080;">                                              deg = 360 + deg;</span>
<span style="color: #000080;">                                      }</span>

<span style="color: #000080;">                                      // Save the starting position of the drag</span>
<span style="color: #000080;">                                      if(startDeg == -1){</span>
<span style="color: #000080;">                                              startDeg = deg;</span>
<span style="color: #000080;">                                      }</span>

<span style="color: #000080;">                                      // Calculating the current rotation</span>
<span style="color: #000080;">                                      tmp = Math.floor((deg-startDeg) + rotation);</span>

<span style="color: #000080;">                                       // Making sure the current rotation</span>
<span style="color: #000080;">                                      // stays between 0 and 359</span>
<span style="color: #000080;">                                      if(tmp &lt; 0){</span>
<span style="color: #000080;">                                              tmp = 360 + tmp;</span>
<span style="color: #000080;">                                      }</span>
<span style="color: #000080;">                                      else if(tmp &gt; 359){</span>
<span style="color: #000080;">                                              tmp = tmp % 360;</span>
<span style="color: #000080;">                                      }</span>

<span style="color: #000080;">                                      // Snapping in the off position:</span>
<span style="color: #000080;">                                      if(options.snap &amp;&amp; tmp &lt; options.snap){</span>
<span style="color: #000080;">                                              tmp = 0;</span>
<span style="color: #000080;">                                      }</span>

<span style="color: #000080;">                                      // This would suggest we are at an end position;</span>
<span style="color: #000080;">                                      // we need to block further rotation.</span>
<span style="color: #000080;">                                      if(Math.abs(tmp - lastDeg) &gt; 180){</span>
<span style="color: #000080;">                                              return false;</span>
<span style="color: #000080;">                                      }</span>

<span style="color: #000080;">                                      currentDeg = tmp;</span>
<span style="color: #000080;">                                      lastDeg = tmp;</span>

<span style="color: #000080;">                                      knobTop.css('transform','rotate('+(currentDeg)+'deg)');</span>
<span style="color: #000080;">                                      options.turn(currentDeg/359);</span>
<span style="color: #000080;">                               });</span>

<span style="color: #000080;">                               doc.on('mouseup.rem',function(){</span>
<span style="color: #000080;">                                      knob.off('.rem');</span>
<span style="color: #000080;">                                      doc.off('.rem');</span>

<span style="color: #000080;">                                      // Saving the current rotation</span>
<span style="color: #000080;">                                      rotation = currentDeg;</span>

<span style="color: #000080;">                                      // Marking the starting degree as invalid</span>
<span style="color: #000080;">                                      startDeg = -1;</span>
<span style="color: #000080;">                               });</span>

<span style="color: #000080;">                       });</span>
<span style="color: #000080;">               });</span>
<span style="color: #000080;">        };</span>

<span style="color: #000080;">})(jQuery);</span></pre>
<p><strong>assets/js/script.js</strong></p>
<pre><span style="color: #000080;">$(function(){</span>

<span style="color: #000080;">        var colors = [</span>
<span style="color: #000080;">               '26e000','2fe300','37e700','45ea00','51ef00',</span>
<span style="color: #000080;">               '61f800','6bfb00','77ff02','80ff05','8cff09',</span>
<span style="color: #000080;">               '93ff0b','9eff09','a9ff07','c2ff03','d7ff07',</span>
<span style="color: #000080;">               'f2ff0a','fff30a','ffdc09','ffce0a','ffc30a',</span>
<span style="color: #000080;">               'ffb509','ffa808','ff9908','ff8607','ff7005',</span>
<span style="color: #000080;">               'ff5f04','ff4f03','f83a00','ee2b00','e52000'</span>
<span style="color: #000080;">        ];</span>

<span style="color: #000080;">        var rad2deg = 180/Math.PI;</span>
<span style="color: #000080;">        var deg = 0;</span>
<span style="color: #000080;">        var bars = $('#bars');</span>

<span style="color: #000080;">        for(var i=0;i&lt;colors.length;i++){</span>

<span style="color: #000080;">               deg = i*12;</span>

<span style="color: #000080;">               // Create the colorbars</span>

<span style="color: #000080;">               $('&lt;div&gt;').css({</span>
<span style="color: #000080;">                       backgroundColor: '#'+colors[i],</span>
<span style="color: #000080;">                       transform:'rotate('+deg+'deg)',</span>
<span style="color: #000080;">                       top: -Math.sin(deg/rad2deg)*80+100,</span>
<span style="color: #000080;">                       left: Math.cos((180 - deg)/rad2deg)*80+100,</span>
<span style="color: #000080;">               }).appendTo(bars);</span>
<span style="color: #000080;">        }</span>

<span style="color: #000080;">        var colorBars = bars.find('.colorBar');</span>
<span style="color: #000080;">        var numBars = 0, lastNum = -1;</span>

<span style="color: #000080;">        $('#control').knobKnob({</span>
<span style="color: #000080;">               snap : 10,</span>
<span style="color: #000080;">               value: 154,</span>
<span style="color: #000080;">               turn : function(ratio){</span>
<span style="color: #000080;">                       numBars = Math.round(colorBars.length*ratio);</span>

<span style="color: #000080;">                       // Update the dom only when the number of active bars</span>
<span style="color: #000080;">                       // changes, instead of on every move</span>

<span style="color: #000080;">                       if(numBars == lastNum){</span>
<span style="color: #000080;">                               return false;</span>
<span style="color: #000080;">                       }</span>
<span style="color: #000080;">                       lastNum = numBars;</span>

<span style="color: #000080;">                       colorBars.removeClass('active').slice(0, numBars).addClass('active');</span>
<span style="color: #000080;">               }</span>
<span style="color: #000080;">        });</span>

<span style="color: #000080;">});         </span></pre>
<p>You can use this versatile plugin anywhere in your website as part of the administrative pages or even in the control panels.<br />
<h4>Incoming search terms for the article:</h4>
<ul>
<li><a href="http://blogfreakz.com/wordpress-tutorial/how-to-create-knobknob-a-shiny-knob-control-with-jquery-and-css3/" title="cleaninterface">cleaninterface</a></li>
<li><a href="http://blogfreakz.com/wordpress-tutorial/how-to-create-knobknob-a-shiny-knob-control-with-jquery-and-css3/" title="jquery create div">jquery create div</a></li>
<li><a href="http://blogfreakz.com/wordpress-tutorial/how-to-create-knobknob-a-shiny-knob-control-with-jquery-and-css3/" title="jquery html5 floor layout">jquery html5 floor layout</a></li>
<li><a href="http://blogfreakz.com/wordpress-tutorial/how-to-create-knobknob-a-shiny-knob-control-with-jquery-and-css3/" title="jquery knob -image">jquery knob -image</a></li>
<li><a href="http://blogfreakz.com/wordpress-tutorial/how-to-create-knobknob-a-shiny-knob-control-with-jquery-and-css3/" title="jquery knob control">jquery knob control</a></li>
<li><a href="http://blogfreakz.com/wordpress-tutorial/how-to-create-knobknob-a-shiny-knob-control-with-jquery-and-css3/" title="online math tutorial commentluv">online math tutorial commentluv</a></li>
</ul>
<p><!-- SEO SearchTerms Tagging 2 Plugin --></p>
]]></content:encoded>
			<wfw:commentRss>http://blogfreakz.com/wordpress-tutorial/how-to-create-knobknob-a-shiny-knob-control-with-jquery-and-css3/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Create Preload Images with jQuery in WordPress</title>
		<link>http://blogfreakz.com/wordpress-tutorial/create-preload-images-with-jquery-in-wordpress/</link>
		<comments>http://blogfreakz.com/wordpress-tutorial/create-preload-images-with-jquery-in-wordpress/#comments</comments>
		<pubDate>Fri, 06 Jan 2012 13:55:49 +0000</pubDate>
		<dc:creator>Marvin@Blogfreakz</dc:creator>
				<category><![CDATA[JQuery]]></category>
		<category><![CDATA[Tutorials]]></category>
		<category><![CDATA[Wordpress]]></category>
		<category><![CDATA[free download]]></category>
		<category><![CDATA[jQuery plugin]]></category>

		<guid isPermaLink="false">http://blogfreakz.com/?p=24086</guid>
		<description><![CDATA[This is a lightweight and user-friendly jQuery plugin that makes page loading faster. DynamicWP.net PR and editor Eko Setiawan created it exclusively for WordPress’s TwentyTen Theme. Check out this plugin’s demo HERE: This tutorial will teach us how to preload images with jQuery. Step 1: Download the loading image HERE. Step 2: Upload the loading [...]]]></description>
			<content:encoded><![CDATA[<p><a href='http://blogfreakz.com/wordpress-tutorial/create-preload-images-with-jquery-in-wordpress/attachment/01/' title='01'><img width="200" height="200" src="http://blogfreakz.com/wp-content/uploads/2012/01/01-200x200.png" class="attachment-thumbnail" alt="01 200x200 Create Preload Images with jQuery in WordPress" title="01" /></a><br />
<a href='http://blogfreakz.com/wordpress-tutorial/create-preload-images-with-jquery-in-wordpress/attachment/jquery_200x200/' title='jquery_200x200'><img width="200" height="200" src="http://blogfreakz.com/wp-content/uploads/2012/01/jquery_200x200.jpg" class="attachment-thumbnail" alt="jquery 200x200 Create Preload Images with jQuery in WordPress" title="jquery_200x200" /></a></p>
<p>This is a lightweight and user-friendly jQuery plugin that makes page loading faster. <a href="http://www.dynamicwp.net/">DynamicWP.net</a> PR and editor Eko Setiawan created it exclusively for WordPress’s <a href="http://wordpress.org/extend/themes/twentyten">TwentyTen Theme</a>.</p>
<p>Check out this plugin’s demo <a href="http://themes.dynamicwp.net/">HERE</a>:</p>
<p>This tutorial will teach us how to preload images with jQuery.</p>
<p><strong>Step 1:</strong></p>
<p>Download the loading image <a href="http://www.dynamicwp.net/wp-content/uploads/2011/03/loading.gif">HERE.</a></p>
<p><strong>Step 2:</strong></p>
<p>Upload the loading image folder you have just downloaded to the themes file.</p>
<p><strong>Step 3:</strong></p>
<p>This code should be on your file header.php of your TwentyTen Theme as it serves to call the jQuery function.</p>
<p><!--?php wp_enqueue_script('jquery'); ?--></p>
<p><span style="color: #000080;">&lt;?php wp_enqueue_script(&#8216;jquery&#8217;); ?&gt;</span></p>
<p><strong> </strong><br />
<strong>Step 4:</strong></p>
<p>Below the wp_head(); insert this jQuery preload function.</p>
<pre><span style="color: #000080;">&lt;script type="text/javascript"&gt;</span>

<span style="color: #000080;">               jQuery(function () {</span>
<span style="color: #000080;">                       jQuery('.post-thumbnail-title img').hide(); //hide all the images on the page</span>
<span style="color: #000080;">               });</span>

<span style="color: #000080;">               var i = 0; //initialize</span>
<span style="color: #000080;">               var int=0; //Internet Explorer Fix</span>
<span style="color: #000080;">               jQuery(window).bind("load", function() { //The load event will only fire if the entire page or document is fully loaded</span>
<span style="color: #000080;">                       var int = setInterval("doThis(i)",500); //500 is the fade in speed in milliseconds</span>
<span style="color: #000080;">               });</span>

<span style="color: #000080;">               function doThis() {</span>
<span style="color: #000080;">                       var imgs = jQuery('.post-thumbnail-title img').length; //count the number of images on the page</span>
<span style="color: #000080;">                       if (i &gt;= imgs) { //Loop the images</span>
<span style="color: #000080;">                               clearInterval(int); //When it reaches the last image the loop ends</span>
<span style="color: #000080;">                       }</span>
<span style="color: #000080;">                       jQuery('img:hidden').eq(0).fadeIn(500); //fades in the hidden images one by one</span>
<span style="color: #000080;">                       i++; //add 1 to the count</span>
<span style="color: #000080;">               }</span>
<span style="color: #000080;">&lt;/script&gt;</span></pre>
<p><strong> </strong></p>
<p><script type="text/javascript">// <![CDATA[
 		jQuery(function () { 			jQuery('.post-thumbnail-title img').hide(); //hide all the images on the page 		}); 		var i = 0; //initialize 		var int=0; //Internet Explorer Fix 		jQuery(window).bind("load", function() { //The load event will only fire if the entire page or document is fully loaded 			var int = setInterval("doThis(i)",500); //500 is the fade in speed in milliseconds 		}); 		function doThis() { 			var imgs = jQuery('.post-thumbnail-title img').length; //count the number of images on the page 			if (i >= imgs) { //Loop the images
				clearInterval(int); //When it reaches the last image the loop ends
			}
			jQuery('img:hidden').eq(0).fadeIn(500); //fades in the hidden images one by one
			i++; //add 1 to the count
		}
// ]]&gt;</script></p>
<p><strong>Step 5:</strong></p>
<p>For styling the CSS, open the style.css and add this below on class .post-thumbnail-title.</p>
<p><strong> </strong></p>
<pre><span style="color: #000080;">background: url(images/loading.gif) no-repeat 50% 50% scroll transparent;</span></pre>
<p>It should look like this:</p>
<pre><span style="color: #000080;">.post-thumbnail-title {</span>
<span style="color: #000080;">        border: 1px solid #ccc;</span>
<span style="color: #000080;">        height: 150px;</span>
<span style="color: #000080;">        padding: 4px;</span>
<span style="color: #000080;">        width: 600px;</span>
<span style="color: #000080;">        position: relative;</span>
<span style="color: #000080;">        background: url(images/loading.gif) no-repeat 50% 50% scroll transparent;</span>
<span style="color: #000080;">        }</span></pre>
<h4>Incoming search terms for the article:</h4>
<ul>
<li><a href="http://blogfreakz.com/wordpress-tutorial/create-preload-images-with-jquery-in-wordpress/" title="preload images wordpress">preload images wordpress</a></li>
<li><a href="http://blogfreakz.com/wordpress-tutorial/create-preload-images-with-jquery-in-wordpress/" title="preload images jquery wordpress">preload images jquery wordpress</a></li>
<li><a href="http://blogfreakz.com/wordpress-tutorial/create-preload-images-with-jquery-in-wordpress/" title="var i = 0; //initialize var int=0; //internet explorer fix $(window) bind(load function() { //the load event will only fire if the entire page or document is fully loaded var int = setinterval(dothis(i) 200); //500 is the fade in speed in milliseconds">var i = 0; //initialize var int=0; //internet explorer fix $(window) bind(load function() { //the load event will only fire if the entire page or document is fully loaded var int = setinterval(dothis(i) 200); //500 is the fade in speed in milliseconds</a></li>
<li><a href="http://blogfreakz.com/wordpress-tutorial/create-preload-images-with-jquery-in-wordpress/" title="jquery preload">jquery preload</a></li>
<li><a href="http://blogfreakz.com/wordpress-tutorial/create-preload-images-with-jquery-in-wordpress/" title="jquery img preload wordpress">jquery img preload wordpress</a></li>
<li><a href="http://blogfreakz.com/wordpress-tutorial/create-preload-images-with-jquery-in-wordpress/" title="preload transparent gif">preload transparent gif</a></li>
<li><a href="http://blogfreakz.com/wordpress-tutorial/create-preload-images-with-jquery-in-wordpress/" title="howto preload jquery">howto preload jquery</a></li>
<li><a href="http://blogfreakz.com/wordpress-tutorial/create-preload-images-with-jquery-in-wordpress/" title="jquery wordpress preload images">jquery wordpress preload images</a></li>
<li><a href="http://blogfreakz.com/wordpress-tutorial/create-preload-images-with-jquery-in-wordpress/" title="jquery preload images">jquery preload images</a></li>
<li><a href="http://blogfreakz.com/wordpress-tutorial/create-preload-images-with-jquery-in-wordpress/" title="loading gif jquery">loading gif jquery</a></li>
</ul>
<p><!-- SEO SearchTerms Tagging 2 Plugin --></p>
]]></content:encoded>
			<wfw:commentRss>http://blogfreakz.com/wordpress-tutorial/create-preload-images-with-jquery-in-wordpress/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>5 jQuery Snippets For A More Responsive Web Page</title>
		<link>http://blogfreakz.com/wordpress-tutorial/5-jquery-snippets-for-a-more-responsive-web-page/</link>
		<comments>http://blogfreakz.com/wordpress-tutorial/5-jquery-snippets-for-a-more-responsive-web-page/#comments</comments>
		<pubDate>Sun, 04 Dec 2011 08:24:08 +0000</pubDate>
		<dc:creator>Keith@Blogfreakz</dc:creator>
				<category><![CDATA[JQuery]]></category>
		<category><![CDATA[Tutorials]]></category>
		<category><![CDATA[Web Design]]></category>
		<category><![CDATA[Wordpress]]></category>
		<category><![CDATA[html]]></category>

		<guid isPermaLink="false">http://blogfreakz.com/?p=23302</guid>
		<description><![CDATA[Enable HTML5 markup on older browsers We all know that HTML5 is the future of web development. The only problem is some people still use older versions of web browsers that don’t support this language yet. So for that, here’s a script that will force those browsers to recognize the new tags introduced by HTML5 [...]]]></description>
			<content:encoded><![CDATA[<p><strong>Enable HTML5 markup on older browsers</strong></p>
<p>We all know that HTML5 is the future of web development. The only problem is some people still use older versions of web browsers that don’t support this language yet. So for that, here’s a script that will force those browsers to recognize the new tags introduced by HTML5 such as &lt;article&gt; and &lt;header&gt;.</p>
<p>Download the script (.js file) <a href="http://html5shim.googlecode.com/svn/trunk/html5.js">here</a> .</p>
<p>Then link it (the .js script) to your page by inserting this <a href="http://remysharp.com/2009/01/07/html5-enabling-script/" target="_blank">code</a> below in the &lt;head&gt; portion of the HTML.</p>
<table border="1" cellspacing="0" cellpadding="0">
<tbody>
<tr>
<td width="638" valign="top"><span style="color: #0000ff;"><strong>&lt;!&#8211;[if lt IE 9]&gt;</strong></span>&nbsp;</p>
<p><span style="color: #0000ff;"><strong>&lt;script   src=&#8221;http://html5shim.googlecode.com/svn/trunk/html5.js&#8221;&gt;&lt;/script&gt;</strong></span></p>
<p><span style="color: #0000ff;"><strong>&lt;![endif]&#8211;&gt;</strong></span></td>
</tr>
</tbody>
</table>
<p><em> </em></p>
<p><strong>Test browser for CSS3 support</strong></p>
<p>Here’s a nice <a href="http://snipplr.com/view/44079" target="_blank">code</a> that you can modify to see if a browser supports a particular CSS3 property. Just remember that every time you pass the property, you should take out or omit the dash so like say instead of “border-radius”, pass “BorderRadius”, etc.</p>
<table border="1" cellspacing="0" cellpadding="0">
<tbody>
<tr>
<td width="638" valign="top"><span style="color: #0000ff;"><strong>var supports = (function() {</strong></span>&nbsp;</p>
<p><span style="color: #0000ff;"><strong>var div = document.createElement(&#8216;div&#8217;),</strong></span></p>
<p><span style="color: #0000ff;"><strong>vendors = &#8216;Khtml Ms O Moz Webkit&#8217;.split(&#8216; &#8216;),</strong></span></p>
<p><span style="color: #0000ff;"><strong>len = vendors.length;</strong></span></p>
<p><span style="color: #0000ff;"><strong>return function(prop) {</strong></span></p>
<p><span style="color: #0000ff;"><strong>if ( prop in div.style ) return true;</strong></span></p>
<p><span style="color: #0000ff;"><strong>prop = prop.replace(/^[a-z]/, function(val) {</strong></span></p>
<p><span style="color: #0000ff;"><strong>return val.toUpperCase();</strong></span></p>
<p><span style="color: #0000ff;"><strong>});</strong></span></p>
<p><span style="color: #0000ff;"><strong>while(len&#8211;) {</strong></span></p>
<p><span style="color: #0000ff;"><strong>if ( vendors[len] + prop in div.style ) {</strong></span></p>
<p><span style="color: #0000ff;"><strong>// browser supports box-shadow. Do what you need.</strong></span></p>
<p><span style="color: #0000ff;"><strong>// Or use a bang (!) to test if the browser doesn&#8217;t.</strong></span></p>
<p><span style="color: #0000ff;"><strong>return true;</strong></span></p>
<p><span style="color: #0000ff;"><strong>}</strong></span></p>
<p><span style="color: #0000ff;"><strong>}</strong></span></p>
<p><span style="color: #0000ff;"><strong>return false;</strong></span></p>
<p><span style="color: #0000ff;"><strong>};</strong></span></p>
<p><span style="color: #0000ff;"><strong>})();</strong></span></p>
<p><span style="color: #0000ff;"><strong>if ( supports(&#8216;textShadow&#8217;) ) {</strong></span></p>
<p><span style="color: #0000ff;"><strong>document.documentElement.className += &#8216; textShadow&#8217;;</strong></span></p>
<p><span style="color: #0000ff;"><strong>}</strong></span></td>
</tr>
</tbody>
</table>
<p><strong>Preloading images</strong></p>
<p>Spare your visitors from having to wait a few seconds for a large image to load up every time they click on a thumbnail. With this code you can just preload the images in the background so they’re ready to be displayed.</p>
<table border="1" cellspacing="0" cellpadding="0">
<tbody>
<tr>
<td width="638" valign="top"><span style="color: #0000ff;"><strong>(function($) {</strong></span>&nbsp;</p>
<p><span style="color: #0000ff;"><strong>var cache = [];</strong></span></p>
<p><span style="color: #0000ff;"><strong><em>// Arguments are image paths relative to the   current page.</em></strong></span></p>
<p><span style="color: #0000ff;"><strong>$.preLoadImages = function() {</strong></span></p>
<p><span style="color: #0000ff;"><strong>var args_len = arguments.length;</strong></span></p>
<p><span style="color: #0000ff;"><strong>for (var i = args_len; i&#8211;;) {</strong></span></p>
<p><span style="color: #0000ff;"><strong>var cacheImage = document.createElement(&#8216;img&#8217;);</strong></span></p>
<p><span style="color: #0000ff;"><strong>cacheImage.src = arguments[i];</strong></span></p>
<p><span style="color: #0000ff;"><strong>cache.push(cacheImage);</strong></span></p>
<p><span style="color: #0000ff;"><strong>}</strong></span></p>
<p><span style="color: #0000ff;"><strong>}</strong></span></p>
<p><span style="color: #0000ff;"><strong>})(jQuery)</strong></span></td>
</tr>
</tbody>
</table>
<p>You can check out this code&#8217;s <a href="http://engineeredweb.com/blog/09/12/preloading-images-jquery-and-javascript" target="_blank">source page</a> to get a better understanding on the code’s step-by-step process.</p>
<p><strong>Add class to &lt;body&gt; tag if JavaScript is enabled</strong></p>
<p>What this<a href="http://eisabainyo.net/weblog/2010/09/01/10-useful-jquery-snippets/" target="_blank"> code</a> simply does is just add a hasJS class in the &lt;body&gt; tag if it detects that JavaScript is enabled on the client’s browser setting.</p>
<table border="1" cellspacing="0" cellpadding="0">
<tbody>
<tr>
<td width="638" valign="top">
<pre><strong><span style="color: #0000ff;">$('body').addClass('hasJS');</span></strong></pre>
</td>
</tr>
</tbody>
</table>
<p><strong>Disable the “Enter” key in forms</strong></p>
<p>This fourth and last one’s not really about making your web page more responsive but I thought I’d include it anyway since I think that this can be a very helpful code to your web site’s visitors, especially if they’re viewing or filling up a form page. This <a href="http://snipplr.com/view/10943/disable-enter-via-jquery/" target="_blank">code</a> will prevent any unwanted or accidental form submission by disabling the function of the “Enter” key.</p>
<table border="1" cellspacing="0" cellpadding="0">
<tbody>
<tr>
<td width="638" valign="top"><span style="color: #0000ff;"><strong>$(&#8220;#form&#8221;).keypress(function(e) {</strong></span>&nbsp;</p>
<p><span style="color: #0000ff;"><strong>if (e.which == 13) {</strong></span></p>
<p><span style="color: #0000ff;"><strong>return false;</strong></span></p>
<p><span style="color: #0000ff;"><strong>}</strong></span></p>
<p><span style="color: #0000ff;"><strong>});</strong></span></td>
</tr>
</tbody>
</table>
<p><em> </em><br />
<h4>Incoming search terms for the article:</h4>
<ul>
<li><a href="http://blogfreakz.com/wordpress-tutorial/5-jquery-snippets-for-a-more-responsive-web-page/" title="jquery responsive box">jquery responsive box</a></li>
<li><a href="http://blogfreakz.com/wordpress-tutorial/5-jquery-snippets-for-a-more-responsive-web-page/" title="responsive lightbox jquery">responsive lightbox jquery</a></li>
<li><a href="http://blogfreakz.com/wordpress-tutorial/5-jquery-snippets-for-a-more-responsive-web-page/" title="html5 jquery snippets">html5 jquery snippets</a></li>
<li><a href="http://blogfreakz.com/wordpress-tutorial/5-jquery-snippets-for-a-more-responsive-web-page/" title="jquery force older browsers to use Html5 tags">jquery force older browsers to use Html5 tags</a></li>
<li><a href="http://blogfreakz.com/wordpress-tutorial/5-jquery-snippets-for-a-more-responsive-web-page/" title="box jquery responsive web design">box jquery responsive web design</a></li>
<li><a href="http://blogfreakz.com/wordpress-tutorial/5-jquery-snippets-for-a-more-responsive-web-page/" title="jquery под responsive design box">jquery под responsive design box</a></li>
<li><a href="http://blogfreakz.com/wordpress-tutorial/5-jquery-snippets-for-a-more-responsive-web-page/" title="jquery 브라우저 이미지 캐쉬">jquery 브라우저 이미지 캐쉬</a></li>
<li><a href="http://blogfreakz.com/wordpress-tutorial/5-jquery-snippets-for-a-more-responsive-web-page/" title="lightbox jquery snippets for wordpress">lightbox jquery snippets for wordpress</a></li>
<li><a href="http://blogfreakz.com/wordpress-tutorial/5-jquery-snippets-for-a-more-responsive-web-page/" title="lightbox responsive">lightbox responsive</a></li>
<li><a href="http://blogfreakz.com/wordpress-tutorial/5-jquery-snippets-for-a-more-responsive-web-page/" title="lightbox responsive web">lightbox responsive web</a></li>
</ul>
<p><!-- SEO SearchTerms Tagging 2 Plugin --></p>
]]></content:encoded>
			<wfw:commentRss>http://blogfreakz.com/wordpress-tutorial/5-jquery-snippets-for-a-more-responsive-web-page/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>A Simple Edit WordPress Theme to Support Sidebar Widgets</title>
		<link>http://blogfreakz.com/others/a-simple-edit-wordpress-theme-to-support-sidebar-widgets/</link>
		<comments>http://blogfreakz.com/others/a-simple-edit-wordpress-theme-to-support-sidebar-widgets/#comments</comments>
		<pubDate>Mon, 14 Nov 2011 21:24:32 +0000</pubDate>
		<dc:creator>Nancy</dc:creator>
				<category><![CDATA[Others]]></category>
		<category><![CDATA[Themes]]></category>
		<category><![CDATA[Tooltips]]></category>
		<category><![CDATA[Tutorials]]></category>
		<category><![CDATA[Wordpress]]></category>
		<category><![CDATA[php file]]></category>
		<category><![CDATA[sidebar widgets]]></category>
		<category><![CDATA[Wordpress Themes]]></category>

		<guid isPermaLink="false">http://blogfreakz.com/?p=22927</guid>
		<description><![CDATA[What do you do, when after an exhaustive search for the perfect WordPress theme that you love, all of a sudden you run into an error message saying that your new theme doesn&#8217;t support your sidebar widgets? Try these steps to edit the sidebar widgets to fix it! 1. Backup your theme files and folders. [...]]]></description>
			<content:encoded><![CDATA[<p>What do you do, when after an exhaustive search for the <a href="http://theme.wordpress.com/themes/">perfect WordPress theme</a> that you love, all of a sudden you run into an error message saying that your new theme doesn&#8217;t support your sidebar widgets?</p>
<p>Try these steps to edit the sidebar widgets to fix it!<span style="color: #0000ff;"><span style="color: #000000;"> </span></span></p>
<p><strong><span style="color: #0000ff;"><span style="color: #000000;">1. Backup your theme files and folders.</span></span></strong><span style="color: #000000;"> </span><span style="color: #000000;"> </span></p>
<p><strong><span style="color: #000000;">2. Edit the functions.php file, and paste these lines of code to the top of the file &#8212; and Save It. </span></strong><span style="color: #0000ff;"><br />
</span><br />
<span style="color: #0000ff;"><strong>&lt;?php</strong></span><br />
<span style="color: #0000ff;"><strong> if ( function_exists(’register_sidebar’) )</strong></span><br />
<span style="color: #0000ff;"><strong> register_sidebar();</strong></span><br />
<span style="color: #0000ff;"><strong> ?&gt;</strong></span></p>
<p><strong>3. Edit the sidebar.php file, and paste these lines of code right below of the first &lt;ul&gt; tag of the file.</strong></p>
<p><span style="color: #0000ff;"> <strong>&lt;?php if ( !function_exists(’dynamic_sidebar’)</strong></span><br />
<span style="color: #0000ff;"><strong> || !dynamic_sidebar() ) : ?&gt;</strong></span></p>
<p><strong>4. Still inside the sidebar.php file, paste these line of code right above of the last &lt;/ul&gt; tag of the file and save it.</strong></p>
<p><span style="color: #0000ff;"><strong>&lt;?php endif; ?&gt;</strong></span></p>
<p>Now try to edit your sidebar widgets, it should be working now.<br />
<h4>Incoming search terms for the article:</h4>
<ul>
<li><a href="http://blogfreakz.com/others/a-simple-edit-wordpress-theme-to-support-sidebar-widgets/" title="edit php files">edit php files</a></li>
<li><a href="http://blogfreakz.com/others/a-simple-edit-wordpress-theme-to-support-sidebar-widgets/" title="incoming search terms wordpress">incoming search terms wordpress</a></li>
<li><a href="http://blogfreakz.com/others/a-simple-edit-wordpress-theme-to-support-sidebar-widgets/" title="light simple theme wordpress 2011 november">light simple theme wordpress 2011 november</a></li>
<li><a href="http://blogfreakz.com/others/a-simple-edit-wordpress-theme-to-support-sidebar-widgets/" title="simple wordpress theme">simple wordpress theme</a></li>
<li><a href="http://blogfreakz.com/others/a-simple-edit-wordpress-theme-to-support-sidebar-widgets/" title="wordpress theme frameworks html5">wordpress theme frameworks html5</a></li>
<li><a href="http://blogfreakz.com/others/a-simple-edit-wordpress-theme-to-support-sidebar-widgets/" title="wordpress themes simple">wordpress themes simple</a></li>
</ul>
<p><!-- SEO SearchTerms Tagging 2 Plugin --></p>
]]></content:encoded>
			<wfw:commentRss>http://blogfreakz.com/others/a-simple-edit-wordpress-theme-to-support-sidebar-widgets/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>Rebranding Rules that You cannot Override</title>
		<link>http://blogfreakz.com/others/rebranding-rules-that-you-cannot-override/</link>
		<comments>http://blogfreakz.com/others/rebranding-rules-that-you-cannot-override/#comments</comments>
		<pubDate>Fri, 04 Nov 2011 00:29:07 +0000</pubDate>
		<dc:creator>ContentLabz</dc:creator>
				<category><![CDATA[Articles]]></category>
		<category><![CDATA[blogger]]></category>
		<category><![CDATA[Others]]></category>
		<category><![CDATA[Tech News]]></category>
		<category><![CDATA[Tooltips]]></category>
		<category><![CDATA[Web Design]]></category>
		<category><![CDATA[Wordpress]]></category>

		<guid isPermaLink="false">http://blogfreakz.com/?p=22770</guid>
		<description><![CDATA[Rebranding is certainly not a common practice among marketers. It raises my hackles whenever I am asked to take part in a re-branding exercise because there are so many examples of great failures that I think twice before committing myself to action. It is not just about money, other things are involved intrinsically and a [...]]]></description>
			<content:encoded><![CDATA[<p><a rel="attachment wp-att-22775" href="http://blogfreakz.com/others/rebranding-rules-that-you-cannot-override/attachment/rebranding12/"><img class="aligncenter size-full wp-image-22775" title="rebranding12" src="http://blogfreakz.com/wp-content/uploads/2011/11/rebranding12.png" alt="rebranding12 Rebranding Rules that You cannot Override" width="838" height="463" /></a><br />
<strong>Rebranding</strong> is certainly not a common practice among marketers. It raises my hackles whenever I am asked to take part in a re-branding exercise because there are so many examples of great failures that I think twice before committing myself to action. It is not just about money, other things are involved intrinsically and a minor mistake could be snowballed into massive marketing disaster. And so like any other sane marketing professionals, I do not like the idea of being branded as failed marketer. Such appreciation might not be that much helpful for landing a job. So, here are some must follow rules that every marketer should follow before rebranding your blog&#8217;s name:</p>
<p><a rel="attachment wp-att-22783" href="http://blogfreakz.com/others/rebranding-rules-that-you-cannot-override/attachment/rebranding123/"><img class="aligncenter size-full wp-image-22783" title="rebranding123" src="http://blogfreakz.com/wp-content/uploads/2011/11/rebranding123.png" alt="rebranding123 Rebranding Rules that You cannot Override" width="384" height="275" /></a></p>
<ul>
<li><strong>Make Sure Rebranding is A Necessity</strong>: You should to take to rebranding only if the practice is unavoidable and not  just to rub off the rust. If your blog has been around for quite a while, you may need to change the logo or the slogan time to time just to make your company look relevant with the change of time. Google has done the same thing and Microsoft has done it too. But make sure there is a solid reason behind this otherwise, backlash is waiting for you at the end.</li>
</ul>
<ul>
<li><strong>Rebranding for Good</strong>: You need to make it a point that the rebranding exercise is doing good to your online reputation, and not the other way around. It does not make any sense to make changes in the name or in the logo just for the sake of doing something good. There are some glaring examples when the old one looks and sounds better than the new one. Make sure that you are not going to add another example to this vast list.</li>
</ul>
<p><strong><a rel="attachment wp-att-22784" href="http://blogfreakz.com/others/rebranding-rules-that-you-cannot-override/attachment/rebranding/"><img class="alignleft size-thumbnail wp-image-22784" title="rebranding" src="http://blogfreakz.com/wp-content/uploads/2011/11/rebranding-200x200.png" alt="rebranding 200x200 Rebranding Rules that You cannot Override" width="200" height="200" /></a> Test it:</strong> It is good practice to have a test run of the rebranding marketing mix on a small group of people and get their feedback. If the feedback is positive and impressive, you can go ahead with the plan and have a blast. But if the result is less than positive, you should stop and try to figure out what went wrong with it. After fixing it rerun the same marketing plan and see if thing is taking a favorable turn or not.</p>
<ul>
<li><strong>Do Not negate Existing reputation: </strong>This is where most marketers go wrong. They give little attention or no attention to existing brand reputation. You need to get into the mindset of the people before digging into something new. Your rebranding exercise should not play with the emotion of existing customers. The rebranding exercise should be a welcome move and not an aggressive move.</li>
</ul>
<ul>
<li><strong>Stick To history</strong>: Unless the purpose is to make a dramatic move from previous stance, rebranding exercise should be linked with the history of the blog. You are free to expand, revitalize and reenergize brand image of your blog but make sure that people can still relate it to you. A complete deviation is certainly not a welcome move by any standard.</li>
</ul>
<ul>
<li><strong>Put On Your Thinking cap</strong>: Yes before you make a single move in the direction of refreshing the public image of your organization, you need to have a clear idea how your targeted audience are going react. Just make sure that you are planning to make them happy and you are good.</li>
</ul>
<p class="alert">&nbsp;</p>
<p><strong><em>This is a the first guest post of Michael Evans. I hope all you blogfreakz out there, find this new article informative and refreshing.</em></strong></p>
<p>&nbsp;</p>
<p><em>Author Bio</em><br />
Michael Evans is a passionate writer and he has been writing for Site2You which is the best <a href="http://www.site2you.com/">online website builder</a>. He has written different article on web design, online marketing and SEO. He is equally enthusiastic about latest gadgets.<br />
<h4>Incoming search terms for the article:</h4>
<ul>
<li><a href="http://blogfreakz.com/others/rebranding-rules-that-you-cannot-override/" title="rebranding">rebranding</a></li>
<li><a href="http://blogfreakz.com/others/rebranding-rules-that-you-cannot-override/" title="re-branding">re-branding</a></li>
<li><a href="http://blogfreakz.com/others/rebranding-rules-that-you-cannot-override/" title="rebranding rules">rebranding rules</a></li>
<li><a href="http://blogfreakz.com/others/rebranding-rules-that-you-cannot-override/" title="rebranding examples in 2011">rebranding examples in 2011</a></li>
<li><a href="http://blogfreakz.com/others/rebranding-rules-that-you-cannot-override/" title="rebranding images">rebranding images</a></li>
<li><a href="http://blogfreakz.com/others/rebranding-rules-that-you-cannot-override/" title="rebranding nesessity">rebranding nesessity</a></li>
<li><a href="http://blogfreakz.com/others/rebranding-rules-that-you-cannot-override/" title="rebranding logo why not to test it">rebranding logo why not to test it</a></li>
<li><a href="http://blogfreakz.com/others/rebranding-rules-that-you-cannot-override/" title="rebranding rules colour">rebranding rules colour</a></li>
<li><a href="http://blogfreakz.com/others/rebranding-rules-that-you-cannot-override/" title="rebranding exercise">rebranding exercise</a></li>
<li><a href="http://blogfreakz.com/others/rebranding-rules-that-you-cannot-override/" title="rebranding examples 2011">rebranding examples 2011</a></li>
</ul>
<p><!-- SEO SearchTerms Tagging 2 Plugin --></p>
]]></content:encoded>
			<wfw:commentRss>http://blogfreakz.com/others/rebranding-rules-that-you-cannot-override/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
	</channel>
</rss>

