<?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>Amphee Web Tech Pvt. Ltd. &#187; web design</title>
	<atom:link href="http://blog.amphee.com/index.php/category/web-design/feed/" rel="self" type="application/rss+xml" />
	<link>http://blog.amphee.com</link>
	<description></description>
	<lastBuildDate>Wed, 04 May 2011 05:34:03 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.2</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
		
	
	<!-- google ad injected by adsense-optimizer http://www.adsenseoptimizer.de -->
	<div  style="padding:3px; display: block; margin-left: auto; margin-right: auto; text-align: center;"><!-- Ad number: 1 --><script type="text/javascript"><!--
    	 
    	google_ad_client = "pub-0687753067406098"; google_alternate_color = "FFFFFF";
		google_ad_width = 468; google_ad_height = 60;
		google_ad_format = "468x60_as"; google_ad_type = "text_image";
		google_ad_channel =""; google_color_border = "A6C9E2";
		google_color_link = "FF3019"; google_color_bg = "FFFFFF";
		google_color_text = "000000"; google_color_url = "7EB544";
		google_ui_features = "rc:0"; //--></script>
		<script type="text/javascript" src="http://pagead2.googlesyndication.com/pagead/show_ads.js"></script></div>	<item>
		<title>HTML5 Samples</title>
		<link>http://blog.amphee.com/index.php/2010/07/16/html5-samples/</link>
		<comments>http://blog.amphee.com/index.php/2010/07/16/html5-samples/#comments</comments>
		<pubDate>Fri, 16 Jul 2010 07:15:45 +0000</pubDate>
		<dc:creator>kiran vadariya</dc:creator>
				<category><![CDATA[HTML 5]]></category>
		<category><![CDATA[web design]]></category>
		<category><![CDATA[web development]]></category>
		<category><![CDATA[amphee]]></category>
		<category><![CDATA[html5]]></category>
		<category><![CDATA[symfony development india]]></category>
		<category><![CDATA[symfony web devleopment india]]></category>

		<guid isPermaLink="false">http://blog.amphee.com/?p=166</guid>
		<description><![CDATA[


Step one
You can use standard object  testing to determine if the browser supports GeoLocation.
&#60;script&#62;
    /**
    * This function is the callback which is passed the result from the .getCurrentPosition()
    * function. The pos argument can contain more information than just the latitude/longitude,
    [...]]]></description>
			<content:encoded><![CDATA[<!-- google_ad_section_start --><div id="content">
<div id="post-357">
<div id="content_div-357">
<h4>Step one</h4>
<p>You can use standard object  testing to determine if the browser supports GeoLocation.</p>
<pre>&lt;script&gt;
    /**
    * This function is the callback which is passed the result from the .getCurrentPosition()
    * function. The pos argument can contain more information than just the latitude/longitude,
    * such as altitude, accuracy and speed information.
    *
    * @param object pos The result from the getCurrentPosition() call
    */
    function myCallback(pos)
    {
        var myLatitude  = pos.latitude;
        var myLongitude = pos.longitude;
    }

    /**
    * Test for GeoLocation support and make the call
    */
    if (navigator.geolocation) {
        navigator.geolocation.getCurrentPosition(myCallback);
    } else {
        alert("Sorry, your browser doesn't appear to support GeoLocation");
    }

&lt;/script&gt;
</pre>
<h4>Step two</h4>
<p>Once you have tested for it, we can then retrieve the position using  the getCurrentPosition() method. You pass this method     a callback  function which you define. This callback function is given an object (if  successful), with various properties:</p>
<ul>
<li>latitude</li>
<li>longitude</li>
<li>altitude (optional)</li>
<li>accuracy</li>
<li>altitudeAccuracy (optional)</li>
<li>heading (optional)</li>
<li>speed (optional)</li>
<li>timestamp</li>
</ul>
</div>
</div>
<div>more  detail go to</div>
<div><a title="click here" href="http://www.html5samples.com/2010/04/html5-geolocation-introduction/" target="_blank">http://www.html5samples.com/2010/04/html5-geolocation-introduction/</a></div>
</div>
<!-- google_ad_section_end -->]]></content:encoded>
			<wfw:commentRss>http://blog.amphee.com/index.php/2010/07/16/html5-samples/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Once Again SENSIO LABS comes with great things for developers [STAND ALONE COMPONENTS FOR PHP]</title>
		<link>http://blog.amphee.com/index.php/2009/10/31/once-again-sensio-labs-comes-with-great-things-for-developers-stand-alone-components-for-php/</link>
		<comments>http://blog.amphee.com/index.php/2009/10/31/once-again-sensio-labs-comes-with-great-things-for-developers-stand-alone-components-for-php/#comments</comments>
		<pubDate>Sat, 31 Oct 2009 05:56:27 +0000</pubDate>
		<dc:creator>kiran vadariya</dc:creator>
				<category><![CDATA[symfony]]></category>
		<category><![CDATA[web design]]></category>
		<category><![CDATA[web development]]></category>

		<guid isPermaLink="false">http://blog.devloperworld.com/?p=152</guid>
		<description><![CDATA[Symfony Components are stand alone php libraries that can be handy in the development of php. Those are earlier coupled with the symfony and now available separately from the symfony package.
Just have look at those
YAML : PHP library that speaks yaml. YAML framework is the php library which take yaml as string and convert in [...]]]></description>
			<content:encoded><![CDATA[<!-- google_ad_section_start --><p>Symfony Components are stand alone php libraries that can be handy in the development of php. Those are earlier coupled with the symfony and now available separately from the symfony package.</p>
<p>Just have look at those<br />
<strong>YAML</strong> : PHP library that speaks yaml. YAML framework is the php library which take yaml as string and convert in to php array. All in all it is great product if you want to use it in any of your php project.<br />
it is open source and available at <a href="http://components.symfony-project.org/yaml/">YAML Component of Symfony</a></p>
<p><strong>Templating</strong> : Which is templating engine, that you can use in any of your php project. It is the templating tool which you can use in any kind of templating system. Available at <a href="http://components.symfony-project.org/templating/">Templating System</a></p>
<p>And some other components available like <a href="http://components.symfony-project.org/event-dispatcher/">EVENT DISPATCHER</a>, <a href="http://components.symfony-project.org/dependency-injection/">DEPENDENCY INJECTION</a></p>
<p>And Request Handler The flexible micro-kernel for fast frameworks is coming sooner. have a look at<br />
<a href="http://components.symfony-project.org/">Symfony Components</a></p>
<p>All in all if you are now interested in symfony&#8217;s some of the features to implement only. THIS IS THE BEST OF COMPONENTS YOU CAN TRUST. AND YET NOT REQUIRED TO USE THE SYMFONY. It shows the robustness of symfony projects.</p>
<!-- google_ad_section_end -->]]></content:encoded>
			<wfw:commentRss>http://blog.amphee.com/index.php/2009/10/31/once-again-sensio-labs-comes-with-great-things-for-developers-stand-alone-components-for-php/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>some useful wordpress plugins</title>
		<link>http://blog.amphee.com/index.php/2009/09/02/some-useful-wordpress-plugins/</link>
		<comments>http://blog.amphee.com/index.php/2009/09/02/some-useful-wordpress-plugins/#comments</comments>
		<pubDate>Wed, 02 Sep 2009 07:31:57 +0000</pubDate>
		<dc:creator>kiran vadariya</dc:creator>
				<category><![CDATA[php development]]></category>
		<category><![CDATA[web design]]></category>
		<category><![CDATA[web development]]></category>
		<category><![CDATA[wordpress]]></category>
		<category><![CDATA[cms plugin]]></category>
		<category><![CDATA[PHP]]></category>
		<category><![CDATA[plugins]]></category>
		<category><![CDATA[woprdpress]]></category>

		<guid isPermaLink="false">http://blog.devloperworld.com/?p=141</guid>
		<description><![CDATA[here is the list of some useful wordpress plugins. i hope  everyone like tht
Advanced Tagline
Advanced Tagline gives the option to have multiple taglines for your blog and display them at random or sequentially with each page view.
Sodahead Polls
Want to create a poll for your readers and see live results? Bloggers use polls more than any [...]]]></description>
			<content:encoded><![CDATA[<!-- google_ad_section_start --><p>here is the list of some useful wordpress plugins. i hope  everyone like tht</p>
<p><a href="http://kmorey.net/downloads/advanced-tagline-wordpress-plugin/" target="_blank">Advanced Tagline</a></p>
<p>Advanced Tagline gives the option to have multiple taglines for your blog and display them at random or sequentially with each page view.</p>
<p><a href="http://wordpress.org/extend/plugins/sodahead-polls/" target="_blank">Sodahead Polls</a></p>
<p>Want to create a poll for your readers and see live results? Bloggers use polls more than any other interactive application to engage their readers. Create an engaging experience for your audience today and keep them coming back for more.</p>
<p><a href="http://yoast.com/wordpress/minimum-comment-length/" target="_blank">Minimum Comment Length</a></p>
<p>Don’t you find it annoying when someone comments with just a smiley? Or a “thanks”? On quite a few forums you have to leave a comment with a minimum of 15 characters to be able to comment, but WordPress doesn’t allow you to set such a threshold. With this plugin, it does.</p>
<p><a href="http://www.coolchecks.net/blog/blogging-tips/blogging-tips-plugin-for-wordpress.html" target="_blank">Blogging Tips</a></p>
<p>This plugin displays random blogging tips and suggestions. The tips are just some ideas of what you can do to improve the popularity of your blog and improve the content.  All of the tips are designed to inspire you to be a better blogger.</p>
<p><a href="http://www.zen-dreams.com/en/2008/08/06/new-wordpress-plugin-gravatar-top-commenters/" target="_blank">Gravatar Recent Comments</a></p>
<p>Gravatar recent comments is a plugin providing you with a “Top/last commenters” widget but instead of just displaying names, it also displays gravatars.</p>
<p><a href="http://builtbackwards.com/projects/tac/" target="_blank">Theme Authenticity Checker</a></p>
<p>Scan all of your theme files for potentially malicious or unwanted code. Be aware of advertisements or dangerous JavaScript inserted into legitimate themes by third party theme download sites.</p>
<p><a href="http://picandocodigo.net/programacion/wordpress/list-category-posts-wordpress-plugin-english/" target="_blank">List Category Posts</a></p>
<p>List Category Posts is a simple WordPress plugin which allows you to list some posts from a category into a post/page using [catlist=ID], where ID stands for the Category Id.</p>
<p><a href="http://www.dagondesign.com/articles/expanding-text-plugin-for-wordpress/" target="_blank">Expanding Text Plugin</a></p>
<p>This WordPress plugin allows you to create sections of text in your post or page which expand/collapse when clicked on. You simply wrap the special tags around your text, and set the ‘expand link’ (the link visitors click on to show the text).</p>
<p><a href="http://wordpress.org/extend/plugins/actionable/" target="_blank">Actionable</a></p>
<p>Actionable allows the creation of a categroized list of action items for users to check off and track. It was originally developed for Share 350.0 – a plan for regional sustainability to help people track their actions and efforts to create a sustainable community.</p>
<p><a href="http://www.23systems.net/plugins/lightbox-plus/" target="_blank">Lightbox Plus</a></p>
<p>Lightbox Plus is used to create overlay display images on the webpage and to automatically add the correct overlay links to images. Lightbox Plus captures the image title for display using a fairly robust regex to capture most character that may appear as part of the title.</p>
<p>original blog from  <a href="http://www.blogohblog.com/10-new-useful-wordpress-plugins/">http://www.blogohblog.com/10-new-useful-wordpress-plugins/</a></p>
<p>from,</p>
<p>kiran</p>
<!-- google_ad_section_end -->]]></content:encoded>
			<wfw:commentRss>http://blog.amphee.com/index.php/2009/09/02/some-useful-wordpress-plugins/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
	
	
	<!-- google ad injected by adsense-optimizer http://www.adsenseoptimizer.de -->
	<div  style="padding:7px; display: block; margin-left: auto; margin-right: auto; text-align: center;"><!-- Ad number: 2 --><script type="text/javascript"><!--
    	 
    	google_ad_client = "pub-0687753067406098"; google_alternate_color = "FFFFFF";
		google_ad_width = 468; google_ad_height = 60;
		google_ad_format = "468x60_as"; google_ad_type = "text_image";
		google_ad_channel =""; google_color_border = "E3FA11";
		google_color_link = "FFFFFF"; google_color_bg = "A2AB2B";
		google_color_text = "000000"; google_color_url = "FFFFFF";
		google_ui_features = "rc:0"; //--></script>
		<script type="text/javascript" src="http://pagead2.googlesyndication.com/pagead/show_ads.js"></script></div>	<item>
		<title>Symfony Framework</title>
		<link>http://blog.amphee.com/index.php/2009/05/19/symfony-framework/</link>
		<comments>http://blog.amphee.com/index.php/2009/05/19/symfony-framework/#comments</comments>
		<pubDate>Tue, 19 May 2009 05:46:51 +0000</pubDate>
		<dc:creator>kiran vadariya</dc:creator>
				<category><![CDATA[web design]]></category>

		<guid isPermaLink="false">http://blog.devloperworld.com/?p=79</guid>
		<description><![CDATA[
Symfony
]]></description>
			<content:encoded><![CDATA[<!-- google_ad_section_start --><p><a href="http://www.symfony-project.org"><img src="http://blog.devloperworld.com/wp-content/uploads/2009/05/the_definitive_guide_to_symfony.jpg" alt="The Symfony Framework" width="223" height="300" class="alignnone size-full wp-image-80" /></a></p>
<p><a href="http://www.symfony-project.org">Symfony</p>
<!-- google_ad_section_end -->]]></content:encoded>
			<wfw:commentRss>http://blog.amphee.com/index.php/2009/05/19/symfony-framework/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Creative Uses for PHP</title>
		<link>http://blog.amphee.com/index.php/2009/05/06/creative-uses-for-php/</link>
		<comments>http://blog.amphee.com/index.php/2009/05/06/creative-uses-for-php/#comments</comments>
		<pubDate>Wed, 06 May 2009 12:13:08 +0000</pubDate>
		<dc:creator>kiran vadariya</dc:creator>
				<category><![CDATA[database]]></category>
		<category><![CDATA[drupal]]></category>
		<category><![CDATA[javascript]]></category>
		<category><![CDATA[joomla]]></category>
		<category><![CDATA[php development]]></category>
		<category><![CDATA[web design]]></category>
		<category><![CDATA[web development]]></category>
		<category><![CDATA[creative use]]></category>
		<category><![CDATA[online community]]></category>
		<category><![CDATA[PHP]]></category>
		<category><![CDATA[uses]]></category>

		<guid isPermaLink="false">http://blog.devloperworld.com/?p=49</guid>
		<description><![CDATA[If you’re a familier with the word ‘PHP’ then here is some useful creative uses for it.
E-Commerce
E-commerce is one of the major uses for PHP. From a small business level to an enterprise level, businesses are always looking to create additional streams of revenue online. If you know how to integrate existing e-commerce solutions or [...]]]></description>
			<content:encoded><![CDATA[<!-- google_ad_section_start --><p><!--[endif]--><span style="font-weight: normal;">If you’re a familier with the word ‘PHP’ then here is some useful creative uses for it.</span></p>
<h3>E-Commerce</h3>
<p>E-commerce is one of the major uses for PHP. From a small business level to an enterprise level, businesses are always looking to create additional streams of revenue online. If you know how to integrate existing e-commerce solutions or build your own from scratch, this gives you a distinct advantage with your clients.</p>
<h3><span style="font-weight: normal;">Beginners</span></h3>
<ul type="disc">
<li class="MsoNormal"><a href="http://www.magentocommerce.com/">Magento</a></li>
<li class="MsoNormal"><a href="http://www.zen-cart.com/">Zen Cart</a></li>
<li class="MsoNormal"><a href="http://www.shopify.com/">Shopify</a></li>
</ul>
<h3><span style="font-weight: normal;">Advanced Coders</span></h3>
<p style="margin-left: 0.5in; text-indent: -0.25in;"><!--[if !supportLists]--><span style="font-family: Symbol;"><span>·<span style="font-family: &quot;Times New Roman&quot;; font-style: normal; font-variant: normal; font-weight: normal; font-size: 7pt; line-height: normal; font-size-adjust: none; font-stretch: normal; -x-system-font: none;"> </span></span></span><!--[endif]--><a href="http://codeigniter.com/">CodeIgniter</a></p>
<p style="margin-left: 0.5in; text-indent: -0.25in;"><!--[if !supportLists]--><span style="font-family: Symbol;"><span>·<span style="font-family: &quot;Times New Roman&quot;; font-style: normal; font-variant: normal; font-weight: normal; font-size: 7pt; line-height: normal; font-size-adjust: none; font-stretch: normal; -x-system-font: none;"> </span></span></span><!--[endif]--><span> </span><a href="http://cakephp.org/">CakePHP</a>.</p>
<h3>Graphical User Interface</h3>
<p>If PHP is your favorite programming language, then you can use some of these PHP extensions to get you started creating <acronym>GUI</acronym> applications.</p>
<ul type="disc">
<li class="MsoNormal"><a href="http://gtk.php.net/">PHP      GTK</a> &#8211; This extension is a popular open source that implements the GIMP      toolkit</li>
<li class="MsoNormal"><a href="http://www.zzee.com/php-gui/">ZZEE PHP GUI</a> &#8211; A paid solution      that allows you to turn your PHP scripts into Windows applications</li>
</ul>
<h3>Image Processing and Generation</h3>
<p>Using the GD library with PHP, you can do more than just output HTML to the browser! You can output images in different file types including jpeg, png, and gif. This feature of PHP is useful because it allows you to create thumbnail pictures, add watermarks, resize and crop images, and even create a photo gallery!</p>
<h3>Mailing Lists</h3>
<p>You can write your own script to send e-mail newsletters to your client, or use a ready-made script. The PHP online documentation explains <a href="http://us3.php.net/manual/en/function.mail.php">PHP mailing functions</a> in more detail. There are also scripts you can download and install on your website:</p>
<ul type="disc">
<li class="MsoNormal"><a href="http://www.phplist.com/">PHP list</a></li>
</ul>
<p class="MsoNormal">
<h3>Developing Facebook Applications</h3>
<p>You can integrate Facebook with your website using PHP. If you have developed Facebook applications using another language or you would like to get started with PHP, the <a href="http://wiki.developers.facebook.com/index.php/PHP">Facebook developer&#8217;s wiki</a> can help you to get started.</p>
<h3>Create Graphs and Charts</h3>
<p>Do you need visual representations of numbers on your site? PHP can create graphs and charts too! Using <a href="http://pear.veggerby.dk/">Image_Graph</a>, you can create up to fourteen different types of charts including pie charts, bar graphs,.</p>
<h3>Generating PDF Files</h3>
<p>The <acronym>PDF</acronym> format is Adobe&#8217;s proprietary file type for document exchange. Using a library called PDFLib, you can generate PDF files with PHP. This library is already included with PHP5; to access it, you need to uncomment the appropriate lines in your PHP configuration file. An example of why creating PDF files might come in useful is, if you were building an online invoicing application and you wanted to output an HTML-generated invoice in PDF format.</p>
<h3>Parsing XML Files</h3>
<p>PHP allows you to parse <acronym>XML</acronym> files. Parsing XML is an important feature of PHP 5 because not all browsers can output the contents of an XML file; so you can create a parser in PHP to facilitate this process. Using XML is important for RSS feeds, and also for data storage and rendering data on different devices &#8211; for example, cell phones use an implementation of XML called WML (Wireless Markup Language). Working with XML files in PHP is similar to handling the opening, closing, and reading of a file.</p>
<p class="MsoNormal">
<p class="MsoNormal">
<h3>Content Management Systems</h3>
<p>One of the most popular uses of PHP is creating or using Content Management System. A good CMS allows your clients to update their website and add content without any in-depth knowledge of HTML and CSS. You can use one of the widely available free or commercial solutions listed below:</p>
<ul type="disc">
<li class="MsoNormal"><a href="http://www.drupal.org/">Drupal</a></li>
<li class="MsoNormal"><a href="http://www.wordpress.org/">Wordpress</a></li>
<li class="MsoNormal"><a href="http://www.joomla.org/">Joomla</a></li>
</ul>
<h3>Create Dynamic Website Templates</h3>
<p>Using PHP, you can make it easier to add pages and elements to your websites dynamically. You begin by creating the HTML page and splitting it into the header, main content, and footer sections. Add the .php extension to your subsequent pages and use server-side Includes for the header and footer for each new page. You can also have dynamic sidebars and top navigation sections. As a matter of fact, the more &#8220;templated&#8221; your site is, the easier it is to update the content.</p>
<h3>Building an Online Community</h3>
<p>You can build your own PHP-driven online community, or choose from widely available scripts that you can implement into your website. Some popular ones include:</p>
<ul type="disc">
<li class="MsoNormal"><a href="http://www.phpbb.com/">php BB</a></li>
<li class="MsoNormal"><a href="http://www.vbulletin.com/">vBulletin</a></li>
<li class="MsoNormal"><a href="http://punbb.informer.com/">Pun BB</a></li>
</ul>
<p>from kiran vadariya <img src='http://blog.amphee.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<!-- google_ad_section_end -->]]></content:encoded>
			<wfw:commentRss>http://blog.amphee.com/index.php/2009/05/06/creative-uses-for-php/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>WordPress for Designers Series</title>
		<link>http://blog.amphee.com/index.php/2009/05/04/wordpress-for-designers-series/</link>
		<comments>http://blog.amphee.com/index.php/2009/05/04/wordpress-for-designers-series/#comments</comments>
		<pubDate>Mon, 04 May 2009 04:45:37 +0000</pubDate>
		<dc:creator>kiran vadariya</dc:creator>
				<category><![CDATA[javascript]]></category>
		<category><![CDATA[php development]]></category>
		<category><![CDATA[web design]]></category>
		<category><![CDATA[web development]]></category>
		<category><![CDATA[css]]></category>
		<category><![CDATA[designer]]></category>
		<category><![CDATA[Jquery]]></category>
		<category><![CDATA[PHP]]></category>
		<category><![CDATA[wordpress]]></category>

		<guid isPermaLink="false">http://blog.devloperworld.com/?p=44</guid>
		<description><![CDATA[WordPress is not only  a web technology by itself but excellent  combination of  HTML, CSS, PHP and jQuery.  The most popular blogging platform and one you’ve most likely heard of. When you’re ready to learn how to use WordPress, these tutorials will teach you what you need to know.
If you want to learn how to [...]]]></description>
			<content:encoded><![CDATA[<!-- google_ad_section_start --><p>WordPress is not only  a web technology by itself but excellent  combination of  HTML, CSS, PHP and jQuery.  The most popular blogging platform and one you’ve most likely heard of. When you’re ready to learn how to use WordPress, these tutorials will teach you what you need to know.</p>
<p>If you want to learn how to work with WordPress, one of the best places to start is by watching this series of screencasts. Okay, so this isn’t one tutorial but that’s what I’m calling it since it’s one big series covering one subject, WordPress. This series isn’t finished yet either so make sure you subscribe to the ThemeForest blog to keep up to date on new screencasts as they arrive</p>
<p>i have few links for you chk this</p>
<ul>
<li><a href="http://blog.themeforest.net/screencasts/new-wp-video-series-and-free-rockstar-book/">WordPress for Designers: Day 1</a></li>
<li><a href="http://blog.themeforest.net/wordpress/wordpress-for-designers-day-2/">WordPress for Designers: Day 2</a></li>
<li><a href="http://blog.themeforest.net/wordpress/wordpress-for-designers-day-3/">WordPress for Designers: Day 3</a></li>
<li><a href="http://blog.themeforest.net/wordpress/wordpress-for-designers-day-4/">WordPress for Designers: Day 4</a></li>
<li><a href="http://blog.themeforest.net/wordpress/wordpress-for-designers-day-5/">WordPress for Designers: Day 5</a></li>
<li><a href="http://blog.themeforest.net/wordpress/wordpress-for-designers-day-6/">WordPress for Designers: Day 6</a></li>
<li><a href="http://blog.themeforest.net/wordpress/wordpress-for-designers-day-7/">WordPress for Designers: Day 7</a></li>
<li><a href="http://blog.themeforest.net/wordpress/wordpress-for-designers-day-8/">WordPress for Designers: Day 8</a></li>
<li><a href="http://blog.themeforest.net/wordpress/wordpress-for-designers-day-9/">WordPress for Designers: Day 9</a></li>
<li><a href="http://blog.themeforest.net/wordpress/wordpress-for-designers-day-10/">WordPress for Designers: Day 10</a></li>
<li><a href="http://blog.themeforest.net/wordpress/wordpress-for-designers-day-11/">WordPress for Designers: Day 11</a></li>
<li><a href="http://blog.themeforest.net/wordpress/wordpress-for-designers-day-12/">WordPress for Designers: Day 12</a></li>
<li><a href="http://blog.themeforest.net/wordpress/wordpress-for-designers-day-13/">WordPress for Designers: Day 13</a></li>
<li><a href="http://blog.themeforest.net/wordpress/wordpress-for-designers-day-14/">WordPress for Designers: Day 14</a></li>
</ul>
<p>hope your enjoyed it <img src='http://blog.amphee.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<!-- google_ad_section_end -->]]></content:encoded>
			<wfw:commentRss>http://blog.amphee.com/index.php/2009/05/04/wordpress-for-designers-series/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
	</channel>
</rss>

