<?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>Design Gala</title>
	<atom:link href="http://designgala.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://designgala.com</link>
	<description>Web Usability, Web Technology, User Experience</description>
	<lastBuildDate>Sat, 11 Jun 2011 02:38:19 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3</generator>
		<item>
		<title>CSS 3 Transitions</title>
		<link>http://designgala.com/css-3-transitions/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=css-3-transitions</link>
		<comments>http://designgala.com/css-3-transitions/#comments</comments>
		<pubDate>Sat, 11 Jun 2011 02:38:19 +0000</pubDate>
		<dc:creator>manish</dc:creator>
				<category><![CDATA[CSS]]></category>
		<category><![CDATA[How to]]></category>
		<category><![CDATA[CSS3 transitions]]></category>

		<guid isPermaLink="false">http://designgala.com/?p=2692</guid>
		<description><![CDATA[Its been sometime since  CSS3 has been introduced, bringing some interesting new presentational techniques along with it. Today, we’ll review the basics of using CSS3 transitions to add an extra layer of polish....]]></description>
			<content:encoded><![CDATA[<p>Its been sometime since  CSS3 has been introduced, bringing some interesting new presentational techniques along with it. Today, we’ll review the basics of using CSS3 transitions  to add an extra layer of polish.</p>
<p>Let’s create a simple example of animating a pop out sign.</p>
<p><a href="http://designgala.com/wp-content/uploads/2011/05/css3_transition.jpg"><img class="alignnone size-full wp-image-2693" src="http://designgala.com/wp-content/uploads/2011/05/css3_transition.jpg" alt="css3 transition image" width="292" height="257" /></a></p>
<p>First Create a Div with images</p>
<div class="wp_syntax">
<div class="code">
<pre class="html" style="font-family:monospace;">&amp;lt;div id=&quot;signpost&quot;&amp;gt;
	&amp;lt;img id=&quot;post&quot; src=&quot;post.png&quot;&amp;gt;
	&amp;lt;img id=&quot;sign&quot; src=&quot;sign.png&quot;&amp;gt;
&amp;lt;/div&amp;gt;</pre>
</div>
</div>
<p>Create the bounding box for the signpost, and give it a relative positioning context to ensure that we can position items absolutely within it.</p>
<div class="wp_syntax">
<div class="code">
<pre class="css" style="font-family:monospace;"><span style="color: #cc00cc;">#signpost</span><span style="color: #00AA00;">&#123;</span>
 <span style="color: #000000; font-weight: bold;">width</span><span style="color: #00AA00;">:</span><span style="color: #933;">60px</span><span style="color: #00AA00;">;</span>
 <span style="color: #000000; font-weight: bold;">height</span><span style="color: #00AA00;">:</span><span style="color: #933;">196px</span><span style="color: #00AA00;">;</span>
 <span style="color: #000000; font-weight: bold;">position</span><span style="color: #00AA00;">:</span><span style="color: #993333;">relative</span><span style="color: #00AA00;">;</span>
<span style="color: #00AA00;">&#125;</span></pre>
</div>
</div>
<p>Next, the post is positioned with a z-index of two, to place it on top of the sign.</p>
<div class="wp_syntax">
<div class="code">
<pre class="css" style="font-family:monospace;"><span style="color: #cc00cc;">#post</span><span style="color: #00AA00;">&#123;</span>
 <span style="color: #000000; font-weight: bold;">width</span><span style="color: #00AA00;">:</span><span style="color: #933;">79px</span><span style="color: #00AA00;">;</span>
 <span style="color: #000000; font-weight: bold;">height</span><span style="color: #00AA00;">:</span><span style="color: #933;">196px</span><span style="color: #00AA00;">;</span>
 <span style="color: #000000; font-weight: bold;">z-index</span><span style="color: #00AA00;">:</span><span style="color: #cc66cc;">2</span><span style="color: #00AA00;">;</span>
 <span style="color: #000000; font-weight: bold;">position</span><span style="color: #00AA00;">:</span><span style="color: #993333;">relative</span><span style="color: #00AA00;">;</span>
<span style="color: #00AA00;">&#125;</span></pre>
</div>
</div>
<p>Now we place sign underneath the Post and rotate it with our CSS3 transform property</p>
<div class="wp_syntax">
<div class="code">
<pre class="css" style="font-family:monospace;"><span style="color: #cc00cc;">#sign</span><span style="color: #00AA00;">&#123;</span>
<span style="color: #000000; font-weight: bold;">height</span><span style="color: #00AA00;">:</span><span style="color: #933;">46px</span><span style="color: #00AA00;">;</span>
<span style="color: #000000; font-weight: bold;">width</span><span style="color: #00AA00;">:</span><span style="color: #933;">80px</span><span style="color: #00AA00;">;</span>
<span style="color: #000000; font-weight: bold;">position</span><span style="color: #00AA00;">:</span><span style="color: #993333;">absolute</span><span style="color: #00AA00;">;</span>
<span style="color: #000000; font-weight: bold;">top</span><span style="color: #00AA00;">:</span><span style="color: #cc66cc;">10</span><span style="color: #00AA00;">;</span>
<span style="color: #000000; font-weight: bold;">left</span><span style="color: #00AA00;">:</span><span style="color: #cc66cc;">60</span><span style="color: #00AA00;">;</span>
-webkit-transform-origin<span style="color: #00AA00;">:</span><span style="color: #cc66cc;">0</span> <span style="color: #cc66cc;">0</span><span style="color: #00AA00;">;</span>
-moz-transform-origin<span style="color: #00AA00;">:</span><span style="color: #cc66cc;">0</span> <span style="color: #cc66cc;">0</span><span style="color: #00AA00;">;</span>
&nbsp;
-webkit-transform<span style="color: #00AA00;">:</span> rotate<span style="color: #00AA00;">&#40;</span>86deg<span style="color: #00AA00;">&#41;</span><span style="color: #00AA00;">;</span>
-moz-transform<span style="color: #00AA00;">:</span> rotate<span style="color: #00AA00;">&#40;</span>86deg<span style="color: #00AA00;">&#41;</span><span style="color: #00AA00;">;</span>
<span style="color: #000000; font-weight: bold;">z-index</span><span style="color: #00AA00;">:</span><span style="color: #cc66cc;">1</span><span style="color: #00AA00;">;</span>
-webkit-transition<span style="color: #3333ff;">:-webkit-</span>transform 0.5s ease-in-out<span style="color: #00AA00;">;</span>
<span style="color: #00AA00;">&#125;</span></pre>
</div>
</div>
<p>The sign is rotated using transform: rotate(86deg), and is positioned under the post. To ensure that the sign rotates around the proper point, we must change the <strong>transform origin</strong> to the top left corner: 0, 0.</p>
<p><a href="http://designgala.com/wp-content/uploads/2011/05/changeoforigin.jpg"><img class="alignnone size-full wp-image-2694" src="http://designgala.com/wp-content/uploads/2011/05/changeoforigin.jpg" alt="css3 transform" width="100" height="150" /></a></p>
<p>We set the transition to change the transform property over 0.5s with an ease-in-out profile, and on hover, we rotate the sign back to its original orientation.</p>
<div class="wp_syntax">
<div class="code">
<pre class="css" style="font-family:monospace;"><span style="color: #cc00cc;">#signpost</span><span style="color: #3333ff;">:hover </span><span style="color: #cc00cc;">#sign</span><span style="color: #00AA00;">&#123;</span>
	-webkit-transform<span style="color: #00AA00;">:</span>rotate<span style="color: #00AA00;">&#40;</span>0deg<span style="color: #00AA00;">&#41;</span><span style="color: #00AA00;">;</span>
         -moz-transform<span style="color: #00AA00;">:</span>rotate<span style="color: #00AA00;">&#40;</span>0deg<span style="color: #00AA00;">&#41;</span><span style="color: #00AA00;">;</span> <span style="color: #00AA00;">&#125;</span></pre>
</div>
</div>
<p>Reference: <a href="http://net.tutsplus.com/">http://net.tutsplus.com</a>
<div id="fb-root"></div>
<p><script src="http://connect.facebook.net/en_US/all.js#xfbml=1"></script><!-- Do not remove --></p>
]]></content:encoded>
			<wfw:commentRss>http://designgala.com/css-3-transitions/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Web Development Tools Work On Mac</title>
		<link>http://designgala.com/web-development-tools-work-on-mac/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=web-development-tools-work-on-mac</link>
		<comments>http://designgala.com/web-development-tools-work-on-mac/#comments</comments>
		<pubDate>Fri, 18 Mar 2011 05:47:44 +0000</pubDate>
		<dc:creator>S@R0Z</dc:creator>
				<category><![CDATA[Design]]></category>
		<category><![CDATA[Web Standards]]></category>
		<category><![CDATA[Mac]]></category>

		<guid isPermaLink="false">http://designgala.com/?p=2663</guid>
		<description><![CDATA[Mac OS X, well know for their simplicity and performance. If you’re a web developer using a Mac you may have used many applications. Finding the best Apps for Freelance Web Designers is...]]></description>
			<content:encoded><![CDATA[<blockquote><p>Mac OS X, well know for their simplicity and performance.</p></blockquote>
<p>If you’re a web developer using a Mac you may have used many applications. Finding the best Apps for Freelance Web Designers is one challenging task. So in this post I have listed best Mac Apps designed for code editing, file and data transfer, database management, image editing etc. Some of them are free and most of them are relatively inexpensive.</p>
<p>1.<a href="http://clickontyler.com/virtualhostx/" target="_blank">VirtualHostX</a> &#8211; VirtualHostX is the best way to host multiple websites on your Mac. It lets you easily create Apache virtual hosts on Mac OS X.</p>
<p><img class="aligncenter size-full wp-image-2665" src="http://designgala.com/wp-content/uploads/2011/03/virtualhostx.jpg" alt="" width="500" height="200" /><br />
2. <a href="http://www.mamp.info/en/index.php" target="_blank">MAMP</a> &#8211; MAMP is a quick and painless way to set up Macintosh, Apache, MySQL and PHP in the same environment.  Instantly you’ve got a fully-functional web testing environment for your PHP applications.</p>
<p><img class="aligncenter size-full wp-image-2666" src="http://designgala.com/wp-content/uploads/2011/03/mamp.jpg" alt="" width="500" height="200" /><br />
3. <a href="http://download.cnet.com/phpMyAdmin/3000-10254_4-26097.html" target="_blank">phpMyAdmin</a> &#8211; phpMyAdmin is the kindly old grandfather of database management scripts. Not necessarily hip to an attractive user interface, phpMyAdmin still has the skills to pay the bills.</p>
<p><img class="aligncenter size-full wp-image-2667" src="http://designgala.com/wp-content/uploads/2011/03/phpmyadmin-mac.jpg" alt="" width="500" height="200" /><br />
4. <a href="http://www.yummysoftware.com/" target="_blank">Yummy FTP</a> &#8211; Yummy FTP is an FTP and SFTP client application for the Apple Macintosh, built as native Mac OS X software from the ground up, with the goal of providing a reliable, powerful, yet easy to use file transfer utility.</p>
<p><img class="aligncenter size-full wp-image-2668" src="http://designgala.com/wp-content/uploads/2011/03/yummy_ftp.jpg" alt="" width="500" height="200" /></p>
<p>5. <a href="http://www.panic.com/transmit/" target="_blank">Transmit </a>- It offers almost all of the same functionality as Cyberduck, but adds a little more robustness for advanced user. For example, you can edit any remote file (even a picture or graphic) in any software using Transmit.</p>
<p><img class="aligncenter size-full wp-image-2671" src="http://designgala.com/wp-content/uploads/2011/03/transmit3.jpg" alt="" width="500" height="200" /><br />
6. <a href="http://www.panic.com/coda" target="_blank">Coda</a> &#8211; It is a complete web development solutions that fulfills all your coding needs, you will love to use its code editor that has support for various programming languages like HTML, XHTML, CSS, PHP, ASP, Ruby, Java and XML etc.</p>
<p><img class="aligncenter size-full wp-image-2672" src="http://designgala.com/wp-content/uploads/2011/03/coda.jpg" alt="" width="500" height="200" /></p>
<p>7. <a href="http://macrabbit.com/cssedit/" target="_blank">CSSEdit </a>- cssedit is a CSS editor with a fantastic user interface. It has the look and feel of a Mac application, which makes the experience of editing CSS much more enjoyable.</p>
<p><img class="aligncenter size-full wp-image-2676" src="http://designgala.com/wp-content/uploads/2011/03/cssedit-mac.jpg" alt="" width="500" height="200" /></p>
<p>8. <a href="http://changesapp.com/" target="_blank">Changes</a> &#8211; Changes is a nifty application that lets you visually browse changes to your code base. Instead of having to use a subversion to manage your code base (though Changes works with svn and other repository software), you can use Changes.</p>
<p><img class="aligncenter size-full wp-image-2678" src="http://designgala.com/wp-content/uploads/2011/03/changes.jpg" alt="" width="500" height="200" /></p>
<p>9. <a href="http://www.smileonmymac.com/TextExpander/" target="_blank">TextExpander </a>- TextExpander saves you countless keystrokes with customized abbreviations for your frequently-used text strings, code snippets and images.</p>
<p><img class="aligncenter size-full wp-image-2681" src="http://designgala.com/wp-content/uploads/2011/03/TextExpander.jpg" alt="" width="500" height="200" /></p>
<p>10. <a href="http://macromates.com/" target="_blank">TextMate </a>- A popular text-editing tool for Apple Mac OS. It offers number of useful features, like search and replaces text, clipboard history, file tabs when working with projects.</p>
<p><img class="aligncenter size-full wp-image-2682" src="http://designgala.com/wp-content/uploads/2011/03/textmate.jpg" alt="" width="500" height="200" />
<div id="fb-root"></div>
<p><script src="http://connect.facebook.net/en_US/all.js#xfbml=1"></script><!-- Do not remove --></p>
]]></content:encoded>
			<wfw:commentRss>http://designgala.com/web-development-tools-work-on-mac/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Let&#8217;s help for Japan.</title>
		<link>http://designgala.com/lets-help-for-japan/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=lets-help-for-japan</link>
		<comments>http://designgala.com/lets-help-for-japan/#comments</comments>
		<pubDate>Thu, 17 Mar 2011 03:41:49 +0000</pubDate>
		<dc:creator>Rabi Shrestha</dc:creator>
				<category><![CDATA[Just]]></category>

		<guid isPermaLink="false">http://designgala.com/?p=2649</guid>
		<description><![CDATA[Let&#8217;s put our hand in hand and help to the people of japan who needs our help and support. It&#8217;s not that we have to go there and help them. Wherever we are...]]></description>
			<content:encoded><![CDATA[<p><img src="http://designgala.com/wp-content/uploads/2011/03/200573_1823672064299_1015145347_2137071_4755860_n.jpg" alt="" title="200573_1823672064299_1015145347_2137071_4755860_n" width="364" height="254" class="alignnone size-full wp-image-2650" /><br />
Let&#8217;s put our hand in hand and help to the people of japan who needs our help and support. It&#8217;s not that we have to go there and help them. Wherever we are ,in any part of the world , we can help them, what we need is the strong determination . There are various ways to help them who are getting suffered .</p>
<p><strong>Make a Donation </strong><br />
You can donate the amount you want via online services.There are number of organization&#8217;s which accept these donations and they deliver these amounts to the people who really needs them. But you have to be sure that you are donating for the right organization. If you want to donate via google&#8217;s services, <a href="http://www.google.com/crisisresponse/japanquake2011.html" target=" ">CLICK HERE</a>  </p>
<p><strong>Spread the words</strong><br />
There are different campaigning going on the social networking sites and other websites. you can put your comments and messages . You can like the pages in the facebook which are campaigning for japan.<br />
If you run a website or  a blog, you can drive awareness for the Japan earthquake and promote donations by adding some information about help needed to victims of earthquake and tsunami of japan  in your webpage or blog. </p>
<p>Let&#8217;s show the world that we are human and we need to help who needs help .<br />
Let&#8217;s help for Japan.</p>
<div id="fb-root"></div>
<p><script src="http://connect.facebook.net/en_US/all.js#xfbml=1"></script><!-- Do not remove --></p>
]]></content:encoded>
			<wfw:commentRss>http://designgala.com/lets-help-for-japan/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Rotating DIV block using jquery</title>
		<link>http://designgala.com/rotating-div-block-using-jquery/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=rotating-div-block-using-jquery</link>
		<comments>http://designgala.com/rotating-div-block-using-jquery/#comments</comments>
		<pubDate>Sat, 05 Feb 2011 08:02:36 +0000</pubDate>
		<dc:creator>Design Gala</dc:creator>
				<category><![CDATA[jQuery]]></category>
		<category><![CDATA[Reviews]]></category>

		<guid isPermaLink="false">http://designgala.com/?p=2611</guid>
		<description><![CDATA[I have taken this article from csstricks.com and is written by By Chris Coyier . Sometimes we need to give an interactive look to a webpage and this could be one of the...]]></description>
			<content:encoded><![CDATA[<p><img src="http://designgala.com/wp-content/uploads/2011/02/rotating-div.png" alt="" title="rotating div" width="1002" height="509" class="alignnone size-full wp-image-2613" /><br />
I have taken this article from <a href="http://css-tricks.com/rotating-feature-boxes/">csstricks.com</a> and is written by By Chris Coyier . Sometimes we need to give an interactive look to a webpage and this could be one of the good option for that. If you have a simple idea about the html,CSS and jquery ,then you can use this features in your webpage. </p>
<p>To use the rotating div block in your webpage you have to follow three steps</p>
<p>1. HTML Section<br />
2. CSS Section<br />
3. jQuery Section </p>
<p><a href="http://css-tricks.com/examples/RotatingBlocks.zip" target=" ">Click here</a> to download the demo file.</p>
<div id="fb-root"></div>
<p><script src="http://connect.facebook.net/en_US/all.js#xfbml=1"></script><!-- Do not remove --></p>
]]></content:encoded>
			<wfw:commentRss>http://designgala.com/rotating-div-block-using-jquery/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Five Cool jQuery Plugins for Displaying Images</title>
		<link>http://designgala.com/five-cool-jquery-plugins-for-displaying-images/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=five-cool-jquery-plugins-for-displaying-images</link>
		<comments>http://designgala.com/five-cool-jquery-plugins-for-displaying-images/#comments</comments>
		<pubDate>Mon, 24 Jan 2011 08:00:46 +0000</pubDate>
		<dc:creator>Design Gala</dc:creator>
				<category><![CDATA[jQuery]]></category>
		<category><![CDATA[Reviews]]></category>

		<guid isPermaLink="false">http://designgala.com/?p=2591</guid>
		<description><![CDATA[Write less , do more. the slogan of the jquery proves its significance. According to jquery.com .&#8221;jQuery is a fast and concise JavaScript Library that simplifies HTML document traversing, event handling, animating, and...]]></description>
			<content:encoded><![CDATA[<p><img src="http://designgala.com/wp-content/uploads/2011/01/pjhoto.jpg" alt="" title="pjhoto" width="510" height="400" class="alignnone size-full wp-image-2593" /></p>
<p>Write less , do more. the slogan of the jquery proves its significance. According to jquery.com .&#8221;jQuery is a fast and concise JavaScript Library that simplifies HTML document traversing, event handling, animating, and Ajax interactions for rapid web development. jQuery is designed to change the way that you write JavaScript.&#8221;  I am always fascinated by the jquery plugins.In this article , i have compiled  some jquery plugins which i have used in my projects and hope it will be useful to other&#8217;s too.The jquery plugins, here i am discussing are specially focused for handling the images.</p>
<p><a href="http://css-tricks.com/creating-a-slick-auto-playing-featured-content-slider/" target=" "><strong>1.Slick Auto-Playing Featured Content Slider</strong></a></p>
<p><a href="http://css-tricks.com/creating-a-slick-auto-playing-featured-content-slider/" target=" "><img src="http://designgala.com/wp-content/uploads/2011/01/css-tricks.png" alt="" title="css tricks" width="496" height="399" class="alignnone size-full wp-image-2597" /></a></p>
<p><strong><a href="http://css-tricks.com/examples/FeaturedContentSlider/" target=" ">Click here</a></strong> for demo and download.</p>
<p><strong><a href="http://buildinternet.com/2009/03/sliding-boxes-and-captions-with-jquery/" target=" ">2.Sliding Boxes and Captions with jQuery</a></strong></p>
<p><a href="http://buildinternet.com/2009/03/sliding-boxes-and-captions-with-jquery/"><img src="http://designgala.com/wp-content/uploads/2011/01/build-internet.png" alt="" title="build internet" width="699" height="562" class="alignnone size-full wp-image-2600" /></a></p>
<p><strong><a href="http://buildinternet.com/2009/03/sliding-boxes-and-captions-with-jquery/" target=" ">Click here</a></strong> for demo and download. </p>
<p><strong><a href="http://workshop.rs/2009/12/image-gallery-with-fancy-transitions-effects/"target=" ">3.jqFancyTransitions slideshow with strip effects</a></strong></p>
<p><a href="http://workshop.rs/2009/12/image-gallery-with-fancy-transitions-effects/"><img src="http://designgala.com/wp-content/uploads/2011/01/jqfancy.png" alt="" title="jqfancy" width="533" height="385" class="alignnone size-full wp-image-2603" /></a></p>
<p><strong><a href="http://workshop.rs/2009/12/image-gallery-with-fancy-transitions-effects/" target=" ">Click here</a></strong> for demo and download. </p>
<p><strong><a href="http://addyosmani.com/blog/zoomer-gallery-a-jquery-plugin-for-displaying-images-with-flash-like-zooming-effects/" target=" ">4.zoomer gallery</a></strong></p>
<p><a href="http://addyosmani.com/blog/zoomer-gallery-a-jquery-plugin-for-displaying-images-with-flash-like-zooming-effects/"><img src="http://designgala.com/wp-content/uploads/2011/01/zoomergallery.png" alt="" title="zoomergallery" width="719" height="497" class="alignnone size-full wp-image-2604" /></a></p>
<p><strong><a href="http://addyosmani.com/blog/zoomer-gallery-a-jquery-plugin-for-displaying-images-with-flash-like-zooming-effects/" target=" ">Click here</a></strong> for demo and download. </p>
<p><a href="http://buildinternet.com/2010/02/animate-panning-slideshow-with-jquery/" target=" "><strong>5.Panning Slideshow</strong></a></p>
<p><a href="http://buildinternet.com/2010/02/animate-panning-slideshow-with-jquery/" target=" "><img src="http://designgala.com/wp-content/uploads/2011/01/panning-slideshow.png" alt="" title="panning slideshow" width="972" height="565" class="alignnone size-full wp-image-2605" /></a></p>
<p><strong><a href="http://buildinternet.com/2010/02/animate-panning-slideshow-with-jquery/" target=" ">Click here</a></strong> for demo and download. </p>
<div id="fb-root"></div>
<p><script src="http://connect.facebook.net/en_US/all.js#xfbml=1"></script><!-- Do not remove --></p>
]]></content:encoded>
			<wfw:commentRss>http://designgala.com/five-cool-jquery-plugins-for-displaying-images/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>5 Unique iPhone Apps Websites</title>
		<link>http://designgala.com/5-unique-iphone-apps-websites/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=5-unique-iphone-apps-websites</link>
		<comments>http://designgala.com/5-unique-iphone-apps-websites/#comments</comments>
		<pubDate>Sat, 22 Jan 2011 07:16:24 +0000</pubDate>
		<dc:creator>Design Gala</dc:creator>
				<category><![CDATA[Design]]></category>
		<category><![CDATA[Inspiration]]></category>

		<guid isPermaLink="false">http://designgala.com/?p=2563</guid>
		<description><![CDATA[Iphone, one of the best selling product nowdays. Here , i have collected some unique websites which provides the application for the iphone. The design is unique and interesting and i hope this...]]></description>
			<content:encoded><![CDATA[<p><img src="http://designgala.com/wp-content/uploads/2011/01/iphone-application1.jpg" alt="" title="iphone-application" width="450" height="330" class="alignnone size-full wp-image-2570" /></p>
<p>Iphone, one of the best selling product nowdays. Here , i have collected some unique websites which provides the application for the iphone. The design is unique and interesting and i hope this will be  inspiration to all of us. </p>
<p>1.<strong><a href="http://ecoki.com/iphone/" target=" ">ecoki.com</a></strong><br />
<a href="http://ecoki.com/iphone/" target=" "><img src="http://designgala.com/wp-content/uploads/2011/01/ecoki.jpg" alt="" title="ecoki" width="1007" height="930" class="alignnone size-full wp-image-2568" /></a></p>
<p>2.<strong><a href="http://www.cookmateapp.com/" target=" ">cookmateapp.com</a></strong><br />
<a href="http://www.cookmateapp.com/" target=" "><img src="http://designgala.com/wp-content/uploads/2011/01/cookmate-987x1024.jpg" alt="" title="cookmate" width="528" height="547" class="alignnone size-large wp-image-2567" /></a></p>
<p>3.<strong><a href="http://www.hybridworks.jp/apps/yoritsuki/" target=" ">hybridworks.jp</a></strong><br />
<a href="http://www.hybridworks.jp/apps/yoritsuki/" target=" "><img src="http://designgala.com/wp-content/uploads/2011/01/yokusi.jpg" alt="" title="yokusi" width="1007" height="577" class="alignnone size-full wp-image-2573" /></a></p>
<p>4.<strong><a href="http://www.oldbooth.com/" target=" ">oldbooth.com</a></strong><br />
<a href="http://www.oldbooth.com/" target=" "><img src="http://designgala.com/wp-content/uploads/2011/01/oldbooth-702x1024.jpg" alt="" title="oldbooth" width="528" height="770" class="alignnone size-large wp-image-2571" /></a></p>
<p>5.<strong><a href="http://www.taptapas.com/talkwatch.php" target=" ">taptapas.com</a></strong><br />
<a href="http://www.taptapas.com/talkwatch.php" target=" "><img src="http://designgala.com/wp-content/uploads/2011/01/taptapa.jpg" alt="" title="taptapa" width="1007" height="915" class="alignnone size-full wp-image-2572" /></a></p>
<div id="fb-root"></div>
<p><script src="http://connect.facebook.net/en_US/all.js#xfbml=1"></script><!-- Do not remove --></p>
]]></content:encoded>
			<wfw:commentRss>http://designgala.com/5-unique-iphone-apps-websites/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Five free ebooks of webdesign you dont want to miss</title>
		<link>http://designgala.com/five-free-ebooks-of-webdesign-you-dont-want-to-miss/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=five-free-ebooks-of-webdesign-you-dont-want-to-miss</link>
		<comments>http://designgala.com/five-free-ebooks-of-webdesign-you-dont-want-to-miss/#comments</comments>
		<pubDate>Thu, 20 Jan 2011 09:17:22 +0000</pubDate>
		<dc:creator>Design Gala</dc:creator>
				<category><![CDATA[CSS]]></category>
		<category><![CDATA[Web Standards]]></category>

		<guid isPermaLink="false">http://designgala.com/?p=2543</guid>
		<description><![CDATA[Whenever i had a free time , i always look for the ebooks in the web.Here i have collected some ebooks which are specially focused for the web designer . Being a designer...]]></description>
			<content:encoded><![CDATA[<p><a href="http://designgala.com/wp-content/uploads/2011/01/ebooks1.jpg"><img src="http://designgala.com/wp-content/uploads/2011/01/ebooks1.jpg" alt="" title="ebooks1" width="347" height="346" class="alignnone size-full wp-image-2544" /></a></p>
<p>Whenever i had a free time , i always look for the ebooks in the web.Here i have collected some ebooks which are specially focused for the web designer . Being a designer you always have to keep the idea about the current trends . Some of these books are online books and some can be downloaded in the pdf format.Reading books is one of the best habit.</p>
<p>1.<a href="http://www.the-web-book.com/index.php" target=" "><strong>The Webbook</strong></a><br />
<a href="http://www.the-web-book.com/index.php" target=" "><img src="http://designgala.com/wp-content/uploads/2011/01/webdesign_books_08.jpg" alt="" title="webdesign_books_08" width="640" height="299" class="alignnone size-full wp-image-2546" /></a></p>
<p>If you are a new beginner for web, you can start with this book. This Book contains all the information that is needed to create a Web site , registering a domain name and renting some hosting space, creating your first HTML page, building full online database applications with PHP and MySQL. It also tells about CSS and  Javascript. </p>
<p>2.<strong><a href="http://designingfortheweb.co.uk/book/" target=" ">Designing for the web</a></strong><br />
<a href="http://designingfortheweb.co.uk/book/" target=" "><img src="http://designgala.com/wp-content/uploads/2011/01/webdesign_books_01.jpg" alt="" title="webdesign_books_01" width="640" height="355" class="alignnone size-full wp-image-2550" /></a></p>
<p>This book contains five sections, : Getting Started, Research, Typography, Colour, and Layout. Learn solid graphic design theory that you can simply apply to your designs, making the difference from a good design to a great one. and it covers a core aspect of graphic design.</p>
<p>3.<a href="http://www.webstyleguide.com/wsg3/index.html" target=" "><strong>Web Style Guide: Basic Design Principles for Creating Web Sites – 3rd Edition</strong></a><br />
<a href="http://www.webstyleguide.com/wsg3/index.html" target=" "><img src="http://designgala.com/wp-content/uploads/2011/01/webdesignbook_08.jpg" alt="" title="webdesignbook_08" width="604" height="200" class="alignnone size-full wp-image-2553" /></a><br />
This book contains 12 sections which covers the basic design principles and most of the aspect of the webdesign. The form designs and applications,multimedia,typography are clearly explained.</p>
<p>4.<strong><a href="http://diveintohtml5.org/" target=" ">Dive into HTML 5</a></strong><br />
<a href="http://diveintohtml5.org/" target=" "><img src="http://designgala.com/wp-content/uploads/2011/01/webdesign_books_03.jpg" alt="" title="webdesign_books_03" width="640" height="355" class="alignnone size-full wp-image-2555" /></a></p>
<p>This book is written by MARK PILGRIM.If you can get to the idea about the HTML 5 , this book can be one of the good option.It starts with the history of HTML 5 to the all the standard .</p>
<p>5.<strong><a href="http://www.zeldman.com/2009/04/16/taking-your-talent-to-the-web-is-now-a-free-downloadable-book-from-zeldmancom/" target=" ">Taking your talent to the web</a></strong><br />
<a href="http://www.zeldman.com/2009/04/16/taking-your-talent-to-the-web-is-now-a-free-downloadable-book-from-zeldmancom/" target=" "><img src="http://designgala.com/wp-content/uploads/2011/01/webdesign_books_02.jpg" alt="" title="webdesign_books_02" width="640" height="355" class="alignnone size-full wp-image-2558" /></a></p>
<p>This book was written in 2001 and was rated top five book by amazon.com.This book was written for print designers whose clients want websites, print art directors who’d like to move into full–time web and interaction design, homepage creators who are ready to turn pro, and professionals who seek to deepen their web skills and understanding.</p>
<p>These all books are yours,Enjoy it.
<div id="fb-root"></div>
<p><script src="http://connect.facebook.net/en_US/all.js#xfbml=1"></script><!-- Do not remove --></p>
]]></content:encoded>
			<wfw:commentRss>http://designgala.com/five-free-ebooks-of-webdesign-you-dont-want-to-miss/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Free WordPress Theme:Skeptical</title>
		<link>http://designgala.com/free-wordpress-themeskeptical/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=free-wordpress-themeskeptical</link>
		<comments>http://designgala.com/free-wordpress-themeskeptical/#comments</comments>
		<pubDate>Tue, 18 Jan 2011 06:02:47 +0000</pubDate>
		<dc:creator>Design Gala</dc:creator>
				<category><![CDATA[Themes]]></category>
		<category><![CDATA[WordPress]]></category>
		<category><![CDATA[free wordpress theme]]></category>

		<guid isPermaLink="false">http://designgala.com/?p=2536</guid>
		<description><![CDATA[Skeptical themes is free wordpress theme provided by woothemes.com. This theme is primarily targeted for personal homepage.You can add your events, activites , and photos. This theme have got Custom topography, alternative sidebars,...]]></description>
			<content:encoded><![CDATA[<p><a href="http://designgala.com/wp-content/uploads/2011/01/skep.jpg"><img src="http://designgala.com/wp-content/uploads/2011/01/skep.jpg" alt="" title="skep" width="600" height="282" class="alignnone size-full wp-image-2538" /></a></p>
<p>Skeptical themes is free wordpress theme provided by woothemes.com. This theme is primarily targeted for personal homepage.You can add your events, activites , and photos. This theme have got Custom topography, alternative sidebars, customized widget and foot area.<br />
The color combination of the page is smooth and looks cool.The feature of the flickr stream at the base of the page looks great.</p>
<p><a href="http://www.woothemes.com/theme-packages/wordpress/skeptical/skeptical.zip" target=" ">Click here</a> to download the skeptical wordpress theme.
<div id="fb-root"></div>
<p><script src="http://connect.facebook.net/en_US/all.js#xfbml=1"></script><!-- Do not remove --></p>
]]></content:encoded>
			<wfw:commentRss>http://designgala.com/free-wordpress-themeskeptical/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Floating Message Box Using Jquery</title>
		<link>http://designgala.com/floating-message-box-using-jquery/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=floating-message-box-using-jquery</link>
		<comments>http://designgala.com/floating-message-box-using-jquery/#comments</comments>
		<pubDate>Mon, 19 Jul 2010 04:45:30 +0000</pubDate>
		<dc:creator>Rabi Shrestha</dc:creator>
				<category><![CDATA[How to]]></category>
		<category><![CDATA[jQuery]]></category>
		<category><![CDATA[floating message box]]></category>
		<category><![CDATA[floating message box using jquery]]></category>
		<category><![CDATA[message box]]></category>

		<guid isPermaLink="false">http://www.designgala.com/?p=2383</guid>
		<description><![CDATA[Sometimes, we have to show some extra message in our post which are important and linked with the post and cannot put that in the webpage like some important announcement and breaking news...]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.designgala.com/wp-content/uploads/2010/07/iceberg2.jpg"><img src="http://www.designgala.com/wp-content/uploads/2010/07/iceberg2.jpg" alt="" title="iceberg2" width="519" height="270" class="alignnone size-full wp-image-2386" /></a><br />
Sometimes, we have to show some extra message in our post which are important and linked with the  post and cannot put that in the webpage  like some important announcement  and breaking news etc. In these cases, it can better  option  to use a Floating Message Box which will appear in front of the webpage .  Today, I am going to discuss the code which will create a floating message box using jquery . You can use this code everywhere you want .<span id="more-2383"></span></p>
<p><strong>Step 1</strong>:<br />
Copy and paste the following code on the head section of your webpage .</p>
<div class="wp_syntax">
<div class="code">
<pre class="javascript" style="font-family:monospace;">&lt;meta http-equiv=&quot;Content-Type&quot; content=&quot;text/html; charset=UTF-8&quot; /&gt;
&lt;script language=&quot;javascript&quot; src=&quot;jquery.js&quot;&gt;&lt;/script&gt;
&lt;script language=&quot;javascript&quot; src=&quot;jquery.dimensions.js&quot;&gt;&lt;/script&gt;
<span style="color: #339933;">&lt;</span>script language<span style="color: #339933;">=</span><span style="color: #3366CC;">&quot;javascript&quot;</span><span style="color: #339933;">&gt;</span>
	<span style="color: #003366; font-weight: bold;">var</span> <span style="color: #000066;">name</span> <span style="color: #339933;">=</span> <span style="color: #3366CC;">&quot;#floatMess&quot;</span><span style="color: #339933;">;</span>
	<span style="color: #003366; font-weight: bold;">var</span> menuYloc <span style="color: #339933;">=</span> <span style="color: #003366; font-weight: bold;">null</span><span style="color: #339933;">;</span>
		$<span style="color: #009900;">&#40;</span>document<span style="color: #009900;">&#41;</span>.<span style="color: #660066;">ready</span><span style="color: #009900;">&#40;</span><span style="color: #003366; font-weight: bold;">function</span><span style="color: #009900;">&#40;</span><span style="color: #009900;">&#41;</span><span style="color: #009900;">&#123;</span>
	menuYloc <span style="color: #339933;">=</span> parseInt<span style="color: #009900;">&#40;</span>$<span style="color: #009900;">&#40;</span><span style="color: #000066;">name</span><span style="color: #009900;">&#41;</span>.<span style="color: #660066;">css</span><span style="color: #009900;">&#40;</span><span style="color: #3366CC;">&quot;top&quot;</span><span style="color: #009900;">&#41;</span>.<span style="color: #660066;">substring</span><span style="color: #009900;">&#40;</span><span style="color: #CC0000;">0</span><span style="color: #339933;">,</span>$<span style="color: #009900;">&#40;</span><span style="color: #000066;">name</span><span style="color: #009900;">&#41;</span>.<span style="color: #660066;">css</span><span style="color: #009900;">&#40;</span><span style="color: #3366CC;">&quot;top&quot;</span><span style="color: #009900;">&#41;</span>.<span style="color: #660066;">indexOf</span><span style="color: #009900;">&#40;</span><span style="color: #3366CC;">&quot;px&quot;</span><span style="color: #009900;">&#41;</span><span style="color: #009900;">&#41;</span><span style="color: #009900;">&#41;</span>
			$<span style="color: #009900;">&#40;</span>window<span style="color: #009900;">&#41;</span>.<span style="color: #000066;">scroll</span><span style="color: #009900;">&#40;</span><span style="color: #003366; font-weight: bold;">function</span> <span style="color: #009900;">&#40;</span><span style="color: #009900;">&#41;</span> <span style="color: #009900;">&#123;</span>
				offset <span style="color: #339933;">=</span> menuYloc<span style="color: #339933;">+</span>$<span style="color: #009900;">&#40;</span>document<span style="color: #009900;">&#41;</span>.<span style="color: #660066;">scrollTop</span><span style="color: #009900;">&#40;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">+</span><span style="color: #3366CC;">&quot;px&quot;</span><span style="color: #339933;">;</span>
				$<span style="color: #009900;">&#40;</span><span style="color: #000066;">name</span><span style="color: #009900;">&#41;</span>.<span style="color: #660066;">animate</span><span style="color: #009900;">&#40;</span><span style="color: #009900;">&#123;</span>top<span style="color: #339933;">:</span>offset<span style="color: #009900;">&#125;</span><span style="color: #339933;">,</span><span style="color: #009900;">&#123;</span>duration<span style="color: #339933;">:</span><span style="color: #CC0000;">500</span><span style="color: #339933;">,</span>queue<span style="color: #339933;">:</span><span style="color: #003366; font-weight: bold;">false</span><span style="color: #009900;">&#125;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
			<span style="color: #009900;">&#125;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
&nbsp;
			$<span style="color: #009900;">&#40;</span><span style="color: #3366CC;">'#close_message'</span><span style="color: #009900;">&#41;</span>.<span style="color: #660066;">click</span><span style="color: #009900;">&#40;</span><span style="color: #003366; font-weight: bold;">function</span><span style="color: #009900;">&#40;</span><span style="color: #009900;">&#41;</span>
			<span style="color: #009900;">&#123;</span>
  			$<span style="color: #009900;">&#40;</span><span style="color: #000066;">name</span><span style="color: #009900;">&#41;</span>.<span style="color: #660066;">animate</span><span style="color: #009900;">&#40;</span><span style="color: #009900;">&#123;</span> top<span style="color: #339933;">:</span><span style="color: #3366CC;">&quot;+=15px&quot;</span><span style="color: #339933;">,</span>opacity<span style="color: #339933;">:</span><span style="color: #CC0000;">0</span> <span style="color: #009900;">&#125;</span><span style="color: #339933;">,</span> <span style="color: #3366CC;">&quot;slow&quot;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
			<span style="color: #009900;">&#125;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
		<span style="color: #009900;">&#125;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
	 <span style="color: #339933;">&lt;/</span>script<span style="color: #339933;">&gt;</span></pre>
</div>
</div>
<p><strong>Step 2</strong>:<br />
Add the following code in the CSS style sheet or  in the style section of html page.</p>
<div class="wp_syntax">
<div class="code">
<pre class="javascript" style="font-family:monospace;">#floatMess <span style="color: #009900;">&#123;</span>
		position<span style="color: #339933;">:</span>absolute<span style="color: #339933;">;</span>
		top<span style="color: #339933;">:</span>5px<span style="color: #339933;">;</span>
		float<span style="color: #339933;">:</span>left<span style="color: #339933;">;</span>
		width<span style="color: #339933;">:</span><span style="color: #CC0000;">95</span><span style="color: #339933;">%;</span>
		border<span style="color: #339933;">:</span>1px solid #<span style="color: #CC0000;">999</span><span style="color: #339933;">;</span>
		background<span style="color: #339933;">-</span>color<span style="color: #339933;">:</span>#<span style="color: #CC0000;">456</span><span style="color: #339933;">;</span>
		color<span style="color: #339933;">:</span>#ccc<span style="color: #339933;">;</span>
		padding<span style="color: #339933;">:</span>5px 5px 5px 25px<span style="color: #339933;">;</span>
		text<span style="color: #339933;">-</span>align<span style="color: #339933;">:</span>center<span style="color: #339933;">;</span>
&nbsp;
		<span style="color: #009900;">&#125;</span></pre>
</div>
</div>
<p> The above codes select the color,size font color, width etc of the floating message box.<br />
You can change the upper parameters as per your requirements.</p>
<p><strong>Step 3</strong>:<br />
 Now it’s the time for adding the main thing in the body section of your webpage ie the main message DIV which is going to be displayed on the webpage. Copy the following codes and paste it in the beginning of the body section or anywhere , it will not affect the other div of the page .</p>
<div class="wp_syntax">
<div class="code">
<pre class="javascript" style="font-family:monospace;"><span style="color: #339933;">&lt;</span>div id<span style="color: #339933;">=</span><span style="color: #3366CC;">&quot;floatMess&quot;</span><span style="color: #339933;">&gt;&lt;</span>img id<span style="color: #339933;">=</span><span style="color: #3366CC;">&quot;close_message&quot;</span> style<span style="color: #339933;">=</span><span style="color: #3366CC;">&quot;float:right;cursor:pointer&quot;</span>  src<span style="color: #339933;">=</span><span style="color: #3366CC;">&quot;cross.png&quot;</span> <span style="color: #339933;">/&gt;</span>
      Your message Goes here
 <span style="color: #339933;">&lt;/</span>div<span style="color: #339933;">&gt;</span></pre>
</div>
</div>
<p><strong>Step 4</strong>:<br />
You will need to download  following three files and save it in the same folder which contains the main html file.</p>
<ul>
<li>jquery.js</li>
<li>jquery.dimensions.js</li>
<li>cross.png  ( ICON need to display cross image  at the message box )</li>
</ul>
<p><strong>Downloads:</strong></p>
<ul>
<li><a href="http://www.designgala.com/demos/floatmessage/jquery.js" target=" "><strong>Click here</strong></a> to download jquery.js</li>
<li><a href="http://www.designgala.com/demos/floatmessage/jquery.dimensions.js" target=" "><strong>Click here</strong></a> to download jquery.dimensions.js</li>
<li><a href="http://www.designgala.com/demos/floatmessage/cross.png" target=" "><strong>Click here</strong></a> to download cross.png</li>
</ul>
<p><strong>DEMO</strong></p>
<ul>
<li><a href="http://www.designgala.com/demos/floatmessage/message.html" target=" "><strong>Click here</strong></a>  to see DEMO </li>
<li><a href="http://www.designgala.com/demos/floatmessage/demo.rar" target=" "><strong>Click here</strong></a> to download the zip version of demo file .</li>
</ul>
<div id="fb-root"></div>
<p><script src="http://connect.facebook.net/en_US/all.js#xfbml=1"></script><!-- Do not remove --></p>
]]></content:encoded>
			<wfw:commentRss>http://designgala.com/floating-message-box-using-jquery/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>10 WP Plugins to Deal with Error 404 Pages</title>
		<link>http://designgala.com/10-wp-plugins-to-deal-with-error-404-pages/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=10-wp-plugins-to-deal-with-error-404-pages</link>
		<comments>http://designgala.com/10-wp-plugins-to-deal-with-error-404-pages/#comments</comments>
		<pubDate>Sun, 11 Jul 2010 08:20:42 +0000</pubDate>
		<dc:creator>S@R0Z</dc:creator>
				<category><![CDATA[WordPress]]></category>

		<guid isPermaLink="false">http://www.designgala.com/?p=2410</guid>
		<description><![CDATA[The plugins below can go a long way toward preventing your visitors from ever seeing a 404 page. These plugins are all free and range from plugins that auatomatically redirect your visitors to...]]></description>
			<content:encoded><![CDATA[<p>The plugins below can go a long way toward preventing your visitors from ever seeing a 404 page.<br />
<img src="http://www.designgala.com/wp-content/uploads/2010/07/404-err.jpg" alt="" width="499" height="286" class="aligncenter size-full wp-image-2414" /><br />
These plugins are all free and range from plugins that auatomatically redirect your visitors to ones that simply log 404 errors.</p>
<p><strong><a href="http://wordpress.org/extend/plugins/404-notifier/">404 Notifier</a></strong></p>
<p>This plugin from Alex King will help notify you of any 404 errors coming up on your site. It’s a very useful plugin to use if you’re changing your permalink structure or otherwise moving things around and are worried you may have missed some things and don’t want to risk broken URLs.<br />
<span id="more-2410"></span><br />
<strong><a href="http://atastypixel.com/blog/wordpress/plugins/smart-404/">Smart 404</a></strong></p>
<p>The Smart 404 plugin helps eliminate 404 pages automatically. If a visitor reaches a page that will return a 404 error, this plugin searches the requested URL to see if there’s some other post that likely matches. If there’s more than one potential match, it can return a list of possible links. It goes a long way to help remedy a high bounce rate caused by 404 errors.</p>
<p><strong><a href="http://wordpress.org/extend/plugins/google-404/">Google 404</a></strong></p>
<p>This widget makes it easy to embed a Google search box on your custom 404 page.</p>
<p><strong><a href="http://wordpress.org/extend/plugins/useful-404s/">Useful 404s</a></strong></p>
<p>A plugin that creates more useful 404 pages.</p>
<p><strong><a href="http://www.404plugin.com/">The Free 404 Plugin</a></strong></p>
<p>This plugin creates a customized 404 page that includes related posts to whatever keywords appear in the requested URL.</p>
<p><strong><a href="http://www.joehoyle.co.uk/jh-404-logger/">JH 404 Logger</a></strong></p>
<p>This plugin adds a dashboard widget that displays recent 404 errors. It’s a great, unintrusive way to see if your site is returning errors.</p>
<p><strong><a href="http://www.htmlremix.com/projects/wordpress-broken-image-fix">WP 404 Images Fix</a></strong></p>
<p>This plugin lets you replace images returning a 404 error with a default image of your choosing. You also have the option to add a class to the img tag or hide the image entirely if it’s missing.</p>
<p><strong><a href="http://andrewferguson.net/wordpress-plugins/dunstan-style-error-page/">Dunstan-style Error Page</a></strong></p>
<p>This plugin can be used to create a custom error page similar to the one used on Dunstan Orchard’s <a href="http://1976design.com/blog/">1976design.com/blog</a>. The custom page it creates is immensely useful to users, displaying the last five blog posts, a search box, and the option to report the error, among other options.</p>
<p><strong><a href="http://www.microkid.net/wordpress/permalinks-moved-permanently/">Permalinks Moved Permanently</a></strong></p>
<p>This plugin is helpful if you change the permalink structure of your blog and don’t want to lose out on incoming links going to your old pages. In addition to redirecting the visitor to the new link, it also generates a “301 Moved Permanently” error so that visitors are automatically redirected in the future (along with search engine spiders).</p>
<p><strong><a href="http://urbangiraffe.com/plugins/redirection/">Redirection</a></strong></p>
<p>This plugin monitors 404 errors and lets you map them to 301 redirects. It also allows you to set a custom redirection that lets you pass a URL through to a different page, file or website. And it creates a full log of all redirections. It can be used to redirect both nonexistent pages and ones that exist and it can be set to redirect based on login status or other parameters.
<div id="fb-root"></div>
<p><script src="http://connect.facebook.net/en_US/all.js#xfbml=1"></script><!-- Do not remove --></p>
]]></content:encoded>
			<wfw:commentRss>http://designgala.com/10-wp-plugins-to-deal-with-error-404-pages/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
	</channel>
</rss>

