<?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>Web Design Blog &#124; Resources for Web designers and Graphic Designers &#187; Tutorials</title>
	<atom:link href="http://webdesignfan.com/category/tutorials/feed/" rel="self" type="application/rss+xml" />
	<link>http://webdesignfan.com</link>
	<description>A web design blog with Web design tips, development, blogging and photoshop. This is your resource to find the latest info on web designing!</description>
	<lastBuildDate>Thu, 29 Jul 2010 17:19:56 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=4209</generator>
		<item>
		<title>CSS Tips I Wish I Knew When I First Started</title>
		<link>http://webdesignfan.com/css-tips-i-wish-i-knew-when-i-first-started/</link>
		<comments>http://webdesignfan.com/css-tips-i-wish-i-knew-when-i-first-started/#comments</comments>
		<pubDate>Sat, 10 Jul 2010 02:07:55 +0000</pubDate>
		<dc:creator>David Ambler</dc:creator>
				<category><![CDATA[Design]]></category>
		<category><![CDATA[Development]]></category>
		<category><![CDATA[Tutorials]]></category>
		<category><![CDATA[CSS]]></category>
		<guid isPermaLink="false">http://webdesignfan.com/?p=4682</guid>
		<description><![CDATA[I have been working with CSS for many years now, and although it is relatively easy to learn, there are always some tips and tricks that you don&#8217;t know about, and new stuff to be learnt all the time. I wanted to take a moment to give you some tips and tricks that I wish [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://webdesignfan.com/?p=4682"></a><a href="http://webdesignfan.com/wp-content/uploads/2010/07/css-webdesign1.jpg"><img class="alignnone size-full wp-image-4690" title="css-webdesign" src="http://webdesignfan.com/wp-content/uploads/2010/07/css-webdesign1.jpg" alt="css webdesign1 " width="590" height="260" /></a></p>
<p>I have been working with CSS for many years now, and although it is relatively easy to learn, there are always some tips and tricks that you don&#8217;t know about, and new stuff to be learnt all the time. I wanted to take a moment to give you some tips and tricks that I wish I knew when I first started using CSS.</p>
<h1>Resets &amp; Browser Inconsistencies</h1>
<p>It&#8217;s not big secret that not all browsers are created equal. Internet Explorer may show something completely different than Mozilla Firefox. Mozilla Firefox may show something completely different to Apple Safari.</p>
<p>We also don&#8217;t know what the default margin, padding, font-size, etc. are for these browsers. To handle these differences, many CSS developers like to level the playing field by creating a CSS Reset. In the early stages, we would have just used a global reset, which would look like the following:</p>
<p>* { margin: 0; padding: 0; }</p>
<p>It soon became clear that resetting only the margin &amp; padding wasn&#8217;t really enough. Developers started to created a CSS Reset.  <a href="http://meyerweb.com/eric/tools/css/reset/index.html">Eric Meyer</a> created a widely accepted and comprehensive set of reset rules.</p>
<p>html, body, div, span, applet, object, iframe,<br />
h1, h2, h3, h4, h5, h6, p, blockquote, pre,<br />
a, abbr, acronym, address, big, cite, code,<br />
del, dfn, em, font, img, ins, kbd, q, s, samp,<br />
small, strike, strong, sub, sup, tt, var,<br />
dl, dt, dd, ol, ul, li,<br />
fieldset, form, label, legend,<br />
table, caption, tbody, tfoot, thead, tr, th, td {<br />
margin: 0;<br />
padding: 0;<br />
border: 0;<br />
outline: 0;<br />
font-weight: inherit;<br />
font-style: inherit;<br />
font-size: 100%;<br />
font-family: inherit;<br />
vertical-align: baseline;<br />
}</p>
<p>/* remember to define focus styles! */</p>
<p>:focus {</p>
<p>outline: 0;</p>
<p>}</p>
<p>body {</p>
<p>line-height: 1;</p>
<p>color: black;</p>
<p>background: white;</p>
<p>}</p>
<p>ol, ul {</p>
<p>list-style: none;</p>
<p>}</p>
<p>/* tables still need &#8216;cellspacing=&#8221;0&#8243;&#8216; in the markup */</p>
<p>table {</p>
<p>border-collapse: separate;</p>
<p>border-spacing: 0;</p>
<p>}</p>
<p>caption, th, td {</p>
<p>text-align: left;</p>
<p>font-weight: normal;</p>
<p>}</p>
<p>blockquote:before, blockquote:after,</p>
<p>q:before, q:after {</p>
<p>content: &#8220;&#8221;;</p>
<p>}</p>
<p>blockquote, q {</p>
<p>quotes: &#8220;&#8221; &#8220;&#8221;;</p>
<p>}</p>
<p>This has become the most popular CSS reset available today. It is also important to note that some elements have been deliberately excluded from the list, including Input, Button and HR.</p>
<h1>User ‘Overflow: Hidden’ to clear floats</h1>
<p>I always used to use a clearing div to clear any floating divs I was using. This would always look like the following:</p>
<p>.clear { clear:both; }<br />
&lt;div&gt;<br />
&lt;div&gt;&lt;/div&gt;<br />
&lt;div&gt;&lt;/div&gt;<br />
&lt;div&gt;&lt;/div&gt;<br />
&lt;/div&gt;</p>
<p>Although this does work perfectly fine, it can make your code look messy. Instead you can use overflow: hidden on your container div tag. So you could use the following:</p>
<p>#contain { overflow: hidden; }<br />
&lt;div&gt;<br />
&lt;div&gt;&lt;/div&gt;<br />
&lt;div&gt;&lt;/div&gt;<br />
&lt;/div&gt;</p>
<h1>Grouping elements together</h1>
<p>One of the rules of keeping good coding is to keep your code simple, clean and easy to read. This technique helps with readability as well as performance. In the early days, I used to do two or three elements that are doing the same thing, until I found out you can group these elements together.</p>
<p>So instead of writing:</p>
<p>h1 { color: #444; }<br />
h2{ color: #444; }</p>
<p>You can group these elements like so:</p>
<p>h1, h2 { color:#444; }</p>
<h1>Use CSS Shorthand</h1>
<p>Using CSS Shorthand has two beneficial aspects to it, the first one being less code. The second is improving the performance. So instead of writing the following:</p>
<p>body {<br />
font-family: verdana;<br />
font-size: .7em;<br />
line-height: 1.4em;<br />
margin-bottom: 10px;<br />
margin-top: 10px;<br />
}</p>
<p>You can write the same thing with less lines and less coding:</p>
<p>body {<br />
font: normal .7em/1.4em verdana,;<br />
margin: 10px 0;<br />
}</p>
<h1>Box Model &#8211; Margin, Padding &amp; Borders</h1>
<p>The box model is the basis for all layouts. If you use CSS, you need to take the box model into account. It governs the dimensions &amp; spacing of the elements on a page.</p>
<p>All box models have five spacing properties: width, height, padding, margin and border. Width and height are tricky attributes, as they require a bit of calculation. When measuring an element’s width, designers must consider the entire box.</p>
<p>Using the example above, the box has a total width of 260px. The margin, padding, and border are 30px each (remember, that’s 30px on top, 30 on bottom, 30 right, and 30 left). So, in this example, the margin takes up 60 pixels of the box’s width. Likewise, the border and padding consume 60px each. All together, the margin, border, and padding amount to 180 pixels of the box’s total width.</p>
<p>We know that the box’s total width is 260px, but in CSS the width attribute refers to the content area on the inside of the box. So, for this example, we have to subtract 180 pixels (for margin, border, and padding) from 260 (total box width), leaving us with a content area of 80px. Therefore, our CSS looks like this:</p>
<p>div {<br />
margin:30px;<br />
border:30px solid yellow;<br />
padding:30px;<br />
width:80px;<br />
height:80px;<br />
}</p>
<h1>Conditional Comments</h1>
<p>IE is one of the worst browsers to develop CSS for, while most browsers show the same thing about 80% of the time, IE will not. Therefore you will be doing a lot of IE Hacks to make sure your website shows the same in all browsers.</p>
<p>This can take a lot of CSS to accomplish, making your main style sheet larger than it really needs to be. So the easiest way to accomplish this is to use the HTML conditional comments to detect IE browsers and display the CSS.:</p>
<p>&lt;!&#8211;[if IE]&gt;<br />
Target All versions of IE<br />
&lt;![endif]&#8211;&gt;</p>
<p>Using conditional comments to target IE and cut out your hacks will slim down your main style sheet, and help load the page quicker in browsers that don&#8217;t need the correction code.</p>
<h1>That&#8217;s it</h1>
<p>That&#8217;s it for now. I am always learning new stuff, and with CSS3 making its way through, there will more than likely be another tutorial on the way.</p>
]]></content:encoded>
			<wfw:commentRss>http://webdesignfan.com/css-tips-i-wish-i-knew-when-i-first-started/feed/</wfw:commentRss>
		<slash:comments>6</slash:comments>
		</item>
		<item>
		<title>Photoshop Tutorial: Creating A Movie Effect Using Any Object</title>
		<link>http://webdesignfan.com/photoshop-tutorial-creating-a-movie-effect-using-any-object/</link>
		<comments>http://webdesignfan.com/photoshop-tutorial-creating-a-movie-effect-using-any-object/#comments</comments>
		<pubDate>Sat, 19 Jun 2010 00:37:04 +0000</pubDate>
		<dc:creator>Kyle Prior</dc:creator>
				<category><![CDATA[Design]]></category>
		<category><![CDATA[Freebies]]></category>
		<category><![CDATA[News]]></category>
		<category><![CDATA[Tutorials]]></category>
		<guid isPermaLink="false">http://webdesignfan.com/?p=4580</guid>
		<description><![CDATA[Movie effect: make your anything look exiting Lately I’ve been doing some design for a printer cartridge site, and one of the things I realised is how boring printer cartridges are. With a site that sells clothes for example it’s not too hard to make it look sexy, but with printer cartridges it’s close to [...]]]></description>
			<content:encoded><![CDATA[<p><strong>Movie effect: make your anything look exiting</strong></p>
<p>Lately I’ve been doing some design for a printer cartridge site, and one of the things I realised is how boring printer cartridges are. With a site that sells clothes for example it’s not too hard to make it look sexy, but with printer cartridges it’s close to impossible.</p>
<p>So I decided to try to make an image that made printer cartridges look just a bit more exiting, and the result was this:</p>
<p><a href="http://s761.photobucket.com/albums/xx258/hyipcritic/?action=view&amp;current=1.jpg" target="_blank"><img src="http://i761.photobucket.com/albums/xx258/hyipcritic/1.jpg" border="0" alt="Photobucket" title="Photoshop Tutorial: Creating A Movie Effect Using Any Object" /></a></p>
<p>Ok it’s still a printer cartridge, nothing amazing but it does make it a bit more appealing to the eye and this technique would probably work with any product be it toilet role or filing cabinets. So here is how I did it.</p>
<p><strong>Starting out</strong></p>
<p>First I started out with the background image of the pyramids, you can use pretty much any image as long as it has space for your boring product, but the image I used can be found <a href="http://www.sxc.hu/photo/763523">here</a>.  As well as the pyramid image I used a couple of images of random rocks to create the rubble around the base of the cartridge you can find some good quality images on sxc.hu for this, try to look for images that colours match the pyramid image, but we will adjust this later anyway.</p>
<p>The image of the cartridge I took myself, but you can use whatever you want for this.</p>
<p><a href="http://s761.photobucket.com/albums/xx258/hyipcritic/?action=view&amp;current=IMG_0480.jpg" target="_blank"><img src="http://i761.photobucket.com/albums/xx258/hyipcritic/IMG_0480.jpg" border="0" alt="Photobucket" title="Photoshop Tutorial: Creating A Movie Effect Using Any Object" /></a></p>
<p><strong>Preparing the images<br />
</strong>I started by editing the cartridge image, removing the white background is pretty easy but I am using cs5 which makes it a bit easier.</p>
<p><a href="http://s761.photobucket.com/albums/xx258/hyipcritic/?action=view&amp;current=2.jpg" target="_blank"><img src="http://i761.photobucket.com/albums/xx258/hyipcritic/2.jpg" border="0" alt="Photobucket" title="Photoshop Tutorial: Creating A Movie Effect Using Any Object" /></a></p>
<p>Select the item you are using, either with the new quick selection tool, magic wand or manually with the lasso tool. Then go to select &gt; refine edge and smooth out your selection trying to make the edges as neat as possible. Here’s the options I used to get it to look right:</p>
<p><a href="http://s761.photobucket.com/albums/xx258/hyipcritic/?action=view&amp;current=3.jpg" target="_blank"><img src="http://i761.photobucket.com/albums/xx258/hyipcritic/3.jpg" border="0" alt="Photobucket" title="Photoshop Tutorial: Creating A Movie Effect Using Any Object" /></a></p>
<p>Once you think you’ve got it right click ok and it will change the selection you previously made. Invert the selection (select &gt;inverse) and hit delete on your keyboard. This should get rid of most if not all of your background. You should end up with something similar to the image below.</p>
<p><a href="http://s761.photobucket.com/albums/xx258/hyipcritic/?action=view&amp;current=4.jpg" target="_blank"><img src="http://i761.photobucket.com/albums/xx258/hyipcritic/4.jpg" border="0" alt="Photobucket" title="Photoshop Tutorial: Creating A Movie Effect Using Any Object" /></a></p>
<p>Next you need to tidy the image up a bit, get rid of any background left over with the eraser and smooth out any edges.</p>
<p>Now you want to open up your pyramid image within Photoshop. Copy your cartridge (or other item) and paste it in the pyramid image, scale it to whatever size you like and rotate it. From here onwards you have as much freedom as you like, so here’s what I’ve got so far.</p>
<p><a href="http://s761.photobucket.com/albums/xx258/hyipcritic/?action=view&amp;current=5.jpg" target="_blank"><img src="http://i761.photobucket.com/albums/xx258/hyipcritic/5.jpg" border="0" alt="Photobucket" title="Photoshop Tutorial: Creating A Movie Effect Using Any Object" /></a></p>
<p>Next we want to edit the cartridges colours so that they match the deserts bright and exotic colours. Select the cartridge layer and go to image&gt;adjustments&gt;color balance and an adjustment window will pop up, if you are using the pyramid image you will want to bring up the yellow and possibly a bit of red. After doing this go to image&gt;adjustment&gt;Hue/Saturation and bring down the saturation to about -20 and click ok.</p>
<p>Something else I realised I needed to do was adjust the lighting on the cartridge, the light source in the pyramid image is coming from the left and the cartridge had a light source from above/front. All I did to make the cartridge look right was select the part of the cartridge that should have been darker and create a new layer and fill the selection with black.</p>
<p><a href="http://s761.photobucket.com/albums/xx258/hyipcritic/?action=view&amp;current=6.jpg" target="_blank"><img src="http://i761.photobucket.com/albums/xx258/hyipcritic/6.jpg" border="0" alt="Photobucket" title="Photoshop Tutorial: Creating A Movie Effect Using Any Object" /></a></p>
<p>Then change the new layers blend mode to soft light, hopefully you should end up with a cartridge that looks a bit more like it is in the background image.</p>
<p>For the next step we want to ‘bury’ the cartridge, so you will need to merge the cartridge layer with the black filled layer, to do this select both layers in the layers panel right click and select merge layers. Name this merged layer ‘cartridge’ and then add a layer mask (layer&gt;layer mask&gt;reveal all).</p>
<p>By using a layer mask you can hide parts of a layer without erasing or deleting them. Just make sure you have the layer mask selected and use a black paintbrush to hide the bottom section of the cartridge, try to make it as rough and natural as you can, although we will be adding rubble round the base of the cartridge soon. You should now have something looking like this hopefully:</p>
<p><a href="http://s761.photobucket.com/albums/xx258/hyipcritic/?action=view&amp;current=7.jpg" target="_blank"><img src="http://i761.photobucket.com/albums/xx258/hyipcritic/7.jpg" border="0" alt="Photobucket" title="Photoshop Tutorial: Creating A Movie Effect Using Any Object" /></a></p>
<p>Now we need to add the rubble round the base of the cartridge, this will help the cartridge blend in a bit more and look like it’s in the picture. All I did for this stage was grab a couple of images of rubble and copy and paste separate rocks/stones until I thought it looked right, the secret behind this was getting rocks that were roughly the same color as the desert. Try to create something similar to what I’ve done below.</p>
<p><a href="http://s761.photobucket.com/albums/xx258/hyipcritic/?action=view&amp;current=8.jpg" target="_blank"><img src="http://i761.photobucket.com/albums/xx258/hyipcritic/8.jpg" border="0" alt="Photobucket" title="Photoshop Tutorial: Creating A Movie Effect Using Any Object" /></a></p>
<p>Once you think your rubble is looking right we need to add a shadow. As you can see if you are using the same pyramid image as I am, the guy with the camels is casting some quite big shadows; we need to do the same with the cartridge, so here’s how.</p>
<p>Make a selection of your cartridge layer (ctrl click on the layer) and then create a new blank layer and fill the selection with black. Deselect, and then you want to distort the layer (edit&gt;transform&gt;distort) so that it matches the angle of the camel shadows.</p>
<p><a href="http://s761.photobucket.com/albums/xx258/hyipcritic/?action=view&amp;current=9.jpg" target="_blank"><img src="http://i761.photobucket.com/albums/xx258/hyipcritic/9.jpg" border="0" alt="Photobucket" title="Photoshop Tutorial: Creating A Movie Effect Using Any Object" /></a></p>
<p>You may also want to warp the layer so that it doesn’t look so straight and fake. Once it roughly matches you then need to lower the opacity of the layer until again it matches that of the shadow, I went down to 30% to get it right. Then we want to blur the edges, go to Filter&gt;Blur&gt;Gaussian Blur and set the radius to about 2.5 pixels. Finally make a selection of the cartridge layer again (ctrl click on the layer in the layers panel) click on the shadow layer and hit the delete. This will get rid of any of the shadow that overlaps the cartridge, and should leave you with something similar to this:</p>
<p><a href="http://s761.photobucket.com/albums/xx258/hyipcritic/?action=view&amp;current=10.jpg" target="_blank"><img src="http://i761.photobucket.com/albums/xx258/hyipcritic/10.jpg" border="0" alt="Photobucket" title="Photoshop Tutorial: Creating A Movie Effect Using Any Object" /></a></p>
<p>That’s the image almost finished, you could leave it like it is if you wanted, but next we will add some effects.</p>
<p>Merge all the layers apart from the background layer, to do this select them in the layers panel, right click and select merge layers. Now with the merged layer selected go to image&gt;adjustments&gt;hue/saturation and lower the saturation to around -20 and click ok. With the same layer selected go to image&gt;adjustments&gt;exposure and apply the following settings:</p>
<p><a href="http://s761.photobucket.com/albums/xx258/hyipcritic/?action=view&amp;current=11.jpg" target="_blank"><img src="http://i761.photobucket.com/albums/xx258/hyipcritic/11.jpg" border="0" alt="Photobucket" title="Photoshop Tutorial: Creating A Movie Effect Using Any Object" /></a></p>
<p>You should end up with something similar to this:</p>
<p><a href="http://s761.photobucket.com/albums/xx258/hyipcritic/?action=view&amp;current=12.jpg" target="_blank"><img src="http://i761.photobucket.com/albums/xx258/hyipcritic/12.jpg" border="0" alt="Photobucket" title="Photoshop Tutorial: Creating A Movie Effect Using Any Object" /></a></p>
<p>Now duplicate the layer and add a lens blur (filter&gt;blur&gt;lens blur) with the following settings:</p>
<p><a href="http://s761.photobucket.com/albums/xx258/hyipcritic/?action=view&amp;current=13.jpg" target="_blank"><img src="http://i761.photobucket.com/albums/xx258/hyipcritic/13.jpg" border="0" alt="Photobucket" title="Photoshop Tutorial: Creating A Movie Effect Using Any Object" /></a></p>
<p>Apply the lens blur and add a layer mask to this layer (layer&gt;layer mask&gt;reveal all),set your foreground color to black and then use your paintbrush tool (I used 1000px size with 0% hardness) to make the parts of the image clearer as if the camera is focusing on the object. You should get something like this:</p>
<p><a href="http://s761.photobucket.com/albums/xx258/hyipcritic/?action=view&amp;current=14.jpg" target="_blank"><img src="http://i761.photobucket.com/albums/xx258/hyipcritic/14.jpg" border="0" alt="Photobucket" title="Photoshop Tutorial: Creating A Movie Effect Using Any Object" /></a></p>
<p>Now we can move onto the final step. Create a new layer and fill it with black, reduce the layer opacity to 30% and add a layer mask. Do the same as you did with the lens blur layer and use a brush to hide some of the layer; again you want it to look like the cartridge is the centre of attention.</p>
<p>If everything went to plan then you should have ended up with an image similar to the one below.</p>
<p><a href="http://s761.photobucket.com/albums/xx258/hyipcritic/?action=view&amp;current=15.jpg" target="_blank"><img src="http://i761.photobucket.com/albums/xx258/hyipcritic/15.jpg" border="0" alt="Photobucket" title="Photoshop Tutorial: Creating A Movie Effect Using Any Object" /></a></p>
<p>Hope you enjoyed the tutorial and have learnt something useful!</p>
<p><strong> </strong></p>
]]></content:encoded>
			<wfw:commentRss>http://webdesignfan.com/photoshop-tutorial-creating-a-movie-effect-using-any-object/feed/</wfw:commentRss>
		<slash:comments>8</slash:comments>
		</item>
		<item>
		<title>20 Best WordPress Tutorial Blogs</title>
		<link>http://webdesignfan.com/20-best-wordpress-tutorial-blogs/</link>
		<comments>http://webdesignfan.com/20-best-wordpress-tutorial-blogs/#comments</comments>
		<pubDate>Fri, 30 Apr 2010 21:44:52 +0000</pubDate>
		<dc:creator>Dzinerfusion.com</dc:creator>
				<category><![CDATA[Blogging]]></category>
		<category><![CDATA[Development]]></category>
		<category><![CDATA[Inspiration]]></category>
		<category><![CDATA[News]]></category>
		<category><![CDATA[Tutorials]]></category>
		<category><![CDATA[WordPress]]></category>
		<category><![CDATA[wordpres tutorial blog]]></category>
		<category><![CDATA[wordpress tutorials]]></category>
		<guid isPermaLink="false">http://webdesignfan.com/?p=3959</guid>
		<description><![CDATA[WordPress is one of the most popular CMS and blogging platform around, mainly because it is free and it is 100% customizable ( This blog is run on WordPress). Today, I will showcase 20 of the best WordPress Tutorial Blogs that have written many wonderful and insightful articles with various tips that either helped me [...]]]></description>
			<content:encoded><![CDATA[<p><strong>WordPress</strong> is one of the most popular CMS and blogging platform around, mainly because it is free and it is 100% customizable ( This blog is run on WordPress). Today, I will showcase 20 of the <strong>best WordPress Tutorial Blogs</strong> that have written many wonderful and insightful articles with various tips that either helped me optimize my blog for SEO, helped secure my <strong>wordpress installion from hackers</strong>, to finding the <strong>best WordPress themes</strong> , or even creating my own WordPress theme for my blog. As always, we have tried to collect the best resources for you readers, but there are too many<strong> high quality sources</strong> to list them all!  Please note they are not in any particular order. Enjoy!</p>
<h3>1. WpRecipes.com</h3>
<p><a rel="nofollow" href="http://www.wprecipes.com/" target="_blank"><img class="alignnone size-full wp-image-4203" title="WpRecipes.com" src="http://webdesignfan.com/wp-content/uploads/2010/04/WpRecipes.com_.jpg" alt="WpRecipes.com  " width="590" height="304" /></a></p>
<p>Wprecipes.com has a huge collection of <strong>wordpress tips </strong>and is updated frequently. It gives a lot of advice to help you customize and hack your existing theme to its full potential.</p>
<h3>2.Themeshaper.com</h3>
<p><a rel="nofollow" href="http://themeshaper.com/blog/" target="_blank"><img class="alignnone size-full wp-image-4197" title="wordpress-tutorials-ThemeShaper" src="http://webdesignfan.com/wp-content/uploads/2010/04/wordpress-tutorials-ThemeShaper.png" alt="wordpress tutorials ThemeShaper " width="590" height="316" /></a></p>
<p>Themeshaper.com is a great resource for everything about WordPress Themes. They have a great collection of themes to download, and offer great advice on crating your own WordPress theme.</p>
<h3><strong>3.Net.tutsplus.com</strong></h3>
<p><a rel="nofollow" href="http://www.Net.tutsplus.com/category/tutorials/wordpress/" target="_blank"><img class="alignnone size-full wp-image-4194" title="WordPress-tutorials-Nettuts" src="http://webdesignfan.com/wp-content/uploads/2010/04/WordPress-tutorials-Nettuts.jpg" alt="WordPress tutorials Nettuts " width="590" height="273" /></a></p>
<p>With the Tutsplus Network, they have a section dedicated to<strong> WordPress Tutorials</strong>. As always, Envato and the Tutplus.com network always offer innovative and unique tutorials that will make it easy to make your WordPress blog that much better.</p>
<h3>4.Themeplayground.com</h3>
<p><a rel="nofollow" href="http://themeplayground.com/" target="_blank"><img class="alignnone size-full wp-image-4201" title="wordpress-tuts-Theme-Playground" src="http://webdesignfan.com/wp-content/uploads/2010/04/wordpress-tuts-Theme-Playground.png" alt="wordpress tuts Theme Playground " width="590" height="282" /></a></p>
<p>Themeplayground also offers a great collection of articles that help you design your own WordPress themes, and also offer some wordpress themes.</p>
<h3>5.Problogdesign.com</h3>
<p><a rel="nofollow" href="http://www.problogdesign.com/" target="_blank"><img class="alignnone size-full wp-image-4190" title="wordpress-themes-Pro-Blog-Design" src="http://webdesignfan.com/wp-content/uploads/2010/04/wordpress-themes-Pro-Blog-Design.jpg" alt="wordpress themes Pro Blog Design " width="590" height="302" /></a></p>
<p>Problogdesign is your destination for the best tips on writing the best articles for your blog, and optimizing your blog with SEO implementations. They have a whole category dedicated to WordPress articles.</p>
<h3>6.Hongkiat.com</h3>
<p><a rel="nofollow" href="http://www.hongkiat.com/blog/category/wordpress/" target="_blank"><img class="alignnone size-full wp-image-4186" title="wordpress-Online-Tips-for-Tech-Users" src="http://webdesignfan.com/wp-content/uploads/2010/04/wordpress-Online-Tips-for-Tech-Users.jpg" alt="wordpress Online Tips for Tech Users " width="590" height="263" /></a></p>
<p>Hongkiat offers a lot of <strong>WordPress tutorial</strong> articles,  and showcases many amazing wordpress themes to download.</p>
<h3>7.Lorelle.wordpress.com</h3>
<p><a rel="nofollow" href="http://lorelle.wordpress.com/category/wordpress-tips/" target="_blank"><img class="alignnone size-full wp-image-4193" title="WordPress-tutorials-Lorelle-on-WordPress" src="http://webdesignfan.com/wp-content/uploads/2010/04/WordPress-tutorials-Lorelle-on-WordPress.png" alt="WordPress tutorials Lorelle on WordPress " width="590" height="301" /></a></p>
<p>Lorelle.wordpress.com has an archives of thousands of insightful blogging tips on WordPress. Although not updated frequently, this is still great source of information on WordPress tutorials.</p>
<h3>8.Wp-tutorials.org</h3>
<p><a rel="nofollow" href="http://www.wp-tutorials.org/" target="_blank"><img class="alignnone size-full wp-image-4206" title="wp-tutorials" src="http://webdesignfan.com/wp-content/uploads/2010/04/wp-tutorials.png" alt="wp tutorials " width="590" height="294" /></a></p>
<p>Wp-tutorials.org, as implied by the name is an rss aggregator on the latest wordpress tutorials and tips from various blogs.</p>
<h3>9.Themelab.com</h3>
<p><a rel="nofollow" href="http://www.themelab.com/wordpress-tutorials/" target="_blank"><img class="alignnone size-full wp-image-4196" title="WordPress-tutorials-themelab" src="http://webdesignfan.com/wp-content/uploads/2010/04/WordPress-tutorials-themelab.jpg" alt="WordPress tutorials themelab " width="590" height="297" /></a></p>
<p>Themelab is a great wordpress design blog, that offers its premium wordpress themes, and also has a tutorial section that will definitely be informational and helpful to readers.</p>
<h3>10.WordPress.tv</h3>
<p><a rel="nofollow" href="http://wordpress.tv/category/how-to/" target="_blank"><img class="alignnone size-full wp-image-4200" title="wordpress-tuts-How-ToWordPress.tv" src="http://webdesignfan.com/wp-content/uploads/2010/04/wordpress-tuts-How-ToWordPress.tv_.png" alt="wordpress tuts How ToWordPress.tv  " width="590" height="299" /></a></p>
<p>This is WordPress&#8217; official site, which offers wordpress tutorials in a video format, for those who like viewing than reading info.</p>
<h3>11.Wpdesigner.com</h3>
<p><a rel="nofollow" href="http://www.wpdesigner.com/" target="_blank"><img class="alignnone size-full  wp-image-4202" title="WPDesigner.com-wordpress" src="http://webdesignfan.com/wp-content/uploads/2010/04/WPDesigner.com-wordpress.jpg" alt="WPDesigner.com wordpress " width="590" height="258" /></a></p>
<p>Wpdesigner.com is a great resource for those who want to design their own WordPress theme. <a href="http://www.wpdesigner.com/2007/02/19/so-you-want-to-create-wordpress-themes-huh/" target="_blank">Here</a> is an example of one of their most helpful posts for me when I wanted to experience designing my own WordPress theme.</p>
<h3>12.iThemes.com</h3>
<p><a rel="nofollow" href="http://ithemes.com/tutorials/" target="_blank"><img class="alignnone size-full wp-image-4184" title="wordpress-iThemes" src="http://webdesignfan.com/wp-content/uploads/2010/04/wordpress-iThemes.jpg" alt="wordpress iThemes " width="590" height="328" /></a></p>
<p>iThemes.com offers a variety of interesting wordpress themes you might find of interest. They have a Tutorial Section I was really interested in <a href="http://ithemes.com/tutorials/" target="_blank">here</a>.</p>
<h3>13.Webdesignerwall.com</h3>
<p><a rel="nofollow" href="http://www.webdesignerwall.com/tag/wordpress/" target="_blank"><img class="alignnone size-full wp-image-4198" title="WordPress-tutorials-webdesignwall" src="http://webdesignfan.com/wp-content/uploads/2010/04/WordPress-tutorials-webdesignwall.jpg" alt="WordPress tutorials webdesignwall " width="590" height="268" /></a></p>
<p>Webdesignwall.com is primarily a blog about webdesign, but they also have a useful area about WordPress.</p>
<h3>14.Speckyboy.com</h3>
<p><a rel="nofollow" href="http://speckyboy.com/category/wordpress/" target="_blank"><img class="alignnone size-full wp-image-4195" title="WordPress-tutorials-Speckyboy-Design-Magazine" src="http://webdesignfan.com/wp-content/uploads/2010/04/WordPress-tutorials-Speckyboy-Design-Magazine.png" alt="WordPress tutorials Speckyboy Design Magazine " width="590" height="271" /></a></p>
<p>Speckyboy is a design magazine that has a section dedicated to WordPress also. Some of the tutorials are very useful in finding a great wordpress theme.</p>
<h3>15.DigWp.com</h3>
<p><a href="http://www.digwp.com"><img class="alignnone size-full wp-image-4311" title="wordpress-tutorials-digwp" src="http://webdesignfan.com/wp-content/uploads/2010/04/wordpress-tutorials-digwp.jpg" alt="wordpress tutorials digwp " width="590" height="305" /></a></p>
<p>Digwp is an active blog dedicated to wordpress, and created by Chris Coyier and Jeff Starr really give some great tips on customizing your blog.</p>
<h3>16.Bloggingpro.com</h3>
<p><a rel="nofollow" href="http://www.bloggingpro.com/archives/tag/wordpress/" target="_blank"><img class="alignnone size-full wp-image-4191" title="WordPress-tutorials-BloggingPro" src="http://webdesignfan.com/wp-content/uploads/2010/04/WordPress-tutorials-BloggingPro.jpg" alt="WordPress tutorials BloggingPro " width="590" height="298" /></a></p>
<p>Bloggingpro is your site to find useful articles on blogging effectively, with tips to help communicate your message more effectively.</p>
<h3>17.Instantshift.com</h3>
<p><a rel="nofollow" href="http://www.instantshift.com/category/wordpress/" target="_blank"><img class="alignnone size-full wp-image-4192" title="WordPress-tutorials-instantshift8" src="http://webdesignfan.com/wp-content/uploads/2010/04/WordPress-tutorials-instantshift8.jpg" alt="WordPress tutorials instantshift8 " width="590" height="299" /></a></p>
<p>Instanshift is another huge and active blog that has a section with great articles on WordPress.</p>
<h3>18.Smashingmagazine.com</h3>
<p><a rel="nofollow" href="http://www.smashingmagazine.com/tag/wordpress/" target="_blank"><img class="alignnone size-full wp-image-4187" title="wordpress-Smashing-Magazine" src="http://webdesignfan.com/wp-content/uploads/2010/04/wordpress-Smashing-Magazine.png" alt="wordpress Smashing Magazine " width="590" height="269" /></a></p>
<p>SmashingMagazine is one of my favorite place to find quality themes , and also checking out their Smashing Netowrk on the latest WordPress articles they have to offer.</p>
<h3>19.Noupe.com</h3>
<p><a rel="nofollow" href="http://www.noupe.com/category/wordpress" target="_blank"><img class="alignnone size-full wp-image-4185" title="wordpress-Noupe" src="http://webdesignfan.com/wp-content/uploads/2010/04/wordpress-Noupe.jpg" alt="wordpress Noupe " width="590" height="291" /></a></p>
<p>Noupe shows us unique ways to take full advantage of the robust WordPress platform, with articles showing us how to fully utilize WordPress more as a CMS then a blogging platform.</p>
<h3>20.Wpengineer.com</h3>
<p><a rel="nofollow" href="http://wpengineer.com/" target="_blank"><img class="alignnone size-full wp-image-4199" title="WordPress--Tutorials-WP-Engineer" src="http://webdesignfan.com/wp-content/uploads/2010/04/WordPress-Tutorials-WP-Engineer.jpg" alt="WordPress Tutorials WP Engineer " width="590" height="276" /></a></p>
<p>WpEngineer is a developer&#8217;s resource with <strong>WordPress Tutorials</strong> that help Theme Develops and coders to implement more features into their themes. This is a whole blog dedicated to WordPress, not just a section, so you can be sure to find articles that will help you on everything for adding a metabox, to optimizing your coding.</p>
<p>That is it for today, and I hope you found that these <strong>WordPress tutorial blogs</strong> were helpful to you, by finding a new theme, finding a way to hack  your own, or finally taking that extra step to develop your first WordPress plugin or Theme.</p>
]]></content:encoded>
			<wfw:commentRss>http://webdesignfan.com/20-best-wordpress-tutorial-blogs/feed/</wfw:commentRss>
		<slash:comments>16</slash:comments>
		</item>
		<item>
		<title>10 High Quality Business Card Design Tutorials</title>
		<link>http://webdesignfan.com/business-card-design-tutorials/</link>
		<comments>http://webdesignfan.com/business-card-design-tutorials/#comments</comments>
		<pubDate>Thu, 15 Apr 2010 18:23:40 +0000</pubDate>
		<dc:creator>Tomas Laurinavičius</dc:creator>
				<category><![CDATA[Design]]></category>
		<category><![CDATA[Tutorials]]></category>
		<category><![CDATA[Business Card]]></category>
		<category><![CDATA[Photoshop]]></category>
		<guid isPermaLink="false">http://webdesignfan.com/?p=3961</guid>
		<description><![CDATA[Modern designer must have creative and attractive business card to be successful. Business card design must be unique and call to take an action and hire you. I think the best business card is simple and not overladen with useless information.]]></description>
			<content:encoded><![CDATA[<p>Modern designer must have creative and attractive business card to be successful. Business card design must be unique and call to take an action and hire you. I think the best business card is simple and not overladen with useless information.</p>
<p>You can find a lot of tutorials for creating business card but some of them are quite old and don&#8217;t look attractive. Here I have collected 10 best looking business card design tutorials. They are very detailed and high quality. You will learn useful design techniques and gain some experience in graphic design.</p>
<h4><a href="http://spyrestudios.com/bokeh-business-card/">How To Create A Sweet  Bokeh Business Card In Photoshop</a></h4>
<p><a href="http://spyrestudios.com/bokeh-business-card/"><img class="size-full wp-image-3962 alignnone" title="10 High Quality Business Card Design Tutorials" src="http://webdesignfan.com/wp-content/uploads/2010/04/01_high_quality_business_card_design_tutorials-bokeh-business-card.jpg" alt="10 High Quality Business Card Design Tutorials" width="560" height="320" /></a></p>
<p>In this Photoshop tutorial you will learn how to create a  double-sided business card that features Bokeh and abstract effects.</p>
<h4><a href="http://psd.tutsplus.com/tutorials/designing-tutorials/making-a-print-ready-business-card-using-only-photoshop/">Making a Print-Ready Business Card Using Only  Photoshop</a></h4>
<p><a href="http://psd.tutsplus.com/tutorials/designing-tutorials/making-a-print-ready-business-card-using-only-photoshop/"><img class="size-full wp-image-3965 alignnone" title="10 High Quality Business Card Design Tutorials" src="http://webdesignfan.com/wp-content/uploads/2010/04/02_high_quality_business_card_design_tutorials-print-ready-business-card.jpg" alt="10 High Quality Business Card Design Tutorials" width="560" height="222" /></a></p>
<p>In this tutorial you will see how to design a simple business card in  Photoshop and get it ready for print with crop marks and bleed.</p>
<h4><a href="http://www.blog.spoongraphics.co.uk/tutorials/design-a-print-ready-business-card-for-designers">Design a Print Ready Business Card for Designers</a></h4>
<p><a href="http://www.blog.spoongraphics.co.uk/tutorials/design-a-print-ready-business-card-for-designers"><img class="size-full wp-image-3970 alignnone" title="10 High Quality Business Card Design Tutorials" src="http://webdesignfan.com/wp-content/uploads/2010/04/03_high_quality_business_card_design_tutorials-card-for-designers.jpg" alt="10 High Quality Business Card Design Tutorials" width="560" height="320" /></a></p>
<p>Follow this  walkthrough in Adobe Photoshop, Adobe Illustrator and Adobe InDesign to  create your own double sided business card design, resulting in a  print-ready file to send to your favoured print firm.</p>
<h4><a href="http://creativeoverflow.net/creating-a-colorful-vibrant-business-card/">Creating a Colorful Vibrant Business Card</a></h4>
<p><a href="http://creativeoverflow.net/creating-a-colorful-vibrant-business-card/"><img class="size-full wp-image-3975 alignnone" title="10 High Quality Business Card Design Tutorials" src="http://webdesignfan.com/wp-content/uploads/2010/04/04_high_quality_business_card_design_tutorials-vibrant-business-card.jpg" alt="10 High Quality Business Card Design Tutorials" width="560" height="320" /></a></p>
<p>This tutorial is really simple to follow  to create yourself a really colorful and vibrant business card.</p>
<h4><a href="http://luxa.org/tutorial_making_a_grungy_business_card.php">Making a Grungy Business Card</a></h4>
<p><a href="http://luxa.org/tutorial_making_a_grungy_business_card.php"><img class="size-full wp-image-3980 alignnone" title="10 High Quality Business Card Design Tutorials" src="http://webdesignfan.com/wp-content/uploads/2010/04/05_high_quality_business_card_design_tutorials-grungy_business_card.jpg" alt="10 High Quality Business Card Design Tutorials" width="560" height="320" /></a></p>
<p>This  tutorial will walk you through setting up a vertical grungy business  card template, front to back and ready to print.</p>
<h4><a href="http://webexpedition18.com/articles/design-slick-print-ready-business-card-using-photoshop/">Design  Slick Print Ready Business Card Using Photoshop</a></h4>
<p><a href="http://webexpedition18.com/articles/design-slick-print-ready-business-card-using-photoshop/"><img class="aligncenter size-full wp-image-3983" title="10 High Quality Business Card Design Tutorials" src="http://webdesignfan.com/wp-content/uploads/2010/04/06_high_quality_business_card_design_tutorials-slick-print-ready-business-card.jpg" alt="10 High Quality Business Card Design Tutorials" width="560" height="312" /></a></p>
<p>This tutorial will show you how to design your own double sided business  card in Photoshop and get it ready for print.</p>
<h4><a title="Permanent Link to Create a Slick Business Card  Design with Stunning Typography" rel="bookmark" href="http://sixrevisions.com/tutorials/photoshop-tutorials/create-a-slick-business-card-design-with-stunning-typography/">Create a Slick Business Card Design  with Stunning Typography</a></h4>
<p><a href="http://sixrevisions.com/tutorials/photoshop-tutorials/create-a-slick-business-card-design-with-stunning-typography/"><img class="aligncenter size-full wp-image-3986" title="10 High Quality Business Card Design Tutorials" src="http://webdesignfan.com/wp-content/uploads/2010/04/07_high_quality_business_card_design_tutorials-business-card-design-with-stunning-typography.jpg" alt="10 High Quality Business Card Design Tutorials" width="560" height="312" /></a>This graphic design tutorial will show you a  way to create a standard two-sided business card design in Adobe  Photoshop that you can take to your printer.</p>
<h4><a href="http://becreativemagazine.com/2010/02/tutorial-how-to-create-print-ready-standard-size-business-cards/">How To Create Print Ready Standard Size Business  Cards</a></h4>
<p><a href="http://becreativemagazine.com/2010/02/tutorial-how-to-create-print-ready-standard-size-business-cards/"><img class="aligncenter size-full wp-image-3989" title="10 High Quality Business Card Design Tutorials" src="http://webdesignfan.com/wp-content/uploads/2010/04/08_high_quality_business_card_design_tutorials-standard-size-business-card.jpg" alt="10 High Quality Business Card Design Tutorials" width="560" height="312" /></a></p>
<p>In this tutorial  you will learn how to create print ready standard size business cards  with Photoshop.  If you follow these guidelines you&#8217;ll soon be able to  create your own business cards.</p>
<h4><a href="http://circleboxblog.com/2009/tutorials/how-to-design-an-abstract-business-card-in-photoshop/">How to Design an Abstract Business Card in Photoshop</a></h4>
<p><a href="http://circleboxblog.com/2009/tutorials/how-to-design-an-abstract-business-card-in-photoshop/"><img class="aligncenter size-full wp-image-3992" title="10 High Quality Business Card Design Tutorials" src="http://webdesignfan.com/wp-content/uploads/2010/04/09_high_quality_business_card_design_tutorials-abstract-business-card.jpg" alt="10 High Quality Business Card Design Tutorials" width="560" height="312" /></a></p>
<p>In this tutorial you will learn how to design an abstract business  card using a combination of Adobe Illustrator and Photoshop.</p>
<h4><a href="http://www.blog.spoongraphics.co.uk/tutorials/business-card-design-project-walkthrough">Business Card Design Project Walkthrough</a></h4>
<p><a href="http://www.blog.spoongraphics.co.uk/tutorials/business-card-design-project-walkthrough"><img class="aligncenter size-full wp-image-3995" title="10 High Quality Business Card Design Tutorials" src="http://webdesignfan.com/wp-content/uploads/2010/04/10_high_quality_business_card_design_tutorials-business-card-design.jpg" alt="10 High Quality Business Card Design Tutorials" width="560" height="312" /></a></p>
<p>Let’s look at process for creating the final concept of this  business card, resulting in the finished printed product.</p>
<p><em><strong>Stay tuned for future freebies and useful design stuff. You can follow  WebDesignFan on </strong><strong><a href="http://twitter.com/webdesignfan" target="_blank">Twitter</a> and  subscribe to the RSS feed </strong><strong><a href="http://feeds.feedburner.com/webdesignfan" target="_blank">here</a>.</strong></em></p>
]]></content:encoded>
			<wfw:commentRss>http://webdesignfan.com/business-card-design-tutorials/feed/</wfw:commentRss>
		<slash:comments>14</slash:comments>
		</item>
		<item>
		<title>Bokeh Effect in Web Design: Showcase, Tutorials and Resources</title>
		<link>http://webdesignfan.com/bokeh-effect-in-web-design/</link>
		<comments>http://webdesignfan.com/bokeh-effect-in-web-design/#comments</comments>
		<pubDate>Sat, 13 Mar 2010 17:27:37 +0000</pubDate>
		<dc:creator>Tomas Laurinavičius</dc:creator>
				<category><![CDATA[Design]]></category>
		<category><![CDATA[Freebies]]></category>
		<category><![CDATA[Tutorials]]></category>
		<category><![CDATA[Bokeh]]></category>
		<category><![CDATA[Photoshop]]></category>
		<category><![CDATA[Resources]]></category>
		<category><![CDATA[Showcase]]></category>
		<category><![CDATA[Textures]]></category>
		<category><![CDATA[Webdesign]]></category>
		<guid isPermaLink="false">http://webdesignfan.com/?p=3645</guid>
		<description><![CDATA[In this article you will find inspirational showcase of beautiful and very colorful websites with bokeh effect. Also you'll be able to learn different bokeh effect techniques by checking listed useful and detailed tutorials. For the conclusion you will find a lot of great bokeh resources.]]></description>
			<content:encoded><![CDATA[<p>Today I would like to present the use of bokeh effect in web design. But what is Bokeh?</p>
<p><em>In photography, <strong>bokeh</strong> is the blur, or the aesthetic quality of the blur, in out-of-focus areas of an image, or &#8220;the way the lens renders out-of-focus points of light</em>&#8220;. &#8211; <a href="http://en.wikipedia.org/wiki/Bokeh"><strong>Wikipedia</strong></a>.</p>
<p>In this article you will find <strong>inspirational showcase of beautiful and very colorful websites with bokeh effect</strong>. Also you&#8217;ll be able to learn different bokeh effect techniques by checking listed useful and <strong>detailed tutorials</strong>. For the conclusion you will find a lot of <strong>great bokeh resources</strong>.</p>
<h3>Showcase of Bokeh Effect in Web Design</h3>
<p>Wonderful bokeh effect looks very impressive in web design projects. Colorful and abstract bokeh effect gives beautiful, mystery and memorable look for any web project.</p>
<p>In this showcase you will find over 20 beautiful examples of bokeh effect in web design. Some of the featured designs are for sale, so if you like this effect you can buy a website template or even a wordpress theme.</p>
<h5><a href="http://themeforest.net/item/hybrid-wordpress-modern-portfolio-or-corporate/full_screen_preview/90602?ref=Dzinerfusion">Hybrid WordPress Theme ($32)</a></h5>
<p><a href="http://themeforest.net/item/hybrid-wordpress-modern-portfolio-or-corporate/full_screen_preview/90602?ref=Dzinerfusion"><img class="aligncenter size-full wp-image-3673" title="Bokeh Effect in Web Design: Showcase, Tutorials and Resources - Hybrid WordPress Theme" src="http://webdesignfan.com/wp-content/uploads/2010/03/bokeh_effect_in_web_design-hybrid-wordpress.jpg" alt="Bokeh Effect in Web Design: Showcase, Tutorials and Resources - Hybrid WordPress Theme" width="590" height="340" /></a></p>
<h5><a href="http://www.jinsonathemes.com/demo/?themedemo=mintozine">Mintozine WordPress Theme (Free)</a></h5>
<p><a href="http://www.jinsonathemes.com/demo/?themedemo=mintozine"><img class="aligncenter size-full wp-image-3718" title="Bokeh Effect in Web Design: Showcase, Tutorials and Resources - Mintozine WordPress Theme" src="http://webdesignfan.com/wp-content/uploads/2010/03/bokeh_effect_in_web_design-mintozine.jpg" alt="Bokeh Effect in Web Design: Showcase, Tutorials and Resources - Mintozine WordPress Theme" width="590" height="293" /></a></p>
<h5><a href="http://envato.com/">Envato</a></h5>
<p><a href="http://envato.com/"><img class="aligncenter size-full wp-image-3648" title="Bokeh Effect in Web Design: Showcase, Tutorials and Resources - Envato" src="http://webdesignfan.com/wp-content/uploads/2010/03/bokeh_effect_in_web_design-envato.jpg" alt="Bokeh Effect in Web Design: Showcase, Tutorials and Resources - Envato" width="590" height="340" /></a></p>
<h5><a href="http://themeforest.net/item/theme-bokeh/full_screen_preview/84112?ref=Dzinerfusion">Theme Bokeh ($14)</a></h5>
<p><a href="http://themeforest.net/item/theme-bokeh/full_screen_preview/84112?ref=Dzinerfusion"><img class="aligncenter size-full wp-image-3661" title="Bokeh Effect in Web Design: Showcase, Tutorials and Resources - Theme Bokeh" src="http://webdesignfan.com/wp-content/uploads/2010/03/bokeh_effect_in_web_design-theme-bokeh.jpg" alt="Bokeh Effect in Web Design: Showcase, Tutorials and Resources - Theme Bokeh" width="590" height="314" /></a><a href="http://lisamoseley.com/"></a></p>
<h5><a href="http://lisamoseley.com/">Lisa Maya</a></h5>
<p><a href="http://lisamoseley.com/"><img class="aligncenter size-full wp-image-3655" title="Bokeh Effect in Web Design: Showcase, Tutorials and Resources - Lisa Maya" src="http://webdesignfan.com/wp-content/uploads/2010/03/bokeh_effect_in_web_design-lisa-maya.jpg" alt="Bokeh Effect in Web Design: Showcase, Tutorials and Resources - Lisa Maya" width="590" height="255" /></a></p>
<h5><a href="http://themeforest.net/item/four-o-four-404-error-theme-3-color-schemes/full_screen_preview/54764?ref=Dzinerfusion">404 error theme ($8)</a></h5>
<p><a href="http://themeforest.net/item/four-o-four-404-error-theme-3-color-schemes/full_screen_preview/54764?ref=Dzinerfusion"><img class="aligncenter size-full wp-image-3664" title="Bokeh Effect in Web Design: Showcase, Tutorials and Resources - 404 error theme" src="http://webdesignfan.com/wp-content/uploads/2010/03/bokeh_effect_in_web_design-404-error-theme.jpg" alt="Bokeh Effect in Web Design: Showcase, Tutorials and Resources - 404 error theme" width="590" height="312" /></a></p>
<h5><a href="http://www.playintraffik.com/">Traffik</a></h5>
<p><a href="http://www.playintraffik.com/"><img class="aligncenter size-full wp-image-3658" title="Bokeh Effect in Web Design: Showcase, Tutorials and Resources - Traffik" src="http://webdesignfan.com/wp-content/uploads/2010/03/bokeh_effect_in_web_design-traffik.jpg" alt="Bokeh Effect in Web Design: Showcase, Tutorials and Resources - Traffik" width="590" height="287" /></a></p>
<h5><a href="http://themeforest.net/item/dark-n-clean-businessportfolio-wordpress/89884?ref=Dzinerfusion">Dark &#8216;n Clean WordPress Theme ($27)</a></h5>
<p><a href="http://themeforest.net/item/dark-n-clean-businessportfolio-wordpress/89884?ref=Dzinerfusion"><img class="aligncenter size-full wp-image-3670" title="Bokeh Effect in Web Design: Showcase, Tutorials and Resources - Dark 'n Clean" src="http://webdesignfan.com/wp-content/uploads/2010/03/bokeh_effect_in_web_design-dark-n-clean.jpg" alt="Bokeh Effect in Web Design: Showcase, Tutorials and Resources - Dark 'n Clean" width="590" height="313" /></a></p>
<h5><a href="http://www.unuidesign.com/">Unuidesign</a></h5>
<p><a href="http://www.unuidesign.com/"><img class="aligncenter size-full wp-image-3667" title="Bokeh Effect in Web Design: Showcase, Tutorials and Resources - Unuidesign" src="http://webdesignfan.com/wp-content/uploads/2010/03/bokeh_effect_in_web_design-unuidesign.jpg" alt="Bokeh Effect in Web Design: Showcase, Tutorials and Resources - Unuidesign" width="590" height="309" /></a></p>
<h5><a href="http://themeforest.net/item/javascript-showcase/full_screen_preview/74131?ref=Dzinerfusion">Javascript Showcase ($10)</a></h5>
<p><a href="http://themeforest.net/item/javascript-showcase/full_screen_preview/74131?ref=Dzinerfusion"><img class="aligncenter size-full wp-image-3680" title="Bokeh Effect in Web Design: Showcase, Tutorials and Resources - Javascript Showcase" src="http://webdesignfan.com/wp-content/uploads/2010/03/bokeh_effect_in_web_design-Javascript-Showcase.jpg" alt="Bokeh Effect in Web Design: Showcase, Tutorials and Resources - Javascript Showcase" width="590" height="340" /></a></p>
<h5><a href="http://www.lightsbydallas.com/">Light is Light</a></h5>
<p><a href="http://www.lightsbydallas.com/"><img class="aligncenter size-full wp-image-3683" title="Bokeh Effect in Web Design: Showcase, Tutorials and Resources - Light is Light" src="http://webdesignfan.com/wp-content/uploads/2010/03/bokeh_effect_in_web_design-light-is-light.jpg" alt="Bokeh Effect in Web Design: Showcase, Tutorials and Resources - Light is Light" width="590" height="340" /></a></p>
<h5><a href="http://makephotoshopfaster.com/">Make Photoshop Faster</a></h5>
<p><a href="http://makephotoshopfaster.com/"><img class="aligncenter size-full wp-image-3686" title="Bokeh Effect in Web Design: Showcase, Tutorials and Resources - Make Photoshop Faster" src="http://webdesignfan.com/wp-content/uploads/2010/03/bokeh_effect_in_web_design-make-photoshop-faster.jpg" alt="Bokeh Effect in Web Design: Showcase, Tutorials and Resources - Make Photoshop Faster" width="590" height="340" /></a></p>
<h5><a href="http://onvo.co.uk/">Onvo Media</a></h5>
<p><a href="http://onvo.co.uk/"><img class="aligncenter size-full wp-image-3689" title="Bokeh Effect in Web Design: Showcase, Tutorials and Resources - Onvo Media" src="http://webdesignfan.com/wp-content/uploads/2010/03/bokeh_effect_in_web_design-onvo-media.jpg" alt="Bokeh Effect in Web Design: Showcase, Tutorials and Resources - Onvo Media" width="590" height="333" /></a></p>
<h5><a href="http://wpcodex.com/demo/?themedemo=moi-magazine">Moi Magazine WordPress Theme (Free)</a></h5>
<p><a href="http://wpcodex.com/demo/?themedemo=moi-magazine"><img class="aligncenter size-full wp-image-3721" title="Bokeh Effect in Web Design: Showcase, Tutorials and Resources - Moi Magazine" src="http://webdesignfan.com/wp-content/uploads/2010/03/bokeh_effect_in_web_design-moi-magazine.jpg" alt="Bokeh Effect in Web Design: Showcase, Tutorials and Resources - Moi Magazine" width="590" height="293" /></a></p>
<h5><a href="http://webexpedition18.com/">Webexpedition18</a></h5>
<p><a href="http://webexpedition18.com/"><img class="aligncenter size-full wp-image-3692" title="Bokeh Effect in Web Design: Showcase, Tutorials and Resources - Webexpedition18" src="http://webdesignfan.com/wp-content/uploads/2010/03/bokeh_effect_in_web_design-webexpedition18.jpg" alt="Bokeh Effect in Web Design: Showcase, Tutorials and Resources - Webexpedition18" width="590" height="340" /></a></p>
<h5><a href="http://www.sebcreation.com/">Sebcreation</a></h5>
<p><a href="http://www.sebcreation.com/"><img class="aligncenter size-full wp-image-3695" title="Bokeh Effect in Web Design: Showcase, Tutorials and Resources - Sebcreation" src="http://webdesignfan.com/wp-content/uploads/2010/03/bokeh_effect_in_web_design-sebcreation.jpg" alt="Bokeh Effect in Web Design: Showcase, Tutorials and Resources - Sebcreation" width="590" height="308" /></a></p>
<h5><a href="http://themeforest.net/item/bitwork-portfolio-and-business-wordpress-theme/87092?ref=Dzinerfusion">Bitwork WordPress Theme ($27)</a></h5>
<p><a href="http://themeforest.net/item/bitwork-portfolio-and-business-wordpress-theme/87092?ref=Dzinerfusion"><img class="aligncenter size-full wp-image-3698" title="Bokeh Effect in Web Design: Showcase, Tutorials and Resources - Bitwork" src="http://webdesignfan.com/wp-content/uploads/2010/03/bokeh_effect_in_web_design-bitwork.jpg" alt="Bokeh Effect in Web Design: Showcase, Tutorials and Resources - Bitwork" width="590" height="293" /></a></p>
<h5><a href="http://klar.as/">Klar</a></h5>
<p><a href="http://klar.as/"><img class="aligncenter size-full wp-image-3701" title="Bokeh Effect in Web Design: Showcase, Tutorials and Resources - Klar" src="http://webdesignfan.com/wp-content/uploads/2010/03/bokeh_effect_in_web_design-klar.jpg" alt="Bokeh Effect in Web Design: Showcase, Tutorials and Resources - Klar" width="590" height="279" /></a></p>
<h5><a href="http://icondock.com/">IconDock</a></h5>
<p><a href="http://icondock.com/"><img class="aligncenter size-full wp-image-3704" title="Bokeh Effect in Web Design: Showcase, Tutorials and Resources - IconDock" src="http://webdesignfan.com/wp-content/uploads/2010/03/bokeh_effect_in_web_design-icondock.jpg" alt="Bokeh Effect in Web Design: Showcase, Tutorials and Resources - IconDock" width="590" height="285" /></a></p>
<h5><a href="http://www.72outlets.com/">72 thinking</a></h5>
<p><a href="http://www.72outlets.com/"><img class="aligncenter size-full wp-image-3707" title="Bokeh Effect in Web Design: Showcase, Tutorials and Resources - 72 thinking" src="http://webdesignfan.com/wp-content/uploads/2010/03/bokeh_effect_in_web_design-72-thinking.jpg" alt="Bokeh Effect in Web Design: Showcase, Tutorials and Resources - 72 thinking" width="590" height="293" /></a></p>
<h5><a href="http://www.jinsonathemes.com/demo/?themedemo=pristilo">Pristilo WordPress Theme (Free)</a></h5>
<p><a href="http://www.jinsonathemes.com/demo/?themedemo=pristilo"><img class="aligncenter size-full wp-image-3724" title="Bokeh Effect in Web Design: Showcase, Tutorials and Resources - Pristilo" src="http://webdesignfan.com/wp-content/uploads/2010/03/bokeh_effect_in_web_design-pristilo.jpg" alt="Bokeh Effect in Web Design: Showcase, Tutorials and Resources - Pristilo" width="590" height="283" /></a></p>
<h5><a href="http://newism.com.au/">Newism</a></h5>
<p><a href="http://newism.com.au/"><img class="aligncenter size-full wp-image-3710" title="Bokeh Effect in Web Design: Showcase, Tutorials and Resources - Newism" src="http://webdesignfan.com/wp-content/uploads/2010/03/bokeh_effect_in_web_design-newism.jpg" alt="Bokeh Effect in Web Design: Showcase, Tutorials and Resources - Newism" width="590" height="284" /></a></p>
<h5><a href="http://www.designedbydave.ca/">Designed by Dave</a></h5>
<p><a href="http://www.designedbydave.ca/"><img class="aligncenter size-full wp-image-3713" title="Bokeh Effect in Web Design: Showcase, Tutorials and Resources - Designed by Dave" src="http://webdesignfan.com/wp-content/uploads/2010/03/bokeh_effect_in_web_design-designedbydave.jpg" alt="Bokeh Effect in Web Design: Showcase, Tutorials and Resources - Designed by Dave" width="590" height="293" /></a></p>
<h3>Tutorials on Creating Bokeh Effect</h3>
<p>Here I&#8217;ve collected some useful tutorials on creating bokeh effect in Photoshop, Pixelmator and of course with your camera. Most of tutorials demonstrate how to create basic bokeh effect.</p>
<h5><a href="http://abduzeedo.com/awesome-digital-bokeh-effect-photoshop">Awesome digital bokeh effect in Photoshop</a></h5>
<p><a href="http://abduzeedo.com/awesome-digital-bokeh-effect-photoshop"><img class="aligncenter size-full wp-image-3729" title="Bokeh Effect Tutorials - Awesome digital bokeh effect in Photoshop" src="http://webdesignfan.com/wp-content/uploads/2010/03/bokeh_effect_tutorials-Awesome-digital-bokeh-effect-in-Photoshop.jpg" alt="Bokeh Effect Tutorials - Awesome digital bokeh effect in Photoshop" width="590" height="283" /></a></p>
<p>In this Photoshop tutorial you will learn how to create a digital bokeh effect. The process is very easy and you will see how to use the super powerful Brush Engine, one of the coolest things in Photoshop.</p>
<h5><a rel="bookmark" href="http://psdden.com/create-a-bokeh-inspired-background-bokeh-design-style">Create a Bokeh inspired Background</a></h5>
<p><a href="http://psdden.com/create-a-bokeh-inspired-background-bokeh-design-style"><img class="aligncenter size-full wp-image-3732" title="Bokeh Effect Tutorials - Create a Bokeh inspired Background / Bokeh Design Style" src="http://webdesignfan.com/wp-content/uploads/2010/03/bokeh_effect_tutorials-Create-a-Bokeh-inspired-Background.jpg" alt="Bokeh Effect Tutorials - Create a Bokeh inspired Background / Bokeh Design Style" width="590" height="283" /></a></p>
<p>In this Tutorial we’ll create a really neat background using simulated focus, learn how to simulate depth in Photoshop, and learn a little bit about the Bokeh design Style so popular in many of today’s Photoshop creations.</p>
<h5><a href="http://thephotoshopper.blogspot.com/2009/01/awesome-bokeh-effect-tutorial.html">Awesome Bokeh Effect Tutorial</a></h5>
<p><a href="http://thephotoshopper.blogspot.com/2009/01/awesome-bokeh-effect-tutorial.html"><img class="aligncenter size-full wp-image-3735" title="Bokeh Effect Tutorials - Awesome Bokeh Effect Tutorial" src="http://webdesignfan.com/wp-content/uploads/2010/03/bokeh_effect_tutorials-Awesome-Bokeh-Effect-Tutorial.jpg" alt="Bokeh Effect Tutorials - Awesome Bokeh Effect Tutorial" width="590" height="283" /></a></p>
<p>In this tutorial you will see how to create custom bokeh effect in Photoshop. This tutorial will also teach you how to make your own brush.</p>
<h5><a href="http://free-web-design.co.cc/light-bubbles-effect-photoshop-tutorial.html">Light Bubbles Effect Photoshop Tutorial</a></h5>
<p><a href="http://free-web-design.co.cc/light-bubbles-effect-photoshop-tutorial.html"><img class="aligncenter size-full wp-image-3738" title="Bokeh Effect Tutorials - Light Bubbles Effect Photoshop Tutorial" src="http://webdesignfan.com/wp-content/uploads/2010/03/bokeh_effect_tutorials-Light-Bubbles-Effect-Photoshop-Tutorial.jpg" alt="Bokeh Effect Tutorials - Light Bubbles Effect Photoshop Tutorial" width="590" height="283" /></a></p>
<p>This tutorial explains how to create a  bokeh underwater light bubbles effect using Photoshop. This will include blending colours using hue and saturation and creating a really cool custom brush.</p>
<h5><a href="http://hv-designs.co.uk/2009/09/02/sleek-icon-design/">Sleek Icon Design</a></h5>
<p><a href="http://hv-designs.co.uk/2009/09/02/sleek-icon-design/"><img class="aligncenter size-full wp-image-3741" title="Bokeh Effect Tutorials - Sleek Icon Design" src="http://webdesignfan.com/wp-content/uploads/2010/03/bokeh_effect_tutorials-Sleek-Icon-Design.jpg" alt="Bokeh Effect Tutorials - Sleek Icon Design" width="590" height="283" /></a></p>
<p>In this tutorial we&#8217;re going to be creating a colorful image icon from scratch, the icon features a colorful design in a shiny metal like border the icon also used a bokeh effect.</p>
<h5><a rel="bookmark" href="http://inspiredology.com/how-to-create-a-simple-bokeh-effect/">How to Create a Simple Bokeh Effect</a></h5>
<p><a href="http://inspiredology.com/how-to-create-a-simple-bokeh-effect/"><img class="aligncenter size-full wp-image-3744" title="Bokeh Effect Tutorials - How to Create a Simple Bokeh Effect" src="http://webdesignfan.com/wp-content/uploads/2010/03/bokeh_effect_tutorials-How-to-Create-a-Simple-Bokeh-Effect.jpg" alt="Bokeh Effect Tutorials - How to Create a Simple Bokeh Effect" width="590" height="283" /></a></p>
<p>This tutorial shows you how to create beautiful bokeh effect in Photoshop.</p>
<h5><a rel="bookmark" href="http://www.junkiee.net/tutorials/bokeh-examples-textures-create-a-perfect-bokeh-effect/">Create A Perfect Bokeh Effect</a></h5>
<p><a href="http://www.junkiee.net/tutorials/bokeh-examples-textures-create-a-perfect-bokeh-effect/"><img class="aligncenter size-full wp-image-3747" title="Bokeh Effect Tutorials - Create A Perfect Bokeh Effect" src="http://webdesignfan.com/wp-content/uploads/2010/03/bokeh_effect_tutorials-Create-A-Perfect-Bokeh-Effect.jpg" alt="Bokeh Effect Tutorials - Create A Perfect Bokeh Effect" width="590" height="283" /></a></p>
<p>This well explained tutorial will help you to create a nice bokeh effect in Photoshop.</p>
<h5><a href="http://www.robertsdonovan.com/?p=702">DSLR Bokeh Tutorial</a></h5>
<p><a href="http://www.robertsdonovan.com/?p=702"><img class="aligncenter size-full wp-image-3750" title="Bokeh Effect Tutorials - DSLR Bokeh Tutorial" src="http://webdesignfan.com/wp-content/uploads/2010/03/bokeh_effect_tutorials-DSLR-Bokeh-Tutorial.jpg" alt="Bokeh Effect Tutorials - DSLR Bokeh Tutorial" width="590" height="168" /></a></p>
<p>Another great tutorial<em> </em>teaching you how to create bokeh effect, this time it&#8217;s tutorial for DSLR camera.<em><br />
</em></p>
<h5><a href="http://www.diyphotography.net/the-best-ways-to-create-your-own-bokeh">The Best 6 Ways To Create Your Own Bokeh</a></h5>
<p><a href="http://www.diyphotography.net/the-best-ways-to-create-your-own-bokeh"><img class="aligncenter size-full wp-image-3753" title="Bokeh effect Tutorials - The Best 6 Ways To Create Your Own Bokeh" src="http://webdesignfan.com/wp-content/uploads/2010/03/bokeh_effect_tutorials-The-Best-6-Ways-To-Create-Your-Own-Bokeh.jpg" alt="Bokeh effect Tutorials - The Best 6 Ways To Create Your Own Bokeh" width="590" height="168" /></a></p>
<p>This guide provides a simple technique to shape the bokeh of the unfocused elements in your picture.</p>
<h5><a href="http://abduzeedo.com/colorful-bokeh-effect-pixelmator">Colorful Bokeh Effect in Pixelmator</a></h5>
<p><a href="http://abduzeedo.com/colorful-bokeh-effect-pixelmator"><img class="aligncenter size-full wp-image-3756" title="Bokeh Effect Tutorial - Colorful Bokeh Effect in Pixelmator" src="http://webdesignfan.com/wp-content/uploads/2010/03/bokeh_effect_tutorials-Colorful-Bokeh-Effect-in-Pixelmator.jpg" alt="Bokeh Effect Tutorial - Colorful Bokeh Effect in Pixelmator" width="590" height="283" /></a></p>
<p>This tutorial will teach you how to easily create a bokeh effect in Pixelmator.</p>
<h5><a href="http://www.marcofolio.net/webdesign/pure_css3_bokeh_effect_with_some_jquery_help.html">Pure CSS3 bokeh effect with some jQuery help</a></h5>
<p><a href="http://www.marcofolio.net/webdesign/pure_css3_bokeh_effect_with_some_jquery_help.html"><img class="aligncenter size-full wp-image-3759" title="Bokeh Effect Tutorials - Pure CSS3 bokeh effect with some jQuery help" src="http://webdesignfan.com/wp-content/uploads/2010/03/bokeh_effect_tutorials-Pure-CSS3-bokeh-effect-with-some-jQuery-help.jpg" alt="Bokeh Effect Tutorials - Pure CSS3 bokeh effect with some jQuery help" width="590" height="258" /></a></p>
<p>Author of this tutorial wants to add another addition to the bokeh &#8220;hype&#8221;, by creating a pure CSS3 bokeh effect. Learn how to create bokeh effect with CSS3.</p>
<h5><a rel="bookmark" href="http://psdfan.com/tutorials/designing/design-a-sleek-bokeh-styled-portfolio/">Design a Sleek Bokeh Styled Portfolio</a></h5>
<p><a href="http://psdfan.com/tutorials/designing/design-a-sleek-bokeh-styled-portfolio/"><img class="aligncenter size-full wp-image-3762" title="Bokeh Effect Tutorials - Design a Sleek Bokeh Styled Portfolio" src="http://webdesignfan.com/wp-content/uploads/2010/03/bokeh_effect_tutorials-Design-a-Sleek-Bokeh-Styled-Portfolio.jpg" alt="Bokeh Effect Tutorials - Design a Sleek Bokeh Styled Portfolio" width="590" height="283" /></a></p>
<p>Learn how to create and integrate the popular bokeh effect into a sleek, professional website design.</p>
<h3>Bokeh Effect Resources</h3>
<p>Here you will find a lot of useful resources like textures, backgrounds, photoshop actions and even business cards with bokeh effect. Some of the listed resources are paid, but they are highest quality, unique and worth money.</p>
<h5><a href="http://graphicriver.net/item/bokeh-flame-card/77983?ref=Dzinerfusion">Bokeh flame card ($6)</a></h5>
<p><a href="http://graphicriver.net/item/bokeh-flame-card/77983?ref=Dzinerfusion"><img class="aligncenter size-full wp-image-3767" title="Bokeh Effect Resources - Bokeh flame card" src="http://webdesignfan.com/wp-content/uploads/2010/03/bokeh_effect_resources-Bokeh-flame-card.jpg" alt="Bokeh Effect Resources - Bokeh flame card" width="590" height="283" /></a></p>
<p>This template is a bokeh illustration with fresh colors and gradients. All text layers are editable so you can input your own text.</p>
<h5><a href="http://graphicriver.net/item/bokeh-effect-rays-of-light/82872?ref=Dzinerfusion">Bokeh Effect &#8211; Deep Sea ($3)</a></h5>
<p><a href="http://graphicriver.net/item/bokeh-effect-rays-of-light/82872?ref=Dzinerfusion"><img class="aligncenter size-full wp-image-3772" title="Bokeh Effect Resources - Bokeh Effect - Deep Sea" src="http://webdesignfan.com/wp-content/uploads/2010/03/bokeh_effect_resources-Bokeh-Effect-Deep-Sea.jpg" alt="Bokeh Effect Resources - Bokeh Effect - Deep Sea" width="590" height="268" /></a></p>
<p>This pack contain 1 Theme with 5 color schemes. Blue Deep Sea (By default), Tropical Blue Sea, Turquoise Sea, Brown Sea and Brown Sea.</p>
<h5><a href="http://graphicriver.net/item/elegant-bokeh-business-card-black-gold/79551?ref=Dzinerfusion">Elegant Bokeh Business Card ($5)</a></h5>
<p><a href="http://graphicriver.net/item/elegant-bokeh-business-card-black-gold/79551?ref=Dzinerfusion"><img class="aligncenter size-full wp-image-3775" title="Bokeh Effect Resources - Elegant Bokeh Business Card" src="http://webdesignfan.com/wp-content/uploads/2010/03/bokeh_effect_resources-Elegant-Bokeh-Business-Card.jpg" alt="Bokeh Effect Resources - Elegant Bokeh Business Card" width="590" height="268" /></a></p>
<p>Bokeh Business Card – simple &amp; stylish. Easy to modify. This  PSD  layered files are print ready,  CMYK  , 300dpi. All text layers are full type and can be easy edited.</p>
<h5><a href="http://graphicriver.net/item/bokeh-action-3-extras/89473?ref=Dzinerfusion">Bokeh Photoshop Action ($7)</a></h5>
<p><a href="http://graphicriver.net/item/bokeh-action-3-extras/89473?ref=Dzinerfusion"><img class="aligncenter size-full wp-image-3778" title="Bokeh Effect Resources - Bokeh Photoshop Action + 3 Extras" src="http://webdesignfan.com/wp-content/uploads/2010/03/bokeh_effect_resources-Bokeh-Action.jpg" alt="Bokeh Effect Resources - Bokeh Photoshop Action + 3 Extras" width="590" height="268" /></a></p>
<p>Unique, custom and never seen before action that throughout smart &amp; studied steps, automatically creates the so beloved <strong> BOKEH </strong> effect on any photography, any image and any scene.</p>
<h5><a href="http://graphicriver.net/item/circle-of-bokeh/40643?ref=Dzinerfusion">Circle Of Bokeh ($3)</a></h5>
<p><a href="http://graphicriver.net/item/circle-of-bokeh/40643?ref=Dzinerfusion"><img class="aligncenter size-full wp-image-3781" title="Bokeh Effect Resources - Circle Of Bokeh" src="http://webdesignfan.com/wp-content/uploads/2010/03/bokeh_effect_resources-Circle-Of-Bokeh.jpg" alt="Bokeh Effect Resources - Circle Of Bokeh" width="590" height="248" /></a></p>
<p>Fully Layered, Named &amp; Grouped with .PSD File &amp; .JPG Of The Background/Wallpaper. Perfect for all uses! Backgrounds, Wallpapers, Websites, Banners, Headers, Signatures, Badges etc..</p>
<h5><a href="http://graphicriver.net/item/bokeh-effect-rays-of-light/82872?ref=Dzinerfusion">Bokeh Effect ($4)</a></h5>
<p><a href="http://graphicriver.net/item/bokeh-effect-rays-of-light/82872?ref=Dzinerfusion"><img class="aligncenter size-full wp-image-3784" title="Bokeh Effect Resources - Bokeh Effect" src="http://webdesignfan.com/wp-content/uploads/2010/03/bokeh_effect_resources-Bokeh-Effect.jpg" alt="Bokeh Effect Resources - Bokeh Effect" width="590" height="248" /></a></p>
<p>This pack contain 1 Theme with 8 color schemes. Blue (By default), Turquoise , Green, Purple, Gold, Silver, Cooper and Orange.</p>
<h5><a href="http://graphicriver.net/item/blue-fiber-optic-abstract-background/79658?ref=Dzinerfusion">Blue fiber optic abstract background ($3)</a></h5>
<p><a href="http://graphicriver.net/item/blue-fiber-optic-abstract-background/79658?ref=Dzinerfusion"><img class="aligncenter size-full wp-image-3787" title="Blue fiber optic abstract background" src="http://webdesignfan.com/wp-content/uploads/2010/03/bokeh_effect_resources-Blue-fiber-optic-abstract-background.jpg" alt="Blue fiber optic abstract background" width="590" height="248" /></a></p>
<h5><a href="http://graphicriver.net/item/light-on-backgrounds-pack/89827?ref=Dzinerfusion">Light on! Backgrounds pack ($4)</a></h5>
<p><a href="http://graphicriver.net/item/light-on-backgrounds-pack/89827?ref=Dzinerfusion"><img class="aligncenter size-full wp-image-3788" title="Light on! Backgrounds pack" src="http://webdesignfan.com/wp-content/uploads/2010/03/bokeh_effect_resources-Light-on-Backgrounds-pack.jpg" alt="Light on! Backgrounds pack" width="590" height="248" /></a></p>
<p>Ready to use and changes you can turn off any glow and lines / make a different color by “hue and saturation” tool or add your gradient.</p>
<h5><a href="http://lostandtaken.com/blog/2010/1/9/5-colored-grungy-bokeh-textures.html">5 Colored Grungy Bokeh Textures (Free)</a></h5>
<p><a href="http://lostandtaken.com/blog/2010/1/9/5-colored-grungy-bokeh-textures.html"><img class="aligncenter size-full wp-image-3790" title="5 Colored Grungy Bokeh Textures" src="http://webdesignfan.com/wp-content/uploads/2010/03/bokeh_effect_resources-5-Colored-Grungy-Bokeh-Textures.jpg" alt="5 Colored Grungy Bokeh Textures" width="590" height="248" /></a></p>
<p>Free pack with 5 various bokeh textures. Free for personal and commercial use, with no attribution required.</p>
<div>
<h5><a href="http://lostandtaken.com/blog/2008/9/25/out-of-focus-30-free-bokeh-textures.html">30 Free Bokeh Textures (Free)</a></h5>
<p><a href="http://lostandtaken.com/blog/2008/9/25/out-of-focus-30-free-bokeh-textures.html"><img class="aligncenter size-full wp-image-3793" title="30 Free Bokeh Textures" src="http://webdesignfan.com/wp-content/uploads/2010/03/bokeh_effect_resources-30-Free-Bokeh-Textures.jpg" alt="30 Free Bokeh Textures" width="590" height="248" /></a></p>
<p>30 free bokeh textures for you. Free for personal and commercial use, with no attribution required.</p>
<h5><a title="Permanent Link to 11 Fresh HQ Bokeh Textures with Commercial License" rel="bookmark" href="http://slodive.com/freebies/11-fresh-hq-bokeh-textures-with-commercial-license/">11 Fresh HQ Bokeh Textures with Commercial License (Free)</a></h5>
<p><a href="http://slodive.com/freebies/11-fresh-hq-bokeh-textures-with-commercial-license/"><img class="aligncenter size-full wp-image-3796" title="11 Fresh HQ Bokeh Textures with Commercial License" src="http://webdesignfan.com/wp-content/uploads/2010/03/bokeh_effect_resources-11-Fresh-HQ-Bokeh-Textures-with-Commercial-License.jpg" alt="11 Fresh HQ Bokeh Textures with Commercial License" width="590" height="248" /></a></p>
<p>11 beautiful high quality and free bokeh textures. For licence check author page.</p>
<h5><a href="http://regularjane.deviantart.com/art/Bokeh-Texture-Pack-001-105661310">Bokeh Texture Pack 001 (Free)</a></h5>
<p><a href="http://regularjane.deviantart.com/art/Bokeh-Texture-Pack-001-105661310"><img class="aligncenter size-full wp-image-3799" title="Bokeh Texture Pack 001" src="http://webdesignfan.com/wp-content/uploads/2010/03/bokeh_effect_resources-Bokeh-Texture-Pack-001.jpg" alt="Bokeh Texture Pack 001" width="590" height="248" /></a></p>
<p>Another great pack of bokeh textures. For licence information check author website.</p>
<h5><a href="http://coralulu.deviantart.com/art/13-Graphic-Bokeh-Textures-120528696">13 Graphic Bokeh Textures (Free)</a></h5>
<p><a href="http://coralulu.deviantart.com/art/13-Graphic-Bokeh-Textures-120528696"><img class="aligncenter size-full wp-image-3802" title="13 Graphic Bokeh Textures" src="http://webdesignfan.com/wp-content/uploads/2010/03/bokeh_effect_resources-13-Graphic-Bokeh-Textures.jpg" alt="13 Graphic Bokeh Textures" width="590" height="239" /></a></p>
<p>13 253X813 graphic bokeh/light textures can be uses for icons, designs etc. If you use them you must agree with following rules. Do not claim as your own. Please credit if you use any: Coralulu with link to DA. Not for websites or stock, do not redistribute.</p>
<h5><a rel="bookmark" href="http://mediamilitia.com/bokeh-effects-pack-42-free-images/">Bokeh Effects Pack – 42 Free Images (Free)</a></h5>
<p><a href="http://mediamilitia.com/bokeh-effects-pack-42-free-images/"><img class="aligncenter size-full wp-image-3805" title="Bokeh Effects Pack – 42 Free Images" src="http://webdesignfan.com/wp-content/uploads/2010/03/bokeh_effect_resources-Bokeh-Effects-Pack-42-Free-Images.jpg" alt="Bokeh Effects Pack – 42 Free Images" width="590" height="239" /></a></p>
<p>The pack includes 42 images, all weighing in around 3500 pixels wide at 300 dpi. They look outstanding by themselves, as a background or even a texture overlay in your design. Personal and commercial use is welcomed and encouraged!</p>
</div>
<p>Pass your <a href="http://www.test-king.com/exams/350-030.htm">350-030</a> exam in easy going way with world class online training by test-king experts. Get all the required knowledge in single package and pass your <a href="http://www.test-king.com/exams/642-901.htm">642-901</a> as well as <a href="http://www.test-king.com/exams/70-642.htm">70-642</a> on first attempt guaranteed.</p>
]]></content:encoded>
			<wfw:commentRss>http://webdesignfan.com/bokeh-effect-in-web-design/feed/</wfw:commentRss>
		<slash:comments>27</slash:comments>
		</item>
	</channel>
</rss>
