<?xml version="1.0" encoding="UTF-8"?>
<?xml-stylesheet type="text/xsl" media="screen" href="/~d/styles/rss2full.xsl"?><?xml-stylesheet type="text/css" media="screen" href="http://feeds.feedburner.com/~d/styles/itemcontent.css"?><rss 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/" xmlns:feedburner="http://rssnamespace.org/feedburner/ext/1.0" version="2.0">

<channel>
	<title>Azhar Kamar</title>
	
	<link>http://azharkamar.com</link>
	<description />
	<lastBuildDate>Fri, 18 May 2012 13:02:54 +0000</lastBuildDate>
	
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="self" type="application/rss+xml" href="http://feeds.feedburner.com/AzharKamar" /><feedburner:info uri="azharkamar" /><atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="hub" href="http://pubsubhubbub.appspot.com/" /><item>
		<title>Automatic Redirect to Mobile Website using JavaScript</title>
		<link>http://feedproxy.google.com/~r/AzharKamar/~3/6YfK_9utPpQ/</link>
		<comments>http://azharkamar.com/5610/mobile-redirect-javascript/#comments</comments>
		<pubDate>Fri, 16 Mar 2012 20:07:57 +0000</pubDate>
		<dc:creator>Azhar Kamar</dc:creator>
				<category><![CDATA[Snippets]]></category>
		<category><![CDATA[auto-redirect]]></category>
		<category><![CDATA[JavaScript]]></category>
		<category><![CDATA[Mobile]]></category>
		<category><![CDATA[Mobile Redirect]]></category>
		<category><![CDATA[Mobile Redirection]]></category>
		<category><![CDATA[Mobile Site]]></category>

		<guid isPermaLink="false">http://azharkamar.com/?p=5610</guid>
		<description><![CDATA[Developing a Mobile site? Want users to be automatically redirected when they access it from a mobile device? Well I think I&#8217;ve got a nice piece of JavaScript that will do just that. 
But firstly I&#8217;d like to mention that as far as possible, do it the responsive way using the HTML5 and CSS3 media ......... [<a href="http://azharkamar.com/5610/mobile-redirect-javascript/"><b>Read more</b></a>]]]></description>
			<content:encoded><![CDATA[<p>Developing a Mobile site? Want users to be automatically redirected when they access it from a mobile device? Well I think I&#8217;ve got a nice piece of JavaScript that will do just that. <span id="more-5610"></span></p>
<p>But firstly I&#8217;d like to mention that as far as possible, do it the responsive way using the HTML5 and CSS3 media queries. </p>
<p>I believe every awesome developer would recommend the <a  href="http://html5boilerplate.com/">HTML5 Boilerplate</a> so check out this <a  href="http://azharkamar.com/5488/flexslider-html5-boilerplate-initializr/">HTML5 Boilerplate + FlexSlider template </a>I made. </p>
<p>Now let&#8217;s take a look at the script that will automatically redirect a user to the mobile version of the site when he&#8217;s on mobile. </p>
<p>Wait, demo first. </p>
<p><span class="cred fbold">Use a mobile device to view the demo! </span>Like duh, you already knew that right.</p>
<a  target="_blank" class="jbutton black medium rounded " href="http://www.azharkamar.com/demos/mobile-redirect-javascript"><span >View Demo</span></a>
<h3>Mobile Redirect JavaScript Snippet</h3>
<p>This script was adapted from <a  href="http://localstreamer.posterous.com/javascript-code-snippet-how-to-detect-all-mob">Local Streamer</a> (thanks dude) and then modified to handle the case <strong>where users want to view the desktop site after redirected to the mobile site</strong>.</p>
<p>Here&#8217;s an overview of what this snippet does:</p>
<ul>
<li>Let&#8217;s say the desktop site is <a  href="http://www.azharkamar.com/demos/mobile-redirect-javascript">www.azharkamar.com/demos/mobile-redirect-javascript</a> and the mobile site is <a  href="http://m.azharkamar.com">m.azharkamar.com</a></li>
<li>If the user opens <a  href="http://www.azharkamar.com/demos/mobile-redirect-javascript">www.azharkamar.com/demos/mobile-redirect-javascript</a> via mobile, he will automatically be redirected to <a  href="http://m.azharkamar.com">m.azharkamar.com</a>.</li>
<li>Now if the user then wants to view the desktop site from mobile, he will click a link at the footer (that says something like &#8216;Go Desktop Site&#8217;) and he will be directed to www.azharkamar.com, <strong>without getting stuck in a silly loop</strong>.</li>
<li>One can go to and fro the desktop and the mobile site while using a mobile device without any problem.</li>
</ul>
<h3>Instructions</h3>
<ul>
<li>Copy the script below and paste it in the <strong>default index file of your desktop site </strong>before the <code>&lt;/head></code> tag.</li>
<li>On line 5, the code <code>refUrl.substr(7, 16)</code> will simply remove the first 7 characters and then return the next 16 characters of <code>refUrl</code>.</li>
<li>7 is the amount of chars in <code>http://</code> so don&#8217;t change this number unless your mobile site is using some other protocol. 16 is the number of characters in <code>m.azharkamar.com</code> so you&#8217;ll have to change this number accordingly. Here&#8217;s a <a  href="http://www.string-functions.com/length.aspx">string counter</a> for people who don&#8217;t like counting.</li>
</ul>
<pre class="brush: php; title: ;">
&lt;script&gt;
//&lt;![CDATA[
    var mobile = (/iphone|ipad|ipod|android|blackberry|mini|windows\sce|palm/i.test(navigator.userAgent.toLowerCase()));
	var refUrl = document.referrer; // Get the URL where the user came from
	var prevUrl = refUrl.substr(7,16); // Create a substring after 'http://' and '.com'
        var mobileUrl = &quot;m.azharkamar.com&quot;; // String from mobile site URL; must match prevUrl

   // Run auto-redirect only if the user is on mobile and isn't from m.azharkamar.com
   if ((mobile) &amp;&amp; !(prevUrl == mobileUrl)) {
        document.location = &quot;http://m.azharkamar.com&quot;;
    }
 //]]&gt;
&lt;/script&gt;
</pre>
<p><!-- PHP 5.x --></p>
]]></content:encoded>
			<wfw:commentRss>http://azharkamar.com/5610/mobile-redirect-javascript/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://azharkamar.com/5610/mobile-redirect-javascript/</feedburner:origLink></item>
		<item>
		<title>Facebook Profile and Page Timeline PSD Template Free Download</title>
		<link>http://feedproxy.google.com/~r/AzharKamar/~3/gYd8aUs09mE/</link>
		<comments>http://azharkamar.com/5572/facebook-profile-page-timeline-psd-template-free-download/#comments</comments>
		<pubDate>Mon, 12 Mar 2012 22:28:24 +0000</pubDate>
		<dc:creator>Azhar Kamar</dc:creator>
				<category><![CDATA[Freebies]]></category>
		<category><![CDATA[Facebook]]></category>
		<category><![CDATA[Facebook Page]]></category>
		<category><![CDATA[Facebook Profile]]></category>
		<category><![CDATA[Facebook Timeline]]></category>
		<category><![CDATA[PSD]]></category>
		<category><![CDATA[Timeline]]></category>

		<guid isPermaLink="false">http://azharkamar.com/?p=5572</guid>
		<description><![CDATA[So you&#8217;re all hyped up about creating that cool Facebook timeline profile or page? Of course you are. Well I&#8217;m pleased to announce that you&#8217;ve just won yourself a free, juicy Facebook page and profile timeline PSD template! LOL

Page and profile? What tha diff? They&#8217;ve got a teeny weeny bit of difference &#8211; The profile ......... [<a href="http://azharkamar.com/5572/facebook-profile-page-timeline-psd-template-free-download/"><b>Read more</b></a>]]]></description>
			<content:encoded><![CDATA[<p>So you&#8217;re all hyped up about creating that cool Facebook timeline profile or page? Of course you are. Well I&#8217;m pleased to announce that you&#8217;ve just won yourself a free, juicy Facebook page and profile timeline PSD template! LOL<br />
<span id="more-5572"></span></p>
<p>Page and profile? What tha diff? They&#8217;ve got a teeny weeny bit of difference &#8211; The profile photo placement for the Facebook page timeline is 17 pixels lower than that of the Facebook profile. As for the cover photo, there&#8217;s no difference. </p>
<p>This little template contains 2 different main groups, the separated and combined masking for the cover and profile photo. You can learn more about it below.</p>
<p><strong>Grab the PSD template now using the download link down there! </strong></p>
<a  target="_blank" class="jbutton black medium rounded " href="http://azharkamar.com/wp-content/plugins/download-monitor/download.php?id=6"><span >Download Facebook Page &#038; Profile Timeline Template</span></a>
<h3>Instructions &#038; Explanations</h3>
<p><img src="http://azharkamar.com/wp-content/uploads/2012/03/facebook-page-timeline-combined.jpg" alt="Facebook page timeline combined" title="facebook-page-timeline-combined" width="652" height="289" class="alignnone size-full wp-image-5587" /></p>
<ul>
<li>Click the big black button above to download <code>facebook_profile_page_timeline_template.psd</code></li>
<li>You&#8217;ll see 2 main folders, <strong>separated </strong>and <strong>combined</strong>. The former contains the profile and cover photo asked separately. The <strong>separated </strong>folder contains both photo masks merged together to allow you to create the cool effect that you see in the image above, <a  href="http://www.hongkiat.com/blog/creative-facebook-timeline-covers/">here</a> and <a  href="http://mashable.com/2011/12/08/facebook-timeline-ideas/">here</a>. </li>
<li>Then simply replace layers indicated in red with your own image.</li>
<li>Within each folder, you will see another 2 folders named <strong>facebook profile </strong>and <strong>facebook page </strong>respectively. As stated above, the only difference is that the Facebook page&#8217;s profile photo is 17 pixels lower than the Facebook profile&#8217;s. I created 2 folders simply to ease your work.</li>
<li>Once you&#8217;re happy with your new bombastic timeline design, just <strong>Save for Web &#038; Devices </strong>(Ctrl + Shift + Alt + s) and export the slices selectively. You might need to right click <strong>Slice 5 </strong>and <strong>Bring to Front</strong>.</li>
</ul>
<p>You might wanna post your masterpieces in the comments section.<br />
<strong>Have fun!</strong></p>
<div class="cred">
<p><strong>[<em>UPDATE </em>- 29 March 2012]</strong><br />
Facebook has made it harder for us to play around with this harmless design hack (no freaking idea why) by increasing the minimum size for a profile photo upload to 180 by 180 pixels, previously 125 by 125 pixels. Hence when you upload your saved profile photo image, Facebook will throw you an error saying your file dimensions is too small. </p>
<p>So the workaround is simple. After saving your sliced profile photo (facebook_profile_photo.jpg), open it again in Photoshop and do a resize to 180 pixels. Resave, reupload, and you&#8217;re done!
</p></div>
<p><!-- PHP 5.x --></p>
]]></content:encoded>
			<wfw:commentRss>http://azharkamar.com/5572/facebook-profile-page-timeline-psd-template-free-download/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://azharkamar.com/5572/facebook-profile-page-timeline-psd-template-free-download/</feedburner:origLink></item>
		<item>
		<title>How to Increase the Maximum File Upload Size in WordPress</title>
		<link>http://feedproxy.google.com/~r/AzharKamar/~3/4q90Okh083c/</link>
		<comments>http://azharkamar.com/5542/increase-file-upload-size-wordpress/#comments</comments>
		<pubDate>Tue, 28 Feb 2012 23:05:14 +0000</pubDate>
		<dc:creator>Azhar Kamar</dc:creator>
				<category><![CDATA[Snippets]]></category>
		<category><![CDATA[htaccess]]></category>
		<category><![CDATA[PHP]]></category>
		<category><![CDATA[php.ini]]></category>
		<category><![CDATA[post_max_size]]></category>
		<category><![CDATA[upload_max_filesize]]></category>
		<category><![CDATA[WordPress]]></category>

		<guid isPermaLink="false">http://azharkamar.com/?p=5542</guid>
		<description><![CDATA[My blog has been using the Download Monitor WordPress plugin for about 2 years now and I&#8217;ve been loving it since. So when a client wanted a function whereby admins can upload files from the backend for registered users to download from the frontend, I immediately knew which WordPress plugin to turn to.
So I plugged ......... [<a href="http://azharkamar.com/5542/increase-file-upload-size-wordpress/"><b>Read more</b></a>]]]></description>
			<content:encoded><![CDATA[<p>My blog has been using the <strong><a  href="http://wordpress.org/extend/plugins/download-monitor/">Download Monitor</a> </strong>WordPress plugin for about 2 years now and I&#8217;ve been loving it since. So when a client wanted a function whereby admins can upload files from the backend for registered users to download from the frontend, I immediately knew which WordPress plugin to turn to.<span id="more-5542"></span></p>
<p>So I plugged in Download Monitor on my client&#8217;s Wordpress site and off it went, doing it&#8217;s download-monitoring magic. </p>
<p>Until one day, one user reported a bug &#8211; certain files aren&#8217;t uploading successfully. Since I had experienced a similar issue before during my Joomla days, my mind instantly inclined towards the <em>maximum file upload size </em>issue. </p>
<p>After some lolcats and rage comics and serious troubleshooting, it was confirmed &#8211; The maximum file upload size was the culprit.</p>
<p>It was set to a low 8MB, hence when the user uploads files bigger than that, the process simply fails (unfortunately without an error message for the poor clueless user).</p>
<h3>How to Increase the Maximum File Upload Size </h3>
<p>After a few Google searches, I finally solved this with the help of <a  href="http://www.wpbeginner.com/wp-tutorials/how-to-increase-the-maximum-file-upload-size-in-wordpress/">WPBeginner</a>.</p>
<p>Just follow the steps below in order. After completing each one, check whether the problem was fixed. Cause if step 1 solved the issue, you wouldn&#8217;t need to proceed to step 2, and so on. As for me, I had to go till step 3. ;(</p>
<h3>1. Edit your Theme&#8217;s Functions.php</h3>
<p>Copy these to your theme&#8217;s <code>functions.php </code>file, before the closing <code>?></code> tag. The file should be here <code>/wp-content/themes/<em>your-theme</em>/functions.php</code>.</p>
<pre class="brush: php; title: ;">
@ini_set( 'upload_max_size' , '64M' );
@ini_set( 'post_max_size', '64M');
@ini_set( 'max_execution_time', '300' );
</pre>
<p>Now try uploading a big-sized file. Nothing happened? That&#8217;s pretty normal. Go on to the next step.</p>
<h3>2. Create / Edit the php.ini file</h3>
<p>This php.ini might be the culprit. Login to your FTP client and check if this file is in the root directory. If it is, append/edit as follows. If you can&#8217;t find the file in your root, chances are your site is hosted in a shared server hence you&#8217;ve gotta create one for yourself with the codes below.</p>
<pre class="brush: php; title: ;">
upload_max_filesize = 64M
post_max_size = 64M
max_execution_time = 300
</pre>
<h3>3. Add a Few Lines to the .htaccess File</h3>
<p>This was the step that worked for me. If you&#8217;re here, chances are you&#8217;re feeling down, so I hope this one works for you too. If it doesn&#8217;t, you might wanna contact your hosting provider. </p>
<p>The .htaccess file is located in your site&#8217;s root directory.</p>
<p>Just copy these codes into the bottom of your <code>.htaccess </code>file, before<code> # END WordPress</code>.</p>
<pre class="brush: php; title: ;">
php_value upload_max_filesize 64M
php_value post_max_size 64M
php_value max_execution_time 300
php_value max_input_time 300
</pre>
<p><!-- PHP 5.x --></p>
]]></content:encoded>
			<wfw:commentRss>http://azharkamar.com/5542/increase-file-upload-size-wordpress/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		<feedburner:origLink>http://azharkamar.com/5542/increase-file-upload-size-wordpress/</feedburner:origLink></item>
		<item>
		<title>How to use FlexSlider with HTML5 Boilerplate, Initializr</title>
		<link>http://feedproxy.google.com/~r/AzharKamar/~3/qMe9YFV1dR8/</link>
		<comments>http://azharkamar.com/5488/flexslider-html5-boilerplate-initializr/#comments</comments>
		<pubDate>Tue, 31 Jan 2012 21:01:17 +0000</pubDate>
		<dc:creator>Azhar Kamar</dc:creator>
				<category><![CDATA[Tutorials]]></category>
		<category><![CDATA[FlexSlider]]></category>
		<category><![CDATA[HTML5]]></category>
		<category><![CDATA[HTML5 Boilerplate]]></category>
		<category><![CDATA[Initializr]]></category>
		<category><![CDATA[Responsive Web Design]]></category>

		<guid isPermaLink="false">http://azharkamar.com/?p=5488</guid>
		<description><![CDATA[I first came across the HTML5 Boilerplate a few months back; ever since then, I&#8217;ve tried to persuade my inner web-standard soul to find the time to mess around with it. And so I did a few weeks back and honestly, I took quite some time to fully comprehend why in wintered hell this HTML5 ......... [<a href="http://azharkamar.com/5488/flexslider-html5-boilerplate-initializr/"><b>Read more</b></a>]]]></description>
			<content:encoded><![CDATA[<p>I first came across the <a  href="http://html5boilerplate.com/">HTML5 Boilerplate</a> a few months back; ever since then, I&#8217;ve tried to persuade my inner web-standard soul to find the time to mess around with it. And so I did a few weeks back and honestly, I took quite some time to fully comprehend why in wintered hell this HTML5 kitchen-utensil-thing would be useful for my projects.<span id="more-5488"></span> But once I understood the boilerplate&#8217;s humongous power, I wanted every website I build from now on, to have its foundation.</p>
<p>Alright. So&#8230; I had a web design project in hand at that time, so I started hunting for boilerplate themes and examples online (there weren&#8217;t many) and decided to just use the <a  href="http://www.initializr.com/">Initializr</a> template, which is also featured in <a  href="http://html5boilerplate.com/">HTML5 Boilerplate</a>. If you go to <a  href="http://www.initializr.com/">Initializr</a>, you&#8217;ll notice there&#8217;s 3 options for you to get your templates. I tried all 3 and I personally found the Responsive one most convenient &#8211; <a  href="http://www.initializr.com/builder?izr-responsive&#038;jquerymin&#038;h5bp-chromeframe&#038;h5bp-analytics&#038;h5bp-iecond&#038;h5bp-favicon&#038;h5bp-appletouchicons&#038;modernizrrespond&#038;h5bp-css&#038;h5bp-csshelpers&#038;h5bp-mediaqueryprint&#038;izr-emptyscript">Download the Responsive template</a>.</p>
<p>I uploaded the files into my server and did a tiny bit of testing (<a  href="http://azharkamar.com/demos/html5-boilerplate/">view demo</a>). The thing that impresses me most is the responsiveness of the template &#8211; Using just HTML5 and CSS3, this is probably the best feature of HTML5. Resize your browser to and fro, it&#8217;s fun.</p>
<h3>Integrating FlexSlider with Initializr </h3>
<p>The Initializr template is meant to be a simple one aimed at easing the kickoff to the HTML5 Boilerplate, hence it is free of fancy stuff like image carousels or drop down menus. But I needed a rotating image banner for my home page, so I did some research and found <a  href="http://flex.madebymufffin.com/">FlexSlider</a>. I tried fitting FlexSlider into the Initializr template and after 30 minutes or so, it was working well! </p>
<p><strong>View the demo and if you love it, download the source!</strong></p>
<a  target="_blank" class="jbutton black medium rounded " href="http://azharkamar.com/demos/h5bp-initializr-flexslider"><span >View Demo</span></a>
<a  target="_blank" class="jbutton green medium rounded " href="http://azharkamar.com/wp-content/plugins/download-monitor/download.php?id=5"><span >Download HTML5 Boilerplate Initializr + FlexSlider</span></a>
<h3>Explanations &#8211; The Technical Stuff</h3>
<p>As promised, here&#8217;s how it was done:</p>
<ol>
<li>Download FlexSlider <a  href="http://flex.madebymufffin.com/">here</a>.</li>
<li>I selected only the files I needed and copied them into the H5BP Initializr folder. The files are <code>flexslider.css</code>, <code>jquery.flexslider-min.js</code>, all images, and some codes from <code>demo.html</code> that I will cover below.</li>
<li>The JavaScript <code>onLoad </code>function in the head of <code>demo.html </code>was copied into H5BP&#8217;s <code>script.js</code>.</li>
<li>Then copy <code>&lt;div id="container"></code> and everything within to H5BP&#8217;s <code>index.html</code>, right below <code>&lt;div id="main" class="wrapper clearfix"></code>.</li>
<li>Some very minor CSS edits to <code>flexslider.css</code> were done to remove the border, reposition the left and right arrows, and improve the bottom margin of the circle buttons at the bottom.</li>
<li>View the code sheets below for further understanding. The lines highlighted in grey signify those that were added, for FlexSlider to work.</li>
</ol>
<h3>index.html</h3>
<pre class="brush: php; highlight: [18,19,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,140,141]; html-script: true; title: h5bp-initializr-flexslider/index.html;">
&lt;!doctype html&gt;
&lt;!--[if lt IE 7]&gt; &lt;html class=&quot;no-js lt-ie9 lt-ie8 lt-ie7&quot; lang=&quot;en&quot;&gt; &lt;![endif]--&gt;
&lt;!--[if IE 7]&gt;    &lt;html class=&quot;no-js lt-ie9 lt-ie8&quot; lang=&quot;en&quot;&gt; &lt;![endif]--&gt;
&lt;!--[if IE 8]&gt;    &lt;html class=&quot;no-js lt-ie9&quot; lang=&quot;en&quot;&gt; &lt;![endif]--&gt;
&lt;!--[if gt IE 8]&gt;&lt;!--&gt; &lt;html class=&quot;no-js&quot; lang=&quot;en&quot;&gt; &lt;!--&lt;![endif]--&gt;
&lt;head&gt;
	&lt;meta charset=&quot;utf-8&quot;&gt;
	&lt;meta http-equiv=&quot;X-UA-Compatible&quot; content=&quot;IE=edge,chrome=1&quot;&gt;

	&lt;title&gt;H5BP Initializr + FlexSlider&lt;/title&gt;
	&lt;meta name=&quot;description&quot; content=&quot;&quot;&gt;
	&lt;meta name=&quot;author&quot; content=&quot;&quot;&gt;

	&lt;meta name=&quot;viewport&quot; content=&quot;width=device-width&quot;&gt;

	&lt;link rel=&quot;stylesheet&quot; href=&quot;css/style.css&quot;&gt;

    &lt;!-- FlexSlider --&gt;
    &lt;link rel=&quot;stylesheet&quot; href=&quot;css/flexslider.css&quot; type=&quot;text/css&quot; media=&quot;screen&quot; /&gt;

	&lt;script src=&quot;js/libs/modernizr-2.5.2-respond-1.1.0.min.js&quot;&gt;&lt;/script&gt;
&lt;/head&gt;
&lt;body&gt;
&lt;!--[if lt IE 7]&gt;&lt;p class=chromeframe&gt;Your browser is &lt;em&gt;ancient!&lt;/em&gt; &lt;a href=&quot;http://browsehappy.com/&quot;&gt;Upgrade to a different browser&lt;/a&gt; or &lt;a href=&quot;http://www.google.com/chromeframe/?redirect=true&quot;&gt;install Google Chrome Frame&lt;/a&gt; to experience this site.&lt;/p&gt;&lt;![endif]--&gt;

	&lt;div id=&quot;header-container&quot;&gt;
		&lt;header class=&quot;wrapper clearfix&quot;&gt;
			&lt;h1 id=&quot;title&quot;&gt;H5BP Initializr + FlexSlider&lt;/h1&gt;
			&lt;nav&gt;
				&lt;ul&gt;
					&lt;li&gt;&lt;a href=&quot;http://azharkamar.com&quot;&gt;Hello&lt;/a&gt;&lt;/li&gt;
					&lt;li&gt;&lt;a href=&quot;http://azharkamar.com&quot;&gt;Azhar Kamar&lt;/a&gt;&lt;/li&gt;
					&lt;li&gt;&lt;a href=&quot;http://azharkamar.com&quot;&gt;Here&lt;/a&gt;&lt;/li&gt;
				&lt;/ul&gt;
			&lt;/nav&gt;
		&lt;/header&gt;
	&lt;/div&gt;
	&lt;div id=&quot;main-container&quot;&gt;
		&lt;div id=&quot;main&quot; class=&quot;wrapper clearfix&quot;&gt;

        &lt;!-- FlexSlider --&gt;
        &lt;div id=&quot;container&quot;&gt;

		&lt;!--=============================
		Markup for FADE animation
		=================================--&gt;
		&lt;div class=&quot;flexslider&quot;&gt;
	    &lt;ul class=&quot;slides&quot;&gt;
	    	&lt;li&gt;
	    		&lt;img src=&quot;img/inacup_samoa.jpg&quot; width=&quot;1140&quot; /&gt;
	    		&lt;p class=&quot;flex-caption&quot;&gt;Captions and cupcakes. Winning combination.&lt;/p&gt;
	    	&lt;/li&gt;
	    	&lt;li&gt;
	    		&lt;a href=&quot;http://flex.madebymufffin.com&quot;&gt;&lt;img src=&quot;img/inacup_pumpkin.jpg&quot; width=&quot;1140&quot; /&gt;&lt;/a&gt;
	    		&lt;p class=&quot;flex-caption&quot;&gt;This image is wrapped in a link!&lt;/p&gt;
	    	&lt;/li&gt;
	    	&lt;li&gt;
	    		&lt;img src=&quot;img/inacup_donut.jpg&quot; width=&quot;1140&quot; /&gt;
	    	&lt;/li&gt;
	    	&lt;li&gt;
	    		&lt;img src=&quot;img/inacup_vanilla.jpg&quot; width=&quot;1140&quot; /&gt;
	    	&lt;/li&gt;
	    &lt;/ul&gt;
	  &lt;/div&gt;

		&lt;!--============================
		Markup for SLIDE animation
		You need to add an extra container element for the overflow: hidden property on the slider

		Update your flexslider() function with the following properties:

		&lt;script type=&quot;text/javascript&quot;&gt;
			$(window).load(function() {
				$('.flexslider').flexslider({
				  animation: &quot;slide&quot;,
				  controlsContainer: &quot;.flex-container&quot;
			  });
			});
		&lt;/script&gt;
		=================================
		&lt;div class=&quot;flex-container&quot;&gt;
			&lt;div class=&quot;flexslider&quot;&gt;
		    &lt;ul class=&quot;slides&quot;&gt;
		    	&lt;li&gt;
		    		&lt;img src=&quot;demo-stuff/inacup_samoa.jpg&quot; /&gt;
		    		&lt;p class=&quot;flex-caption&quot;&gt;Captions and cupcakes. Winning combination.&lt;/p&gt;
		    	&lt;/li&gt;
		    	&lt;li&gt;
		    		&lt;a href=&quot;#&quot;&gt;&lt;img src=&quot;demo-stuff/inacup_pumpkin.jpg&quot; /&gt;&lt;/a&gt;
		    		&lt;p class=&quot;flex-caption&quot;&gt;This image is wrapped in a link!&lt;/p&gt;
		    	&lt;/li&gt;
		    	&lt;li&gt;
		    		&lt;img src=&quot;demo-stuff/inacup_donut.jpg&quot; /&gt;
		    	&lt;/li&gt;
		    	&lt;li&gt;
		    		&lt;img src=&quot;demo-stuff/inacup_vanilla.jpg&quot; /&gt;
		    	&lt;/li&gt;
		    &lt;/ul&gt;
		  &lt;/div&gt;
	 	&lt;/div&gt;
		==================================--&gt;
	&lt;/div&gt;

			&lt;article&gt;
				&lt;header&gt;
					&lt;h1&gt;article header h1&lt;/h1&gt;
					&lt;p&gt;Lorem ipsum dolor sit amet, consectetur adipiscing elit. Aliquam sodales urna non odio egestas tempor. Nunc vel vehicula ante. Etiam bibendum iaculis libero, eget molestie nisl pharetra in. In semper consequat est, eu porta velit mollis nec.&lt;/p&gt;
				&lt;/header&gt;
				&lt;section&gt;
					&lt;h2&gt;article section h2&lt;/h2&gt;
					&lt;p&gt;Lorem ipsum dolor sit amet, consectetur adipiscing elit. Aliquam sodales urna non odio egestas tempor. Nunc vel vehicula ante. Etiam bibendum iaculis libero, eget molestie nisl pharetra in. In semper consequat est, eu porta velit mollis nec. Curabitur posuere enim eget turpis feugiat tempor. Etiam ullamcorper lorem dapibus velit suscipit ultrices. Proin in est sed erat facilisis pharetra.&lt;/p&gt;
				&lt;/section&gt;
				&lt;section&gt;
					&lt;h2&gt;article section h2&lt;/h2&gt;
					&lt;p&gt;Lorem ipsum dolor sit amet, consectetur adipiscing elit. Aliquam sodales urna non odio egestas tempor. Nunc vel vehicula ante. Etiam bibendum iaculis libero, eget molestie nisl pharetra in. In semper consequat est, eu porta velit mollis nec. Curabitur posuere enim eget turpis feugiat tempor. Etiam ullamcorper lorem dapibus velit suscipit ultrices. Proin in est sed erat facilisis pharetra.&lt;/p&gt;
				&lt;/section&gt;
				&lt;footer&gt;
					&lt;h3&gt;article footer h3&lt;/h3&gt;
					&lt;p&gt;Lorem ipsum dolor sit amet, consectetur adipiscing elit. Aliquam sodales urna non odio egestas tempor. Nunc vel vehicula ante. Etiam bibendum iaculis libero, eget molestie nisl pharetra in. In semper consequat est, eu porta velit mollis nec. Curabitur posuere enim eget turpis feugiat tempor.&lt;/p&gt;
				&lt;/footer&gt;
			&lt;/article&gt;

			&lt;aside&gt;
				&lt;h3&gt;aside&lt;/h3&gt;
				&lt;p&gt;Lorem ipsum dolor sit amet, consectetur adipiscing elit. Aliquam sodales urna non odio egestas tempor. Nunc vel vehicula ante. Etiam bibendum iaculis libero, eget molestie nisl pharetra in. In semper consequat est, eu porta velit mollis nec. Curabitur posuere enim eget turpis feugiat tempor. Etiam ullamcorper lorem dapibus velit suscipit ultrices.&lt;/p&gt;
			&lt;/aside&gt;

		&lt;/div&gt; &lt;!-- #main --&gt;
	&lt;/div&gt; &lt;!-- #main-container --&gt;

	&lt;div id=&quot;footer-container&quot;&gt;
		&lt;footer class=&quot;wrapper&quot;&gt;
			&lt;h3&gt;footer&lt;/h3&gt;
		&lt;/footer&gt;
	&lt;/div&gt;

&lt;script src=&quot;//ajax.googleapis.com/ajax/libs/jquery/1.7.1/jquery.min.js&quot;&gt;&lt;/script&gt;
&lt;script&gt;window.jQuery || document.write('&lt;script src=&quot;js/libs/jquery-1.7.1.min.js&quot;&gt;&lt;\/script&gt;')&lt;/script&gt;

&lt;!-- FlexSlider --&gt;
&lt;script src=&quot;js/jquery.flexslider-min.js&quot;&gt;&lt;/script&gt;

&lt;script src=&quot;js/script.js&quot;&gt;&lt;/script&gt;

&lt;script&gt;
	var _gaq=[['_setAccount','UA-XXXXX-X'],['_trackPageview']];
	(function(d,t){var g=d.createElement(t),s=d.getElementsByTagName(t)[0];
	g.src=('https:'==location.protocol?'//ssl':'//www')+'.google-analytics.com/ga.js';
	s.parentNode.insertBefore(g,s)}(document,'script'));
&lt;/script&gt;

&lt;/body&gt;
&lt;/html&gt;
</pre>
<p><strong>I believe there are better ways to achieve this so if you do know, please share! </strong><br />
You might also wanna share your sites created using this in the comments section below.<!-- PHP 5.x --></p>
]]></content:encoded>
			<wfw:commentRss>http://azharkamar.com/5488/flexslider-html5-boilerplate-initializr/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		<feedburner:origLink>http://azharkamar.com/5488/flexslider-html5-boilerplate-initializr/</feedburner:origLink></item>
		<item>
		<title>20 Free Minimal Icon Sets for Web Design</title>
		<link>http://feedproxy.google.com/~r/AzharKamar/~3/Pdrpv8Tc5V8/</link>
		<comments>http://azharkamar.com/5397/free-minimal-icon-sets-web-design/#comments</comments>
		<pubDate>Thu, 24 Nov 2011 22:01:03 +0000</pubDate>
		<dc:creator>Azhar Kamar</dc:creator>
				<category><![CDATA[Freebies]]></category>
		<category><![CDATA[Icons]]></category>
		<category><![CDATA[Photoshop]]></category>
		<category><![CDATA[web design]]></category>

		<guid isPermaLink="false">http://azharkamar.com/?p=5397</guid>
		<description><![CDATA[The general use of icons have been in existence ever since the birth of the graphical user interface. In web design, image icons not only enhance the look and feel of the user interface, but also improves the user-friendliness of the website.
Icons of various shapes and sizes have been incorporated in almost every website that ......... [<a href="http://azharkamar.com/5397/free-minimal-icon-sets-web-design/"><b>Read more</b></a>]]]></description>
			<content:encoded><![CDATA[<p>The general use of <strong>icons </strong>have been in existence ever since the birth of the graphical user interface. In web design, image icons not only enhance the look and feel of the user interface, but also improves the user-friendliness of the website.<span id="more-5397"></span></p>
<p>Icons of various shapes and sizes have been incorporated in almost every website that I have built so far and I am particularly fond of minimalistic and clean icons.</p>
<p><strong>So here&#8217;s a collection of a bunch of my favorite icon sets, just the way I like them &#8211; Clean, flat and simple.<br />
And free!</strong></p>
<p><a  href="http://www.smashingmagazine.com/2010/07/14/gcons-free-all-purpose-icons-for-designers-and-developers-100-icons-psd/"><img src="http://azharkamar.com/wp-content/uploads/2011/11/41.jpg" alt="gcons" title="gcons" width="650" height="400" class="alignnone size-full wp-image-5410" /></a></p>
<p><a  href="http://www.tutorial9.net/downloads/108-mono-icons-huge-set-of-minimal-icons/"><img src="http://azharkamar.com/wp-content/uploads/2011/11/111.jpg" alt="108 mono icons" title="108 mono icons" width="650" height="400" class="alignnone size-full wp-image-5404" /></a></p>
<p><a  href="http://somerandomdude.com/work/iconic/"><img src="http://azharkamar.com/wp-content/uploads/2011/11/210.jpg" alt="iconic icon set" title="iconic icon set" width="650" height="400" class="alignnone size-full wp-image-5407" /></a></p>
<p><a  href="http://brsev.deviantart.com/art/Token-128429570"><img src="http://azharkamar.com/wp-content/uploads/2011/11/31.jpg" alt="token icon set" title="token icon set" width="650" height="400" class="alignnone size-full wp-image-5409" /></a></p>
<p><a  href="http://www.noupe.com/freebie/pictodeck-icon-set-over-700-free-pictograms-for-keynote.html"><img src="http://azharkamar.com/wp-content/uploads/2011/11/51.jpg" alt="pictodeck" title="pictodeck" width="650" height="400" class="alignnone size-full wp-image-5412" /></a></p>
<p><a  href="http://chrfb.deviantart.com/art/quot-ecqlipse-2-quot-PNG-59941546"><img src="http://azharkamar.com/wp-content/uploads/2011/11/61.jpg" alt="eclipse icon" title="eclipse icon" width="650" height="400" class="alignnone size-full wp-image-5413" /></a></p>
<p><a  href="http://plainbeta.com/downloads/pixelated-a-lightweight-iconkit/"><img src="http://azharkamar.com/wp-content/uploads/2011/11/81.jpg" alt="pixelated icons" title="pixelated icons" width="650" height="400" class="alignnone size-full wp-image-5415" /></a></p>
<p><a  href="http://www.icojoy.com/articles/28/"><img src="http://azharkamar.com/wp-content/uploads/2011/11/91.jpg" alt="backtopixel icons" title="backtopixel icons" width="650" height="400" class="alignnone size-full wp-image-5417" /></a></p>
<p><a  href="http://gentleface.com/free_icon_set.html"><img src="http://azharkamar.com/wp-content/uploads/2011/11/101.jpg" alt="gentleface icons" title="gentleface icons" width="650" height="400" class="alignnone size-full wp-image-5418" /></a></p>
<p><a  href="http://www.gosquared.com/liquidicity/archives/70"><img src="http://azharkamar.com/wp-content/uploads/2011/11/112.jpg" alt="liquidicity-icons" title="liquidicity-icons" width="650" height="400" class="alignnone size-full wp-image-5431" /></a></p>
<p><a  href="http://garcya.us/135-free-vector-icons/"><img src="http://azharkamar.com/wp-content/uploads/2011/11/121.jpg" alt="12" title="12" width="650" height="367" class="alignnone size-full wp-image-5432" /></a></p>
<p><a  href="http://www.pixelpressicons.com/?p=108"><img src="http://azharkamar.com/wp-content/uploads/2011/11/131.jpg" alt="iPhone Toolbar Icons" title="iPhone Toolbar Icons" width="650" height="367" class="alignnone size-full wp-image-5433" /></a></p>
<p><a  href="http://www.greepit.com/open-source-icons-gcons/"><img src="http://azharkamar.com/wp-content/uploads/2011/11/141.jpg" alt="gcons" title="gcons" width="650" height="367" class="alignnone size-full wp-image-5435" /></a></p>
<p><a  href="http://www.wpzoom.com/wpzoom/new-freebie-wpzoom-developer-icon-set-154-free-icons/"><img src="http://azharkamar.com/wp-content/uploads/2011/11/161.jpg" alt="wpzoom icons" title="wpzoom icons" width="650" height="367" class="alignnone size-full wp-image-5437" /></a></p>
<p><a  href="http://www.defaulticon.com/"><img src="http://azharkamar.com/wp-content/uploads/2011/11/171.jpg" alt="defaulticons" title="defaulticons" width="650" height="367" class="alignnone size-full wp-image-5439" /></a></p>
<p><a  href="http://app-bits.com/free-icons.html"><img src="http://azharkamar.com/wp-content/uploads/2011/11/192.jpg" alt="19" title="19" width="650" height="367" class="alignnone size-full wp-image-5442" /></a></p>
<p><a  href="http://ipapun.deviantart.com/gallery/#/d29wap8"><img src="http://azharkamar.com/wp-content/uploads/2011/11/201.jpg" alt="devine icons" title="devine icons" width="650" height="367" class="alignnone size-full wp-image-5443" /></a></p>
<p><a  href="http://blog.echoenduring.com/2011/02/12/freebie-echo-minimal-icon-set/"><img src="http://azharkamar.com/wp-content/uploads/2011/11/151.jpg" alt="echo icons" title="echo icons" width="650" height="367" class="alignnone size-full wp-image-5436" /></a></p>
<p><a  href="http://picol.org/icon_library.php"><img src="http://azharkamar.com/wp-content/uploads/2011/11/71.jpg" alt="picol icons" title="picol icons" width="650" height="400" class="alignnone size-full wp-image-5414" /></a></p>
<p><a  href="http://paularmstrongdesigns.com/projects/bwpx-icns/viewall/viewall/index.php"><img src="http://azharkamar.com/wp-content/uploads/2011/11/182.jpg" alt="18" title="18" width="650" height="239" class="alignnone size-full wp-image-5441" /></a><!-- PHP 5.x --></p>
]]></content:encoded>
			<wfw:commentRss>http://azharkamar.com/5397/free-minimal-icon-sets-web-design/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		<feedburner:origLink>http://azharkamar.com/5397/free-minimal-icon-sets-web-design/</feedburner:origLink></item>
		<item>
		<title>Magento – Modifying the Default Message Alert Box to look like a Popup Dialog</title>
		<link>http://feedproxy.google.com/~r/AzharKamar/~3/JnI_vqCX0Ko/</link>
		<comments>http://azharkamar.com/5378/magento-modifying-default-message-alert-box-popup-dialog/#comments</comments>
		<pubDate>Wed, 23 Nov 2011 18:54:24 +0000</pubDate>
		<dc:creator>Azhar Kamar</dc:creator>
				<category><![CDATA[Tutorials]]></category>
		<category><![CDATA[CSS]]></category>
		<category><![CDATA[JavaScript]]></category>
		<category><![CDATA[Magento]]></category>
		<category><![CDATA[Magento Popup]]></category>
		<category><![CDATA[PHP]]></category>

		<guid isPermaLink="false">http://azharkamar.com/?p=5378</guid>
		<description><![CDATA[Magento developers out there, here&#8217;s a simple way to replace the default error/success notification box (the message that appears after you submit forms) to one that looks like a modal dialog popup using some simple JavaScript and CSS.
As you know, the messages DIV element that shows a success or error message appears at the top ......... [<a href="http://azharkamar.com/5378/magento-modifying-default-message-alert-box-popup-dialog/"><b>Read more</b></a>]]]></description>
			<content:encoded><![CDATA[<p><strong>Magento </strong>developers out there, here&#8217;s a simple way to replace the default <strong>error/success notification box </strong>(the message that appears after you submit forms) to one that looks like a modal dialog popup using some simple <strong>JavaScript </strong>and <strong>CSS</strong>.<span id="more-5378"></span></p>
<p>As you know, the <code>messages </code>DIV element that shows a success or error message appears at the top of the page content by default. This isn&#8217;t good because it is displayed <strong>inline </strong>with the current content and therefore pushes the elements below it downwards and hence ruining the current layout of your store.</p>
<p>This can be improved by styling the <code>messages </code>element to display as <code>absolute </code>and to enhance it further, make it appear as if it is a modal dialog box. This way, the messages box will not interfere with the store layout and in addition enhance the user interface and experience. </p>
<p><strong>Read on to find out how to enhance Magento&#8217;s default messages/notification box. </strong><br />
<em>Note: This hack requires the modification of a Magento core file. Tested on Magento version 1.6.1.0.</em></p>
<h3>Demo of Magento&#8217;s Default Messages Box</h3>
<p>For those who wanna see how the default notification box looks like in Magento, follow these instructions:</p>
<ol>
<li>Go to <a  href="https://demo.magentocommerce.com/customer/account/login">https://demo.magentocommerce.com/customer/account/login</a>.</li>
<li>Fill up some bogus text into the <strong>Email Address </strong>and <strong>Password </strong>field under the <strong>Registered Customers </strong>box (e.g. aaa@aaa.com, 123456)</li>
<li>Click the <strong>Login </strong>button at the bottom right.</li>
<li>When the page has reloaded, you will notice a red box at the top with the error message <strong><em>Invalid login or password</em></strong>.</li>
</ol>
<p>This, is the <strong>default messages box </strong>I&#8217;m talking about. I will now explain how to easily improve the way it looks and works.</p>
<h3>Edit Your Theme&#8217;s Stylesheet</h3>
<ol>
<li>Navigate to your theme&#8217;s main stylesheet &#8211; <code>/www/skin/frontend/default/<em>your-theme</em>/css/<strong>styles.css</strong></code></li>
<li>Add these codes at the bottom of the stylesheet:
<pre class="brush: css; title: ;">
#messages {
    margin: 100px 0 0 280px;
    position: absolute;
    text-align: center;
    width: 360px;
    z-index: 99;
}

.msgclose {
    color: #DF280A;
    float: right;
    font-family: Comic Sans MS;
    font-size: 14px;
    font-weight: bold;
    margin: 0 8px;
    text-decoration: none;
}
</pre>
</li>
<li>Now look for the <code>.error-msg, .success-msg, .note-msg, .notice-msg</code> CSS selector and add this property to it:
<pre class="brush: css; title: ;">padding: 40px;</pre>
</li>
</ol>
<h3>Edit Messages.php</h3>
<ol>
<li>Locate the Messages.php file here <code>/www/cuppakiddo/app/code/core/Mage/Core/Block/Messages.php</code></li>
<li>Look for this line (use Ctrl+f in Dreamweaver):
<pre class="brush: php; title: ;">
$html .= '&lt;' . $this-&gt;_messagesSecondLevelTagName . ' class=&quot;' . $type . '-msg&quot;&gt;';
</pre>
<p>And add this code above it:</p>
<pre class="brush: php; title: ;">
$html .= '&lt;a class=&quot;msgclose&quot; href=&quot;#&quot; onclick=&quot;document.getElementById('messages').style.visibility='hidden'&quot;&gt;x&lt;/a&gt;';
</pre>
<p>What this piece of code does is simply display a close button (an &#8216;x&#8217;) and assign an <code>onclick </code>action to it that will close the notification box.</li>
<li>Now look for:
<pre class="brush: php; title: ;">$html .= '&lt;' . $this-&gt;_messagesFirstLevelTagName . ' class=&quot;messages&quot;&gt;';</pre>
<p>And replace it with:</p>
<pre class="brush: php; title: ;">$html .= '&lt;' . $this-&gt;_messagesFirstLevelTagName . ' id=&quot;messages&quot;&gt;';</pre>
<p>We are changing the <code>class </code>to <code>id </code> because the <code>onclick </code>function will be looking for a <code>messages </code>ID, as shown above.</li>
</ol>
<p><strong>Done deal! </strong>An error message box should now look like so:<br />
<a  href="http://azharkamar.com/wp-content/uploads/2011/11/magento-messages-popup.jpg" rel="lightbox[5378]" title="magento-messages-popup"><img src="http://azharkamar.com/wp-content/uploads/2011/11/magento-messages-popup.jpg" alt="" title="magento-messages-popup" width="650" height="425" class="alignnone size-full wp-image-5389" /></a></p>
<p><strong>Good luck!</strong><!-- PHP 5.x --></p>
]]></content:encoded>
			<wfw:commentRss>http://azharkamar.com/5378/magento-modifying-default-message-alert-box-popup-dialog/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		<feedburner:origLink>http://azharkamar.com/5378/magento-modifying-default-message-alert-box-popup-dialog/</feedburner:origLink></item>
		<item>
		<title>How to Add a ’selected’ Class to the Menu Link of the Current Page using jQuery</title>
		<link>http://feedproxy.google.com/~r/AzharKamar/~3/ffZ2Fq4kg1I/</link>
		<comments>http://azharkamar.com/5428/add-selected-class-menu-link-current-page-jquery/#comments</comments>
		<pubDate>Sun, 20 Nov 2011 09:03:53 +0000</pubDate>
		<dc:creator>Azhar Kamar</dc:creator>
				<category><![CDATA[Snippets]]></category>
		<category><![CDATA[CSS]]></category>
		<category><![CDATA[HTML]]></category>
		<category><![CDATA[jQuery]]></category>

		<guid isPermaLink="false">http://azharkamar.com/?p=5428</guid>
		<description><![CDATA[Differentiating the menu item of a current web page from other menu items is pretty important, generally because it enhances user experience as it instantly tells the user exactly which part of the website he is at. There are many different ways to implement this programmatically, but I&#8217;ll only explain the jQuery method here.
The simple ......... [<a href="http://azharkamar.com/5428/add-selected-class-menu-link-current-page-jquery/"><b>Read more</b></a>]]]></description>
			<content:encoded><![CDATA[<p>Differentiating the menu item of a current web page from other menu items is pretty important, generally because it enhances user experience as it instantly tells the user exactly which part of the website he is at. There are many different ways to implement this programmatically, but I&#8217;ll only explain the <strong>jQuery</strong> method here.<span id="more-5428"></span></p>
<p>The simple idea in achieving this is to get the <code>URL </code>of the current page you&#8217;re at, and check if that <code>URL </code> matches the <code>HREF </code>(link) value of the corresponding link in the site navigation. </p>
<p>If there is a match, append a class (in our case, the <code>.selected</code> class) to signify the current menu item of that current page.</p>
<p>That&#8217;s all there is. Now let&#8217;s roll.</p>
<p><strong>First, let&#8217;s view a simple demonstration of what we&#8217;re going to achieve.</strong><br/><br />
<a  target="_blank" class="jbutton black medium rounded " href="http://azharkamar.com/demos/jquery-selected-class/index.html"><span >View Demo</span></a></p>
<p>Now read on to find out how to do this.</p>
<h3>The jQuery Function</h3>
<p>Here&#8217;s the jQuery function that will run through all links and add a <code>.selected </code>class to the link.</p>
<pre class="brush: php; title: ;">
$(function() {
     var pgurl = window.location.href.substr(window.location.href
.lastIndexOf(&quot;/&quot;)+1);
     $(&quot;#nav li a&quot;).each(function(){
          if($(this).attr(&quot;href&quot;) == pgurl)
          $(this).addClass(&quot;selected&quot;);
     })
});
</pre>
<h3>The HTML Structure</h3>
<p>Here&#8217;s how the HTML structure of your navigation menu should look like:</p>
<pre class="brush: php; title: ;">
&lt;ul id=&quot;nav&quot;&gt;
     &lt;li&gt;&lt;a href=&quot;index.html&quot;&gt;Home&lt;/a&gt;&lt;/li&gt;
     &lt;li&gt;&lt;a href=&quot;about.html&quot;&gt;About&lt;/a&gt;&lt;/li&gt;
     &lt;li&gt;&lt;a href=&quot;contact.html&quot;&gt;Contact&lt;/a&gt;&lt;/li&gt;
&lt;/ul&gt;
</pre>
<h3>The Final Product</h3>
<p>Finally we add the jQuery function to the HTML, style it with some simple CSS and include the jQuery library script. </p>
<p>And we get this:</p>
<pre class="brush: php; title: index.html;">
&lt;html xmlns=&quot;http://www.w3.org/1999/xhtml&quot;&gt;
&lt;head&gt;
&lt;meta http-equiv=&quot;Content-Type&quot; content=&quot;text/html; charset=utf-8&quot; /&gt;
&lt;title&gt;Home&lt;/title&gt;

&lt;script type=&quot;text/javascript&quot; src=&quot;http://ajax.googleapis.com/ajax/libs/jquery/
1.7.0/jquery.min.js&quot;&gt;&lt;/script&gt;

&lt;style&gt;
ul{list-style:none; margin:200px auto; text-align:center; padding:0}
ul li{display:inline;}
#nav{font-family:Arial, Helvetica, sans-serif; font-size:30px}
#nav li a{color:#999; text-decoration:none; font-weight:bold; padding:20px 50px}
#nav li a.selected{color:#ff3399; background:#f6f6f6}
#nav li a:hover{background:#f6f6f6}
&lt;/style&gt;

&lt;script&gt;
$(function() {
     var pgurl = window.location.href.substr(window.location.href
.lastIndexOf(&quot;/&quot;)+1);
     $(&quot;#nav li a&quot;).each(function(){
          if($(this).attr(&quot;href&quot;) == pgurl)
          $(this).addClass(&quot;selected&quot;);
     })
});
&lt;/script&gt;
&lt;/head&gt;

&lt;body&gt;
     &lt;ul id=&quot;nav&quot;&gt;
          &lt;li&gt;&lt;a href=&quot;index.html&quot;&gt;Home&lt;/a&gt;&lt;/li&gt;
          &lt;li&gt;&lt;a href=&quot;about.html&quot;&gt;About&lt;/a&gt;&lt;/li&gt;
          &lt;li&gt;&lt;a href=&quot;contact.html&quot;&gt;Contact&lt;/a&gt;&lt;/li&gt;
     &lt;/ul&gt;
&lt;/body&gt;
&lt;/html&gt;
</pre>
<p>In the <a  href="http://azharkamar.com/demos/jquery-selected-class/index.html" target="_blank">demo</a> that you see above, I duplicated 2 copies of the <code>index.html</code> file above and named them <code>about.html </code>and <code>contact.html </code>respectively.</p>
<p><strong>And that&#8217;s all for today folks, have fun!</strong><!-- PHP 5.x --></p>
]]></content:encoded>
			<wfw:commentRss>http://azharkamar.com/5428/add-selected-class-menu-link-current-page-jquery/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
		<feedburner:origLink>http://azharkamar.com/5428/add-selected-class-menu-link-current-page-jquery/</feedburner:origLink></item>
		<item>
		<title>30 Fantastic Free PSD User Interfaces and Web Elements</title>
		<link>http://feedproxy.google.com/~r/AzharKamar/~3/-GWkI8892jw/</link>
		<comments>http://azharkamar.com/5282/30-free-psd-user-interfaces-web-elements/#comments</comments>
		<pubDate>Sat, 12 Nov 2011 19:06:52 +0000</pubDate>
		<dc:creator>Azhar Kamar</dc:creator>
				<category><![CDATA[Freebies]]></category>
		<category><![CDATA[Buttons]]></category>
		<category><![CDATA[free psd]]></category>
		<category><![CDATA[Photoshop]]></category>
		<category><![CDATA[PSD]]></category>
		<category><![CDATA[UI]]></category>
		<category><![CDATA[User Interface]]></category>

		<guid isPermaLink="false">http://azharkamar.com/?p=5282</guid>
		<description><![CDATA[Photoshop is most definitely the most used software by digital designers, especially web designers, to craft their masterpieces. Most of these Photoshop artworks by these designers would include website templates, user interfaces, mockups and banners. 
I&#8217;ve compiled a list of neat and classy user interface kits and other web elements in PSD format from a ......... [<a href="http://azharkamar.com/5282/30-free-psd-user-interfaces-web-elements/"><b>Read more</b></a>]]]></description>
			<content:encoded><![CDATA[<p><strong>Photoshop </strong>is most definitely the most used software by digital designers, especially web designers, to craft their masterpieces. Most of these Photoshop artworks by these designers would include website templates, user interfaces, mockups and banners. <span id="more-5282"></span></p>
<p>I&#8217;ve compiled a list of neat and classy user interface kits and other web elements in PSD format from a few great PSD resources. These high quality designs are carefully hand-picked according to my personal preference. I hope you like them too.</p>
<p><strong>Enjoy!</strong></p>
<h3>Free PSD User Interfaces</h3>
<p><a  href="http://365psd.com/day/2-91/"><img src="http://azharkamar.com/wp-content/uploads/2011/11/191.jpg" alt="19" title="19" width="650" height="300" class="alignnone size-full wp-image-5314" /></a></p>
<p><a  href="http://www.designkindle.com/2011/10/31/butterscotch-ui-kit/"><img src="http://azharkamar.com/wp-content/uploads/2011/11/3.jpg" alt="3" title="3" width="650" height="318" class="alignnone size-full wp-image-5291" /></a></p>
<p><a  href="http://365psd.com/day/2-63/"><img src="http://azharkamar.com/wp-content/uploads/2011/11/20.jpg" alt="20" title="20" width="650" height="300" class="alignnone size-full wp-image-5316" /></a></p>
<p><a  href="http://www.designkindle.com/2011/07/25/sleek-ui-elements/"><img src="http://azharkamar.com/wp-content/uploads/2011/11/4.jpg" alt="4" title="4" width="650" height="318" class="alignnone size-full wp-image-5292" /></a></p>
<p><a  href="http://365psd.com/day/2-106/"><img src="http://azharkamar.com/wp-content/uploads/2011/11/17.jpg" alt="17" title="17" width="650" height="300" class="alignnone size-full wp-image-5310" /></a></p>
<p><a  href="http://designmoo.com/3913/squishy-ui-kit/"><img src="http://azharkamar.com/wp-content/uploads/2011/11/181.jpg" alt="18" title="18" width="650" height="300" class="alignnone size-full wp-image-5312" /></a></p>
<p><a  href="http://www.premiumpixels.com/freebies/itunes-inspired-ui-kit-psd/"><img src="http://azharkamar.com/wp-content/uploads/2011/11/7.jpg" alt="7" title="7" width="650" height="318" class="alignnone size-full wp-image-5297" /></a></p>
<p><a  href="http://365psd.com/day/2-223/"><img src="http://azharkamar.com/wp-content/uploads/2011/11/2.jpg" alt="2" title="2" width="650" height="318" class="alignnone size-full wp-image-5288" /></a></p>
<p><a  href="http://ddgoodi.es/2011/07/15/ui-kit/"><img src="http://azharkamar.com/wp-content/uploads/2011/11/6.jpg" alt="6" title="6" width="650" height="318" class="alignnone size-full wp-image-5296" /></a></p>
<p><a  href="http://365psd.com/day/2-192/"><img src="http://azharkamar.com/wp-content/uploads/2011/11/9.jpg" alt="9" title="9" width="650" height="318" class="alignnone size-full wp-image-5299" /></a></p>
<p><a  href="http://365psd.com/day/2-191/"><img src="http://azharkamar.com/wp-content/uploads/2011/11/10.jpg" alt="10" title="10" width="650" height="318" class="alignnone size-full wp-image-5301" /></a></p>
<p><a  href="http://designmoo.com/3747/bloom-ui-kit/"><img src="http://azharkamar.com/wp-content/uploads/2011/11/11.jpg" alt="11" title="11" width="650" height="318" class="alignnone size-full wp-image-5302" /></a></p>
<p><a  href="http://www.premiumpixels.com/freebies/form-element-styling-psd/"><img src="http://azharkamar.com/wp-content/uploads/2011/11/12.jpg" alt="12" title="12" width="650" height="318" class="alignnone size-full wp-image-5303" /></a></p>
<p><a  href="http://365psd.com/day/2-154/"><img src="http://azharkamar.com/wp-content/uploads/2011/11/14.jpg" alt="14" title="14" width="650" height="300" class="alignnone size-full wp-image-5306" /></a></p>
<p><a  href="http://365psd.com/day/2-36/"><img src="http://azharkamar.com/wp-content/uploads/2011/11/21.jpg" alt="21" title="21" width="650" height="300" class="alignnone size-full wp-image-5317" /></a></p>
<p><a  href="http://dribbble.com/shots/187607-Shiny-Blue-UI-PSD-"><img src="http://azharkamar.com/wp-content/uploads/2011/11/22.jpg" alt="22" title="22" width="650" height="300" class="alignnone size-full wp-image-5318" /></a></p>
<p><a  href="http://365psd.com/day/2-10/"><img src="http://azharkamar.com/wp-content/uploads/2011/11/231.jpg" alt="23" title="23" width="650" height="300" class="alignnone size-full wp-image-5321" /></a></p>
<p><a  href="http://365psd.com/day/349/"><img src="http://azharkamar.com/wp-content/uploads/2011/11/24.jpg" alt="24" title="24" width="650" height="300" class="alignnone size-full wp-image-5322" /></a></p>
<p><a  href="http://365psd.com/day/buttons/"><img src="http://azharkamar.com/wp-content/uploads/2011/11/26.jpg" alt="26" title="26" width="650" height="278" class="alignnone size-full wp-image-5325" /></a></p>
<p><a  href="http://pixelsdaily.com/resources/photoshop/psds/psd-quick-sign-in-form/"><img src="http://azharkamar.com/wp-content/uploads/2011/11/27.jpg" alt="27" title="27" width="650" height="300" class="alignnone size-full wp-image-5326" /></a></p>
<p><a  href="http://365psd.com/day/2-58/"><img src="http://azharkamar.com/wp-content/uploads/2011/11/28.jpg" alt="28" title="28" width="650" height="300" class="alignnone size-full wp-image-5327" /></a></p>
<p><a  href="http://www.premiumpixels.com/freebies/tagtastic-tag-cloud-psd/"><img src="http://azharkamar.com/wp-content/uploads/2011/11/16.jpg" alt="16" title="16" width="650" height="300" class="alignnone size-full wp-image-5309" /></a></p>
<p><a  href="http://365psd.com/day/2-57/"><img src="http://azharkamar.com/wp-content/uploads/2011/11/29.jpg" alt="29" title="29" width="650" height="300" class="alignnone size-full wp-image-5328" /></a></p>
<p><a  href="http://365psd.com/day/2-4/"><img src="http://azharkamar.com/wp-content/uploads/2011/11/30.jpg" alt="30" title="30" width="650" height="300" class="alignnone size-full wp-image-5329" /></a></p>
<p><a  href="http://c0rruptz.deviantart.com/art/Free-PSD-Buttons-177501437"><img src="http://azharkamar.com/wp-content/uploads/2011/11/8.jpg" alt="8" title="8" width="650" height="318" class="alignnone size-full wp-image-5298" /></a></p>
<p><a  href="http://365psd.com/day/2-227/"><img src="http://azharkamar.com/wp-content/uploads/2011/11/1.jpg" alt="1" title="1" width="650" height="320" class="alignnone size-full wp-image-5284" /></a></p>
<p><a  href="http://freebiesbooth.com/mini-tooltips"><img src="http://azharkamar.com/wp-content/uploads/2011/11/5.jpg" alt="5" title="5" width="650" height="318" class="alignnone size-full wp-image-5293" /></a></p>
<p><a  href="http://webdesigneraid.com/fridays-freebie-simple-buttons-psd/"><img src="http://azharkamar.com/wp-content/uploads/2011/11/13.jpg" alt="13" title="13" width="650" height="318" class="alignnone size-full wp-image-5305" /></a></p>
<p><a  href="http://webdesigneraid.com/fridays-freebie-clean-simple-pricing-table-psd/"><img src="http://azharkamar.com/wp-content/uploads/2011/11/15.jpg" alt="15" title="15" width="575" height="422" class="alignnone size-full wp-image-5307" /></a></p>
<p><a  href="http://sixrevisions.com/freebies/web-page-templates/transparent-glass-ui/"><img src="http://azharkamar.com/wp-content/uploads/2011/11/25.jpg" alt="25" title="25" width="550" height="420" class="alignnone size-full wp-image-5323" /></a><!-- PHP 5.x --></p>
]]></content:encoded>
			<wfw:commentRss>http://azharkamar.com/5282/30-free-psd-user-interfaces-web-elements/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		<feedburner:origLink>http://azharkamar.com/5282/30-free-psd-user-interfaces-web-elements/</feedburner:origLink></item>
		<item>
		<title>How to Edit the Footer in Your WordPress Backend</title>
		<link>http://feedproxy.google.com/~r/AzharKamar/~3/h87oytvhkko/</link>
		<comments>http://azharkamar.com/5341/how-to-edit-footer-wordpress-backend/#comments</comments>
		<pubDate>Wed, 09 Nov 2011 21:16:17 +0000</pubDate>
		<dc:creator>Azhar Kamar</dc:creator>
				<category><![CDATA[Snippets]]></category>
		<category><![CDATA[Functions.php]]></category>
		<category><![CDATA[PHP]]></category>
		<category><![CDATA[WordPress]]></category>
		<category><![CDATA[WordPress Backend]]></category>
		<category><![CDATA[WordPress Footer]]></category>

		<guid isPermaLink="false">http://azharkamar.com/?p=5341</guid>
		<description><![CDATA[Here&#8217;s a simple way to modify the footer in your WordPress backend, just by adding a function in your theme&#8217;s functions.php file. You can change to any text you want or simply remove it completely.
Below are step by step instructions on how to edit your WordPress backend footer (the one on the left).
How to Modify ......... [<a href="http://azharkamar.com/5341/how-to-edit-footer-wordpress-backend/"><b>Read more</b></a>]]]></description>
			<content:encoded><![CDATA[<p>Here&#8217;s a simple way to modify the footer in your <strong>WordPress </strong>backend, just by adding a function in your theme&#8217;s <code>functions.php</code> file. You can change to any text you want or simply remove it completely.<span id="more-5341"></span></p>
<p>Below are step by step instructions on how to edit your WordPress backend footer (the one on the left).</p>
<h3>How to Modify WordPress Backend Footer</h3>
<ol>
<li>First, open your WordPress theme&#8217;s <strong>functions.php</strong> file. It should be in <strong>/wp-content/themes/<em>your-theme</em>/functions.php</strong>.</li>
<li>Now copy the script below and paste it at the bottom of your <strong>functions.php </strong>file right before the closing <code>?></code> tag. This code is exactly what I&#8217;m using for my client&#8217;s site, so change the text accordingly.
<pre class="brush: php; title: ;">
function modify_footer_admin () {
  echo 'Designed by &lt;a href=&quot;http://azharkamar.com&quot;&gt;Azhar Kamar&lt;/a&gt;. ';
  echo 'Powered by&lt;a href=&quot;http://WordPress.org&quot;&gt;WordPress&lt;/a&gt;.';
}

add_filter('admin_footer_text', 'modify_footer_admin');
</pre>
</li>
<li>So now the footer of my backend looks like this:<br />
<img src="http://azharkamar.com/wp-content/uploads/2011/11/110.jpg" alt="1" title="1" width="650" height="200" class="alignnone size-full wp-image-5347" /></li>
</ol>
<p><strong>That&#8217;s it. Good luck!</strong><!-- PHP 5.x --></p>
]]></content:encoded>
			<wfw:commentRss>http://azharkamar.com/5341/how-to-edit-footer-wordpress-backend/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		<feedburner:origLink>http://azharkamar.com/5341/how-to-edit-footer-wordpress-backend/</feedburner:origLink></item>
		<item>
		<title>20 Beautiful Free Wavy Backgrounds for Web Design</title>
		<link>http://feedproxy.google.com/~r/AzharKamar/~3/PIZdsVheWtI/</link>
		<comments>http://azharkamar.com/5216/20-beautiful-free-wavy-backgrounds/#comments</comments>
		<pubDate>Thu, 27 Oct 2011 15:24:12 +0000</pubDate>
		<dc:creator>Azhar Kamar</dc:creator>
				<category><![CDATA[Freebies]]></category>
		<category><![CDATA[free backgrounds]]></category>
		<category><![CDATA[wavy backgrounds]]></category>
		<category><![CDATA[web backgrounds]]></category>
		<category><![CDATA[web design]]></category>

		<guid isPermaLink="false">http://azharkamar.com/?p=5216</guid>
		<description><![CDATA[Usually when I design a web page, let&#8217;s say a Christmas e-newsletter, I&#8217;ll start off with planning the layout for the content first, and then get to the arty farty stuff. That&#8217;s when sometimes I experience the dreaded creative block and say &#8220;How in the world do I make this design fantastic?&#8221;.
There are many web ......... [<a href="http://azharkamar.com/5216/20-beautiful-free-wavy-backgrounds/"><b>Read more</b></a>]]]></description>
			<content:encoded><![CDATA[<p>Usually when I design a web page, let&#8217;s say a Christmas e-newsletter, I&#8217;ll start off with planning the layout for the content first, and then get to the arty farty stuff. That&#8217;s when sometimes I experience the dreaded creative block and say &#8220;How in the world do I make this design fantastic?&#8221;.<span id="more-5216"></span></p>
<p>There are many web design techniques that we can use but for this post, I&#8217;ll focus on the usage of wavy background patterns. I realize that simple lines and curves can easily enhance the look of a webpage and this seems to work very effectively for me and my clients.</p>
<p><strong>So here you go, a bunch of free hi-res wavy backgrounds for your design!</strong></p>
<p><em>For the images in .JPG format, you can play around with the colors in Photoshop by using <strong>Color fill </strong>or adjusting the <strong>Hue/Saturation </strong> (there are many commands available) to get to the color that you want.</em></p>
<h3>Backgrounds in .jpg Format</h3>
<p><a  href="http://web-backgrounds.net/abstract-backgrounds/abstract-background-set-based-on-tree-silhouettes/"><img src="http://azharkamar.com/wp-content/uploads/2011/10/1.jpg" alt="" title="1" width="594" height="274" class="alignnone size-full wp-image-5235" /></a></p>
<p><a  href="http://web-backgrounds.net/abstract-backgrounds/wavy-lines-with-grass-nature-abstract-background/"><img src="http://azharkamar.com/wp-content/uploads/2011/10/2.jpg" alt="" title="2" width="594" height="274" class="alignnone size-full wp-image-5239" /></a></p>
<p><a  href="http://web-backgrounds.net/abstract-backgrounds/urban-city-view-with-shining-rainbow/"><img src="http://azharkamar.com/wp-content/uploads/2011/10/3.jpg" alt="" title="3" width="594" height="274" class="alignnone size-full wp-image-5241" /></a></p>
<p><a  href="http://web-backgrounds.net/abstract-backgrounds/colorful-abstract-waves/"><img src="http://azharkamar.com/wp-content/uploads/2011/10/4.jpg" alt="" title="4" width="594" height="274" class="alignnone size-full wp-image-5243" /></a></p>
<p><a  href="http://web-backgrounds.net/abstract-backgrounds/abstract-wave-background-set-with-light-effects/"><img src="http://azharkamar.com/wp-content/uploads/2011/10/5.jpg" alt="" title="5" width="594" height="274" class="alignnone size-full wp-image-5244" /></a></p>
<p><a  href="http://web-backgrounds.net/abstract-backgrounds/10-abstract-twirled-backgrounds/"><img src="http://azharkamar.com/wp-content/uploads/2011/10/6.jpg" alt="" title="6" width="594" height="274" class="alignnone size-full wp-image-5245" /></a></p>
<p><a  href="http://web-backgrounds.net/abstract-backgrounds/9-abstract-wave-backgrounds/"><img src="http://azharkamar.com/wp-content/uploads/2011/10/7.jpg" alt="" title="7" width="594" height="274" class="alignnone size-full wp-image-5247" /></a></p>
<p><a  href="http://web-backgrounds.net/abstract-backgrounds/colorful-wave-backgrounds/"><img src="http://azharkamar.com/wp-content/uploads/2011/10/8.jpg" alt="" title="8" width="594" height="274" class="alignnone size-full wp-image-5248" /></a></p>
<p><a  href="http://web-backgrounds.net/abstract-backgrounds/abstract-curve-backgrounds/"><img src="http://azharkamar.com/wp-content/uploads/2011/10/9.jpg" alt="" title="9" width="594" height="274" class="alignnone size-full wp-image-5249" /></a></p>
<p><a  href="http://web-backgrounds.net/abstract-backgrounds/6-abstract-waved-backgrounds/"><img src="http://azharkamar.com/wp-content/uploads/2011/10/10.jpg" alt="" title="10" width="594" height="274" class="alignnone size-full wp-image-5250" /></a></p>
<p><a  href="http://web-backgrounds.net/abstract-backgrounds/colorful-backgrounds-in-high-resolution/"><img src="http://azharkamar.com/wp-content/uploads/2011/10/11.jpg" alt="" title="11" width="594" height="274" class="alignnone size-full wp-image-5251" /></a></p>
<p><a  href="http://web-backgrounds.net/abstract-backgrounds/10-abstract-colorful-backgrounds/"><img src="http://azharkamar.com/wp-content/uploads/2011/10/12.jpg" alt="" title="12" width="594" height="274" class="alignnone size-full wp-image-5252" /></a></p>
<p><a  href="http://web-backgrounds.net/abstract-backgrounds/free-mac-type-background/"><img src="http://azharkamar.com/wp-content/uploads/2011/10/13.jpg" alt="" title="13" width="594" height="274" class="alignnone size-full wp-image-5253" /></a></p>
<p><a  href="http://web-backgrounds.net/abstract-backgrounds/abstract-winter-wallpapers-pack/"><img src="http://azharkamar.com/wp-content/uploads/2011/10/14.jpg" alt="" title="14" width="594" height="274" class="alignnone size-full wp-image-5254" /></a></p>
<h3>Backgrounds in .ai, .eps and .svg Format</h3>
<p><a  href="http://vector4designers.blogspot.com/2009/11/free-vector-wave-background.html"><img src="http://azharkamar.com/wp-content/uploads/2011/10/15.jpg" alt="" title="15" width="594" height="274" class="alignnone size-full wp-image-5256" /></a></p>
<p><a  href="http://qvectors.net/abstract-vectors/vortex-waves-waves/"><img src="http://azharkamar.com/wp-content/uploads/2011/10/16.jpg" alt="" title="16" width="594" height="274" class="alignnone size-full wp-image-5257" /></a></p>
<p><a  href="http://qvectors.net/abstract-vectors/curved-lines-vector/"><img src="http://azharkamar.com/wp-content/uploads/2011/10/17.jpg" alt="" title="17" width="594" height="274" class="alignnone size-full wp-image-5258" /></a></p>
<p><a  href="http://www.vecteezy.com/Backgrounds-Wallpaper/17547-Pink-abstract-wave-background"><img src="http://azharkamar.com/wp-content/uploads/2011/10/18.jpg" alt="" title="18" width="594" height="274" class="alignnone size-full wp-image-5259" /></a></p>
<p><a  href="http://www.vecteezy.com/Backgrounds-Wallpaper/16993-Pink-Dreams"><img src="http://azharkamar.com/wp-content/uploads/2011/10/19.jpg" alt="" title="19" width="594" height="274" class="alignnone size-full wp-image-5260" /></a><!-- PHP 5.x --></p>
]]></content:encoded>
			<wfw:commentRss>http://azharkamar.com/5216/20-beautiful-free-wavy-backgrounds/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
		<feedburner:origLink>http://azharkamar.com/5216/20-beautiful-free-wavy-backgrounds/</feedburner:origLink></item>
	</channel>
</rss>

