<?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>Fearless Flyer Web Design &#187; template</title>
	<atom:link href="http://fearlessflyer.com/tag/template/feed/" rel="self" type="application/rss+xml" />
	<link>http://fearlessflyer.com</link>
	<description>Fearless flyer is a blog that focuses on the latest topics of web design. This includes Wordpress, SEO, Photoshop, jQuery, PHP and CSS. Fearless flyer is owned and operated by Michael Soriano, a seasoned web developer living in Southern California.</description>
	<lastBuildDate>Fri, 03 Feb 2012 17:11:14 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>How to Add Lightbox to WordPress without a Plugin</title>
		<link>http://fearlessflyer.com/2011/04/how-to-add-lightbox-to-wp-without-plugin/</link>
		<comments>http://fearlessflyer.com/2011/04/how-to-add-lightbox-to-wp-without-plugin/#comments</comments>
		<pubDate>Fri, 29 Apr 2011 05:26:45 +0000</pubDate>
		<dc:creator>michael soriano</dc:creator>
				<category><![CDATA[General]]></category>
		<category><![CDATA[code]]></category>
		<category><![CDATA[creative]]></category>
		<category><![CDATA[how to]]></category>
		<category><![CDATA[image effects]]></category>
		<category><![CDATA[jQuery]]></category>
		<category><![CDATA[lightbox]]></category>
		<category><![CDATA[template]]></category>
		<category><![CDATA[Tutorials]]></category>
		<category><![CDATA[WP]]></category>
		<category><![CDATA[WP Themes]]></category>

		<guid isPermaLink="false">http://fearlessflyer.com/?p=2121</guid>
		<description><![CDATA[Many times when I&#8217;m developing themes &#8211; I think of the simplest features to include. Always on top of my list &#8211; is a lightbox effect on images. A lightbox effect is when a thumbnail of an image is clicked, the larger version of the image is faded in &#8211; while the rest of the ]]></description>
			<content:encoded><![CDATA[<p>Many times when I&#8217;m developing themes &#8211; I think of the simplest features to include. Always on top of my list &#8211; is a lightbox effect on images. A lightbox effect is when a thumbnail of an image is clicked, the larger version of the image is faded in &#8211; while the rest of the page is dimmed in the background. This is very useful because it eliminates the need to leave the current page just to view the large version of the image. </p>
<p>Adding it to a WordPress theme has its benefits as well. For one, the code stays with the theme. Anyone who uses it gets this effect automatically. Not to mention, it&#8217;s pretty easy to implement.  </p>
<p>This article will walk you through how to add Lightbox into your WordPress themes. I&#8217;m also going to assume that you have created WordPress themes before, for you will need to know how to work with template files and such. Ready to get started? Let&#8217;s begin. </p>
<h3>Grab Pretty Photo</h3>
<p>There are many lighbox plugins out there. I choose one called Prettyphoto from <a href="http://www.no-margin-for-errors.com/">no-margin-for-errors.com</a>. Prettyphoto uses jQuery, and is quite extensible. But the main reasons why I chose it is because the animation is flawless and the design is awesome. Download the production version from this <a href="http://www.no-margin-for-errors.com/demos/prettyPhoto-jquery-lightbox-clone/prettyPhoto_compressed_3.1.2.zip">link</a></p>
<p>Extract the .zip file into your hard drive. Inside <strong>prettyPhoto_compressed_3.1.2</strong> &#8211; you will find the following folders and files. Copy them according to below:</p>
<ul>
<li><strong>prettyPhoto folder</strong> (from prettyPhoto_compressed_3.1.2\images) and place inside (yourtheme\images\)</li>
<li><strong>prettyPhoto.css</strong> (from prettyPhoto_compressed_3.1.2\css) and place inside your theme root folder</li>
<li><strong>jquery.prettyPhoto.js</strong> (from prettyPhoto_compressed_3.1.2\js) and place inside (yourtheme\scripts\)</li>
</ul>
<h3>Include the Scripts</h3>
<p>First we need jQuery. There is a preferred way to include jQuery into our themes &#8211; that is to use the <strong><a href="http://codex.wordpress.org/Function_Reference/wp_enqueue_script">wp_enqueue_script</a></strong> function. Open <strong>functions.php</strong> and add the code below. *If your theme doesn’t have a functions.php file – go ahead and create one.</p>

<div class="wp_syntax"><table><tr><td class="line_numbers"><pre>1
2
3
4
</pre></td><td class="code"><pre class="php" style="font-family:monospace;"><span style="color: #000000; font-weight: bold;">function</span> insert_jquery<span style="color: #009900;">&#40;</span><span style="color: #009900;">&#41;</span><span style="color: #009900;">&#123;</span>
	wp_enqueue_script<span style="color: #009900;">&#40;</span><span style="color: #0000ff;">'jquery'</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
<span style="color: #009900;">&#125;</span>
add_action<span style="color: #009900;">&#40;</span><span style="color: #0000ff;">'init'</span><span style="color: #339933;">,</span> <span style="color: #0000ff;">'insert_jquery'</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span></pre></td></tr></table></div>

<p>Note that this is the preferred way because since WordPress is already shipped with a bunch of scripts (including jQuery) &#8211; you might as well use them. It is also considered good practice because updating Worpdress will include these javascript libraries (and how often do you do that!)</p>
<p>Add the Prettyphoto script and css into your theme header.php file:</p>

<div class="wp_syntax"><table><tr><td class="line_numbers"><pre>1
2
</pre></td><td class="code"><pre class="html" style="font-family:monospace;">&lt;link rel=&quot;stylesheet&quot; href=&quot;&lt;?php bloginfo('template_directory'); ?&gt;/prettyPhoto.css&quot; type=&quot;text/css&quot; media=&quot;screen&quot; charset=&quot;utf-8&quot; /&gt;
&lt;script src=&quot;&lt;?php bloginfo('template_directory'); ?&gt;/scripts/jquery.prettyPhoto.js&quot;&gt;&lt;/script&gt;</pre></td></tr></table></div>

<h3>Custom Code</h3>
<p>Modify the code in prettyPhoto.css. This step is necessary so the path to the images for prettyPhoto is corrected according to your setup:</p>
<ul>
<li>open <strong>prettyPhoto.css</strong> </li>
<li><strong>CTRL + F</strong> (Find) all instances of “<strong>url(../</strong>”</li>
<li>And replace with “<strong>url(</strong>” *There should be around 100 occurences </li>
<li>Save the file</li>
</ul>
<p>Again, this is due to the location of the images and the css file has changed from the example files from prettyPhoto. This ensures the images needed for our lightbox is functioning properly:</p>
<p><img src="http://fearlessflyer.com/main/wp-content/uploads/2011/04/lb1.jpg" alt="lb1 How to Add Lightbox to Wordpress without a Plugin" title="lb1" width="576" height="290" class="alignnone size-full wp-image-2125" /></p>
<p>Open <strong>header.php</strong> – and add the following code:</p>

<div class="wp_syntax"><table><tr><td class="line_numbers"><pre>1
2
3
4
5
6
7
8
9
10
</pre></td><td class="code"><pre class="javascript" style="font-family:monospace;"><span style="color: #339933;">&lt;</span>script type<span style="color: #339933;">=</span><span style="color: #3366CC;">&quot;text/javascript&quot;</span><span style="color: #339933;">&gt;</span>  
jQuery<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>
   $<span style="color: #009900;">&#40;</span><span style="color: #3366CC;">&quot;a[href$='.jpg'], a[href$='.jpeg'], a[href$='.gif'], a[href$='.png']&quot;</span><span style="color: #009900;">&#41;</span>.<span style="color: #660066;">prettyPhoto</span><span style="color: #009900;">&#40;</span><span style="color: #009900;">&#123;</span>
	animationSpeed<span style="color: #339933;">:</span> <span style="color: #3366CC;">'normal'</span><span style="color: #339933;">,</span> <span style="color: #006600; font-style: italic;">/* fast/slow/normal */</span>
	padding<span style="color: #339933;">:</span> <span style="color: #CC0000;">40</span><span style="color: #339933;">,</span> <span style="color: #009966; font-style: italic;">/* padding for each side of the picture */</span>
        opacity<span style="color: #339933;">:</span> <span style="color: #CC0000;">0.35</span><span style="color: #339933;">,</span> <span style="color: #009966; font-style: italic;">/* Value betwee 0 and 1 */</span>
	showTitle<span style="color: #339933;">:</span> <span style="color: #003366; font-weight: bold;">true</span> <span style="color: #006600; font-style: italic;">/* true/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;">&lt;/</span>script<span style="color: #339933;">&gt;</span></pre></td></tr></table></div>

<p>What the above code does is selecting all links with the <strong>href</strong> attribute that equals to anything ending in <em>.jpeg, .jpg, .gif</em> and <em>.png</em>, and applying the <em>prettyPhoto()</em> function to it.  This means that any link tag that leads to an image (file extensions mentioned) will trigger prettyPhoto. The script is also enclosed inside a document ready event using a jQuery noConflict wrapper. This is to prevent any compatibility issues with other javascript libraries that maybe included with your theme. </p>
<p>I also went ahead and added some options such as the animation speed, padding and show title to our .prettyPhoto function. For additional customization options – refer to the <a href="http://www.no-margin-for-errors.com/projects/prettyphoto-jquery-lightbox-clone/documentation/">no-margin-for-errors documentation</a>.   </p>
<h3>Conclusion</h3>
<p>If all goes well &#8211; you can test your work by clicking on an image that links to another image. This should launch the prettyPhoto code that we&#8217;ve just plugged in. You can also apply the same code to links with inline content, external files, youtube movies or other flash based content. Again, refer to prettyPhoto documentation. </p>
]]></content:encoded>
			<wfw:commentRss>http://fearlessflyer.com/2011/04/how-to-add-lightbox-to-wp-without-plugin/feed/</wfw:commentRss>
		<slash:comments>19</slash:comments>
		</item>
		<item>
		<title>Updated WP Theme: Aparatus Version 2</title>
		<link>http://fearlessflyer.com/2011/03/updated-wp-theme-aparatus-version-2/</link>
		<comments>http://fearlessflyer.com/2011/03/updated-wp-theme-aparatus-version-2/#comments</comments>
		<pubDate>Sun, 13 Mar 2011 05:31:26 +0000</pubDate>
		<dc:creator>michael soriano</dc:creator>
				<category><![CDATA[Freebies]]></category>
		<category><![CDATA[Wordpress Themes]]></category>
		<category><![CDATA[Blog]]></category>
		<category><![CDATA[clean]]></category>
		<category><![CDATA[CSS3]]></category>
		<category><![CDATA[Magazine Style]]></category>
		<category><![CDATA[Options]]></category>
		<category><![CDATA[premium theme]]></category>
		<category><![CDATA[template]]></category>
		<category><![CDATA[Themes]]></category>
		<category><![CDATA[Web 2.0]]></category>
		<category><![CDATA[Wordpress]]></category>
		<category><![CDATA[WP]]></category>
		<category><![CDATA[WP Themes]]></category>

		<guid isPermaLink="false">http://fearlessflyer.com/?p=2102</guid>
		<description><![CDATA[Aparatus has been my most popular freebie since I’ve started this blog. It’s complimented many WordPress sites and I’m very happy to have created it. This time around I’ve decided to upgrade this old puppy and refresh its’ looks just a tad bit. Aparatus version 2 is now available for download &#8211; for a low ]]></description>
			<content:encoded><![CDATA[<p>Aparatus has been my most popular freebie since I’ve started this blog. It’s complimented many WordPress sites and I’m very happy to have created it. This time around I’ve decided to upgrade this old puppy and refresh its’ looks just a tad bit. Aparatus version 2 is now available for <strong><a href="https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&#038;hosted_button_id=3FLDHUA9FZGPN">download</a></strong> &#8211; for a low fee of $10. </p>
<table>
<tr>
<td>
<div class="viewdemo"><a href="http://aparatus.fearlessflyer.com">View Demo</a></div>
</td>
<td style="padding-left:10px;">
<div class="buylink"><a href="https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&#038;hosted_button_id=3FLDHUA9FZGPN">Buy Through Paypal</a></div>
</td>
</tr>
</table>
<div class="special">Update &#8211; there has been a security vulnerability in an image handling script in this theme. Please update to the new <a href="http://code.google.com/p/timthumb/source/browse/trunk/timthumb.php">Timthumb</a>. Read more details <a href="http://fearlessflyer.com/2011/08/updated-themes-to-the-latest-timthumb-please-reinstall/">here</a>. </div>
<h3>So what has Changed?</h3>
<p>As you see from the demo, I’ve tried to preserve Aparatus’ original design. The few things that I changed is more for  performance rather than visual.  I went ahead and removed the Tweetmeme buttons in the archive pages – which greatly improved page loads. There was a horizontal scroll bar bug in the old version – which is now fixed. </p>
<p><a href="http://aparatus.fearlessflyer.com/"><img src="http://fearlessflyer.com/main/wp-content/uploads/2011/03/aparatus.jpg" alt="aparatus Updated WP Theme: Aparatus Version 2" title="click to demo aparatus" width="576" height="1230" class="showtip size-full wp-image-2245" /></a></p>
<p>The theme still utilizes <a href="http://fearlessflyer.com/2009/10/cufonize-your-pages-how-to-add-cufon-to-your-web-design/">Cufon</a> – but only for select areas of the theme such as the Logo and the footer. The logo now has an etched and gradient look – which is a big enhancement. I also added some Google fonts – to the post and comments headings.  A few CSS 3 code is also used to improve the presentation of the text a little bit more.</p>
<p>A new post thumbnail handling code is used. Both feature images and custom fields still work, it just handles the resizing better. The feature image also appears in the single post page – this is something many users have requested for.</p>
<p>The theme now supports the new WordPress menu system. You can now customize the menu according to your craziest &#8220;navi-wishes&#8221;.</p>
<p>Lastly, a smarter theme options is integrated. If you don’t enter a Twitter account – no button or feed will show in the theme. The same goes for the large ad button.  </p>
<h3>How to Use:</h3>
<p>Installing the theme is just like any other WordPress theme. Simply go to the &#8220;<strong>Appearance</strong>&#8221; > &#8220;<strong>Install Themes</strong>&#8221; section in your admin panel. Click the &#8220;<strong>Upload</strong>&#8221; link &#8211; browse to the theme .zip file and &#8220;<strong>Install Now</strong>&#8220;. </p>
<h6>Adding Post Thumbnails to your Posts:</h6>
<p>To add images to your posts you can use the Post Thumbnail feature of WordPress. Simply go to the post in &#8220;<strong>Edit</strong>&#8221; mode. On the right side of the page &#8211; click on &#8220;<strong>Set Featured Image</strong>&#8220;:</p>
<p><img src="http://fearlessflyer.com/main/wp-content/uploads/2011/09/set-as-featured-image.jpg" alt="set as featured image Updated WP Theme: Aparatus Version 2" title="set-as-featured-image" width="412" height="370" class="alignnone work size-full wp-image-2292" /></p>
<p>This will trigger the image uploader. Upload your image and as soon as that&#8217;s done, click the &#8220;<strong>Use as Featured Image</strong>&#8221; link:</p>
<p><img src="http://fearlessflyer.com/main/wp-content/uploads/2011/09/uset-as-featured-image.jpg" alt="uset as featured image Updated WP Theme: Aparatus Version 2" title="uset-as-featured-image" width="412" height="370" class="alignnone work size-full wp-image-2293" /></p>
<p>Note that you should keep the file sizes to a smaller size. The resizing script has a maximum size limit. </p>
<h6>How to Use the Slideshow:</h6>
<p>The slideshow automatically pulls your most recent posts (5 maximum). You can change this to pull from a specific category by going to &#8220;<strong>Appearance</strong>&#8221; > &#8220;<strong>Aparatus Options</strong>&#8221; and putting the category slug in the field: &#8220;<strong>Category Name for the Content Slider</strong>&#8220;. You can also take out the slideshow or choose to not automatically slide &#8211; by checking the appropriate boxes in the theme options. </p>
<p><img src="http://fearlessflyer.com/main/wp-content/uploads/2011/03/slideshow-options.jpg" alt="slideshow options Updated WP Theme: Aparatus Version 2" title="slideshow-options" width="412" height="370" class="alignnone work size-full wp-image-2303" /></p>
<p>Also, if you see the slider with the &#8220;<em>Oops&#8230;Looks like</em>&#8221; message (shown below) &#8211; that means you haven&#8217;t assigned a post thumbnail to your post. Read the section above called &#8220;<em>Adding Post Thumbnails to your Posts</em>&#8220;. </p>
<p><img src="http://fearlessflyer.com/main/wp-content/uploads/2011/03/aparatus-slider.jpg" alt="aparatus slider Updated WP Theme: Aparatus Version 2" title="aparatus-slider" width="412" height="370" class="alignnone size-full wp-image-2304" /></p>
<h6>How to insert a Photo Gallery:</h6>
<p>Adding a photo gallery into Aparatus is as easy as pie. Simply go to the post / page you want in &#8220;<strong>Edit</strong>&#8221; mode and click on the image uploader. Navigate to your local directory and highlight the images you want and click &#8220;<strong>Open</strong>&#8220;. </p>
<p><img src="http://fearlessflyer.com/main/wp-content/uploads/2011/09/insert-gallery.jpg" alt="insert gallery Updated WP Theme: Aparatus Version 2" title="insert gallery" width="412" height="370" class="alignnone work size-full wp-image-2297" /></p>
<p>As soon as the images upload, click on &#8220;<strong>Save Changes</strong>&#8221; and additional settings will show. Select your options and click &#8220;<strong>Insert Gallery</strong>&#8220;. </p>
<p><img src="http://fearlessflyer.com/main/wp-content/uploads/2011/09/insert-gallery2.jpg" alt="insert gallery2 Updated WP Theme: Aparatus Version 2" title="insert gallery" width="412" height="370" class="alignnone work size-full wp-image-2297" /></p>
<p>Update your post / page and preview it. You should see your gallery in place. </p>
<p><img src="http://fearlessflyer.com/main/wp-content/uploads/2011/03/aparatus-gallery.jpg" alt="aparatus gallery Updated WP Theme: Aparatus Version 2" title="aparatus-gallery" width="412" height="370" class="alignnone work size-full wp-image-2305" /></p>
<h6>How to Customize the Navigation Menu:</h6>
<p>Go to &#8220;<strong>Appearance</strong>&#8221; > &#8220;<strong>Menus</strong>&#8221; and start by creating a new menu. Enter a menu name and click &#8220;<strong>Create</strong>&#8220;.</p>
<p><img src="http://fearlessflyer.com/main/wp-content/uploads/2011/05/create-menu.jpg" alt="create menu Updated WP Theme: Aparatus Version 2" title="create-menu" width="412" height="370" class="alignnone work size-full wp-image-2301" /></p>
<p>This will create a blank menu panel in the right side of the page. The idea is to select categories, pages or custom links from the left side, click the &#8220;<strong>Add to Menu</strong>&#8221; button &#8211; and it will appear on the menu panel in the right. In this panel, you can drag and drop the links so you can design the menu hierarchy. Links that are staggered underneath become the drop down links from the respective parent &#8211; you get the drift. </p>
<p><img src="http://fearlessflyer.com/main/wp-content/uploads/2011/05/menu-system.jpg" alt="menu system Updated WP Theme: Aparatus Version 2" title="menu-system" width="412" height="370" class="alignnone work size-full wp-image-2302" /></p>
<p>Once the menu is done &#8211; hit &#8220;<strong>Save Menu</strong>&#8221; and in the top most left column box called &#8220;<strong>Theme Locations</strong>&#8220;, select the menu you just created from the drop down called &#8220;Header Menu&#8221;. Click &#8220;<strong>Save</strong>&#8221; and view your website. You menu should now be in place.</p>
<p><img src="http://fearlessflyer.com/main/wp-content/uploads/2011/03/aparatus-menu.jpg" alt="aparatus menu Updated WP Theme: Aparatus Version 2" title="aparatus-menu" width="412" height="370" class="alignnone work size-full wp-image-2306" /></p>
<h6>Switching Stylesheets</h6>
<p>Aparatus comes with 4 different color styles &#8211; also known as stylesheets. Go to &#8220;Appearance&#8221; > &#8220;Aparatus Options&#8221; and in the top most section is a drop down called &#8220;Style Sheet&#8221;. Select Maroon, Black, Blue or Green and &#8220;<strong>Save Changes</strong>&#8220;. </p>
<p><img src="http://fearlessflyer.com/main/wp-content/uploads/2011/03/stylesheet-select.jpg" alt="stylesheet select Updated WP Theme: Aparatus Version 2" title="stylesheet-select" width="412" height="370" class="alignnone work size-full wp-image-2307" /></p>
<h6>Adding the Twitter Badge and Latest Tweet:</h6>
<p>Still in the theme options, right underneath the Style Sheet drop down, is the Twitter account field. Enter your Twitter user name in this field. </p>
<p><img src="http://fearlessflyer.com/main/wp-content/uploads/2011/03/twitter-account.jpg" alt="twitter account Updated WP Theme: Aparatus Version 2" title="twitter-account" width="412" height="370" class="alignnone work size-full wp-image-2308" /></p>
<p>Save your changes and view your website. You should see a nice Twitter Badge in the Header &#8211; and your latest Tweet in the sidebar area. </p>
<p><img src="http://fearlessflyer.com/main/wp-content/uploads/2011/03/twitter-badge.jpg" alt="twitter badge Updated WP Theme: Aparatus Version 2" title="twitter-badge" width="412" height="370" class="alignnone work size-full wp-image-2309" /></p>
<h6>Advertising Blocks:</h6>
<p>You can ad advertising blocks in the sidebar area right in the theme options. You can do 1 large 300 x 250, and 4 small 125 x 125 squares. Go to the theme options page &#8211; and see the &#8220;<strong>Advertising Blocks</strong>&#8221; area. Enter the image source of the ad (where the image is coming from), and the destination (where the link goes when the image is clicked). </p>
<p><img src="http://fearlessflyer.com/main/wp-content/uploads/2011/03/adblocks.jpg" alt="adblocks Updated WP Theme: Aparatus Version 2" title="adblocks" width="412" height="370" class="alignnone work size-full wp-image-2310" /></p>
<p>Save your changes and view your site. You should see the ad blocks in the sidebar nicely lined up:</p>
<p><img src="http://fearlessflyer.com/main/wp-content/uploads/2011/03/adblocks-live.jpg" alt="adblocks live Updated WP Theme: Aparatus Version 2" title="adblocks-live" width="412" height="370" class="alignnone work size-full wp-image-2311" /></p>
<h3>Frequently Asked Questions:</h3>
<p>I&#8217;ve gathered a several most asked questions in regards to Aparatus. Read below to see if your question is one of them. </p>
<h6>Modify the Twitter Badge Image</h6>
<p>Many want to modify the large Twitter Badge in the header. Please note that the font I’ve used in this badge is called – League Gothic, and you need to download that in your Fonts folder to twiddle the <strong><a href="http://fearlessflyer.com/downloads/twitter-btn.zip">.psd file</a></strong>. </p>
<h6>Slideshow is not showing images</h6>
<p>If you’re using custom fields – make sure you have GD library installed. You also have to make sure that the cache folder inside scripts (<em>themes/aparatus/scripts/cache</em>) is fully writeable.  In addition, you need to enter at least a couple of posts to kick start the slideshow. </p>
<h6>How To make posts in the slideshow appear below the slideshow</h6>
<p>By default posts inside the slideshow does not duplicate underneath – where the rest of the post are. Many like it this way – but some have asked how to make them show below as well. To do this look for this line of code inside gallery.php and delete it:</p>

<div class="wp_syntax"><div class="code"><pre class="php" style="font-family:monospace;"><span style="color: #000088;">$saved_ids</span><span style="color: #009900;">&#91;</span><span style="color: #009900;">&#93;</span> <span style="color: #339933;">=</span> get_the_ID<span style="color: #009900;">&#40;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span></pre></div></div>

<h6>How to fill the Author Box Information</h6>
<p>The “<strong>About the Author</strong>” box right in the single posts page grabs information from your profile. Go to “Users” > “Your Profile”, under Biographical Info – enter your stuff there. </p>
<h6>The Header Text takes too long to convert into the logo</h6>
<p>Sometimes Cufon takes a bit of time to do its thing. Aparatus uses this to use your site name and automatically convert it into a decent looking logo. But sometimes – due to client browser constraints, it performs poorly. </p>
<p><img src="http://fearlessflyer.com/main/wp-content/uploads/2011/03/apa8.jpg" alt="apa8 Updated WP Theme: Aparatus Version 2" title="apa8" width="576" height="308" class="alignnone size-full wp-image-2104" /></p>
<p>For this issue it would probably best to use an image for your logo. If you really like how it looks with Cufon – just take a screenshot and convert the image into a jpeg and replace it inside the header.php.</p>
<h3>Conclusion:</h3>
<p>Enough of the FAQ! <a href="https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&#038;hosted_button_id=3FLDHUA9FZGPN">Download already</a>! I hope you enjoy this theme as much I&#8217;ve seen it in many blogs. If you want to visit the original release post, click <a href="http://fearlessflyer.com/2010/01/get-some-aparatus-free-theme-for-wordpress/">here</a>. Otherwise, leave your comments and questions below. Happy blogging!</p>
]]></content:encoded>
			<wfw:commentRss>http://fearlessflyer.com/2011/03/updated-wp-theme-aparatus-version-2/feed/</wfw:commentRss>
		<slash:comments>319</slash:comments>
		</item>
		<item>
		<title>Free Homepage Layout PSD: &#8220;Your Blazing App&#8221;</title>
		<link>http://fearlessflyer.com/2010/12/free-homepage-layout-psd-your-blazing-app/</link>
		<comments>http://fearlessflyer.com/2010/12/free-homepage-layout-psd-your-blazing-app/#comments</comments>
		<pubDate>Sun, 26 Dec 2010 18:56:06 +0000</pubDate>
		<dc:creator>michael soriano</dc:creator>
				<category><![CDATA[Freebies]]></category>
		<category><![CDATA[General]]></category>
		<category><![CDATA[HTML and PSD]]></category>
		<category><![CDATA[Design]]></category>
		<category><![CDATA[free]]></category>
		<category><![CDATA[free psd]]></category>
		<category><![CDATA[Photoshop]]></category>
		<category><![CDATA[PSD]]></category>
		<category><![CDATA[template]]></category>
		<category><![CDATA[Web 2.0]]></category>

		<guid isPermaLink="false">http://fearlessflyer.com/?p=1973</guid>
		<description><![CDATA[Ooooh, you&#8217;re gonna like this one. This is a homepage of a phone app that I had sitting in my hard drive for some time. It was one of those deals that the client never got back to me. &#8220;Lessons in life&#8221; kind of deal. That&#8217;s why now I ask for a deposit up front ]]></description>
			<content:encoded><![CDATA[<p>Ooooh, you&#8217;re gonna like this one. This is a homepage of a phone app that I had sitting in my hard drive for some time. It was one of those deals that the client never got back to me. &#8220;Lessons in life&#8221; kind of deal. That&#8217;s why now I ask for a deposit up front before any work.</p>
<h3>Features</h3>
<p>The layout itself is very modern. The page is housed in a beautiful etched container with very subtle textures. The large feature section showcases the &#8220;Apps&#8221; main message with large &#8220;<em>call to action</em>&#8221; buttons to get the viewers to instantly join. </p>
<p><a href="http://fearlessflyer.com/main/wp-content/uploads/2010/12/yourblazingapp.jpg"><img src="http://fearlessflyer.com/main/wp-content/uploads/2010/12/yourblazingapp-small.jpg" alt="yourblazingapp small Free Homepage Layout PSD: Your Blazing App " title="yourblazingapp-small" width="576" height="807" class="alignnone size-full wp-image-1976" /></a></p>
<p>There&#8217;s a blue ribbon separating the main section and the latest posts / sidebar. I imagined this to be an expanding area for categories and what not. Typically a little javascript should do this trick. The rest is pretty conventional, icons, typography, grid spacing and pixel perfect alignment. </p>
<p>The .psd file itself is grouped, layered and organized. Feel free to use &#8211; under creative commons license. I would like to know if this type of design still suit clients out there. If you feel it&#8217;s a bit &#8220;played out&#8221;, out dated &#8211; whatever, Please let me know in the comments section. <a href="http://fearlessflyer.com/downloads/yourblazingapp.zip">Download the file from this link.</a></p>
]]></content:encoded>
			<wfw:commentRss>http://fearlessflyer.com/2010/12/free-homepage-layout-psd-your-blazing-app/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>Grab Hold of these Free PSD Templates:</title>
		<link>http://fearlessflyer.com/2010/10/grab-hold-of-these-free-psd-templates/</link>
		<comments>http://fearlessflyer.com/2010/10/grab-hold-of-these-free-psd-templates/#comments</comments>
		<pubDate>Tue, 12 Oct 2010 04:10:38 +0000</pubDate>
		<dc:creator>michael soriano</dc:creator>
				<category><![CDATA[Freebies]]></category>
		<category><![CDATA[General]]></category>
		<category><![CDATA[HTML and PSD]]></category>
		<category><![CDATA[blue]]></category>
		<category><![CDATA[business cards]]></category>
		<category><![CDATA[free]]></category>
		<category><![CDATA[home page]]></category>
		<category><![CDATA[Photoshop]]></category>
		<category><![CDATA[PSD]]></category>
		<category><![CDATA[template]]></category>

		<guid isPermaLink="false">http://fearlessflyer.com/?p=1878</guid>
		<description><![CDATA[It’s been a good couple of years since I started this blog. I look at my old posts and realize that it’s been quite some time since I’ve given out free PSDs. So I browse my hard drive to find a design worth giving. I stumbled on an old home page I created a short ]]></description>
			<content:encoded><![CDATA[<p>It’s been a good couple of years since I started this blog. I look at my old posts and realize that it’s been quite some time since I’ve given out free PSDs.  So I browse my hard drive to find a design worth giving. I stumbled on an old home page I created a short while ago, stared at it, squinted my eye a little bit and said: “<em>that’s one bitchin’ home page</em>”. </p>
<div class="special">UPDATE: Leland over at Theme Lab has done a good job converting this PSD into an XHTML / CSS template. Head over to <a href="http://www.themelab.com/2010/10/15/corporate-blue-free-template/">Theme Lab</a> to download this excellent resource. </div>
<h3>Corporate Blue Home Page</h3>
<p>The design is a modern layout ideally for a financial or business institution (anywhere a progress chart can be represented).  A large feature area with a colorful bar graph sits right below the header. Underneath this area are three even columns with large thumbnails that can house summaries of your company profile, links or even the latest news. </p>
<p><img src="http://fearlessflyer.com/main/wp-content/uploads/2010/10/corporate-blue.jpg" alt="corporate blue Grab Hold of these Free PSD Templates:" title="corporate-blue" width="576" height="701" class="alignnone size-full wp-image-1879" /></p>
<p>Finally, the page includes a mid-size footer with a grayscale version of the logo, page navigation and copyright information. All buttons are vector shapes for easy customization. Page elements are professionally spaced using the 960 grid system, while text layers are anti-aliased to represent how real web fonts look in a live browser. <strong>You can download Corporate Blue from this <a href="http://fearlessflyer.com/downloads/corporate-blue.zip">link</a></strong></p>
<h3>Bang Business Cards</h3>
<p>This second template is a submission from one of my followers: G S Vineeth. The Bang Business Cards is ideal for start ups, graphic designers or even a product.  The design features bright rays of green as a background, topped with a rounded container with subtle gradients. The text elements are beautifully etched, also with the same green shade. </p>
<p><img src="http://fearlessflyer.com/main/wp-content/uploads/2010/10/bang-preview.jpg" alt="bang preview Grab Hold of these Free PSD Templates:" title="bang-preview" width="576" height="323" class="alignnone size-full wp-image-1880" /></p>
<p>The fonts used are called 20th Century which can be downloaded from this <strong><a href="http://www.searchfreefonts.com/free/20th-century-font.htm">link</a></strong>. You can view additional work from GS Vineeth from his <strong><a href="http://graphicriver.net/user/vol/portfolio">Graphic River portfolio</a></strong>. Download the Bang Business Card template from this<strong> <a href="http://fearlessflyer.com/downloads/bang-business-card.zip">link</a></strong>.</p>
<h3>Conclusion</h3>
<p>So it has been a good couple of years. I have a steady rate of readership, a number of downloads as well as a few followers.  My posts keep coming, client work is steady – all is good. Once again, I ask you to keep me going – by simply leaving a nice comment below or follow me in <strong><a href="http://twitter.com/_fearlessflyer">twitter</a></strong> and <strong><a href="http://www.facebook.com/pages/Fearless-Flyer-Design/136158589732362">facebook</a></strong>.  I hope you make use of the .psd files and maybe make your next project a little bit easier. </p>
]]></content:encoded>
			<wfw:commentRss>http://fearlessflyer.com/2010/10/grab-hold-of-these-free-psd-templates/feed/</wfw:commentRss>
		<slash:comments>5</slash:comments>
		</item>
		<item>
		<title>High Quality HTML and PSD Porfolio template &#8211; &#8220;Sifiso&#8221;</title>
		<link>http://fearlessflyer.com/2010/05/html-and-psd-template-sifiso/</link>
		<comments>http://fearlessflyer.com/2010/05/html-and-psd-template-sifiso/#comments</comments>
		<pubDate>Mon, 17 May 2010 18:31:43 +0000</pubDate>
		<dc:creator>michael soriano</dc:creator>
				<category><![CDATA[Freebies]]></category>
		<category><![CDATA[General]]></category>
		<category><![CDATA[HTML and PSD]]></category>
		<category><![CDATA[CSS]]></category>
		<category><![CDATA[jQuery]]></category>
		<category><![CDATA[Photoshop]]></category>
		<category><![CDATA[portfolio]]></category>
		<category><![CDATA[PSD]]></category>
		<category><![CDATA[Quality]]></category>
		<category><![CDATA[template]]></category>
		<category><![CDATA[Web]]></category>
		<category><![CDATA[Web 2.0]]></category>
		<category><![CDATA[XHTML]]></category>

		<guid isPermaLink="false">http://fearlessflyer.com/?p=1468</guid>
		<description><![CDATA[This time around I&#8217;m selling a gorgeous HTML template with the Photoshop files for &#8220;Sifiso&#8221;. Sifiso is a one page &#8220;portfolio-like&#8221; template which you can use for your personal site. It features bold colors, transparent elements as well as hard to miss extra large icons. Sifiso is ideal for web designers, illustrators and photographers; You ]]></description>
			<content:encoded><![CDATA[<p>This time around I&#8217;m selling a gorgeous HTML template with the Photoshop files for <em>&#8220;Sifiso&#8221;</em>. Sifiso is a one page &#8220;portfolio-like&#8221; template which you can use for your personal site. It features bold colors, transparent elements as well as hard to miss extra large icons. Sifiso is ideal for web designers, illustrators and photographers; You can use Sifiso as a final product for your own site, or as a good starting point for your clients. Sifiso costs $5 &#8211; for both the PSD files and source code</p>
<table>
<tr>
<td>
<div class="viewdemo"><a href="http://demo.fearlessflyer.com/html/demo/sifiso/">View The Demo!</a></div>
</td>
<td style="padding-left:10px;">
<div class="buylink"><a href="https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&#038;hosted_button_id=VRM5GGPRUZR2U">Buy in Paypal</a></div>
</td>
</tr>
</table>
<div class="special">Help me continue developing freebies by <strong><a href="https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&#038;hosted_button_id=VRM5GGPRUZR2U">buying</a></strong> this download from Paypal!</div>
<h3>Features</h3>
<p>The one pager Sifiso has all the right stuff for a strong personal portfolio:</p>
<div class="one"><strong>a catchy introduction area</strong> &#8211; a sexy summary of what you do. You have to edit the text in the PSD to change this section</div>
<div class="two"><strong>a testimonials section </strong>- sport what your clients say about you. Simply edit the text inside the p tags in the HTML</div>
<div class="three"><strong>a spot for quotes </strong>- maybe a couple of words from famous people in your industry, again &#8211; open the PSD to edit this area</div>
<div class="four"><strong>showcase area</strong> &#8211; screenshots of your best stuff, add your own pictures and edit the HTML.</div>
<div class="five"><strong>finally, a contact form</strong> &#8211; how else will they get a hold of you? This will have to be done in a server side language of your choice</div>
<p><a href="http://demo.fearlessflyer.com/html/demo/sifiso/"><img class="alignnone size-full wp-image-1474" style="border: 0;" title="Features for Sifiso" src="http://fearlessflyer.com/main/wp-content/uploads/2010/05/full2.jpg" alt="full2 High Quality HTML and PSD Porfolio template   Sifiso" width="576" height="1100" /></a></p>
<h3>How to Edit</h3>
<p>The source code is very pretty straightforward &#8211; simply edit the HTML with your own. The PSD contains 4 files &#8211; one for each main section of the page. All files are layered, grouped and labeled. To edit a text section &#8211; find the layer and edit the text within. Fonts used are &#8220;AR Blanca&#8221; (for the logo), and &#8220;Helvetica Nueu LT Std&#8221; for everything else.</p>
<p><img class="alignnone size-full wp-image-1477" title="Editing Sifiso" src="http://fearlessflyer.com/main/wp-content/uploads/2010/05/how-to-edit.jpg" alt="how to edit High Quality HTML and PSD Porfolio template   Sifiso" width="576" height="400" /></p>
<h3>Conclusion</h3>
<p>Keep in mind that even though Sifiso may be full of images, it is still coded professionally to conform to standards and SEO. I hardly used any &#8220;image&#8221; tags (except for the portfolio section), and still used HTML text where it should be (see screenshot below).</p>
<p><img class="alignnone size-full wp-image-1478" title="Sifiso is SEO friendly" src="http://fearlessflyer.com/main/wp-content/uploads/2010/05/seo.jpg" alt="seo High Quality HTML and PSD Porfolio template   Sifiso" width="576" height="400" /></p>
<p>*Note that I talked about how to code this way in my 3 part post: <strong><a href="http://fearlessflyer.com/2009/11/create-a-single-page-portfolio-from-scratch-part-1-photoshop-mockup/">How to create a single page portfolio from scratch</a></strong>.</p>
<div class="viewdemo"><a href="http://demo.fearlessflyer.com/html/demo/sifiso/">View The Demo!</a></div>
<p>Credits to the icon developers:Coffee Mug by <a href="http://omercetin.deviantart.com/art/Apple-Mug-Icons-and-Extras-152648713"> Omercitin</a>, Paintbrushes by <a href="http://artdesigner.lv/en/archives/342">ArtDesigner.lv</a> and Briefcase by <a href="http://thirteen-eightyone.deviantart.com/art/Briefcase-149934549">thirteen eightyone</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://fearlessflyer.com/2010/05/html-and-psd-template-sifiso/feed/</wfw:commentRss>
		<slash:comments>24</slash:comments>
		</item>
		<item>
		<title>Free PSD &#8211; Medical Software Home Page</title>
		<link>http://fearlessflyer.com/2009/06/free-psd-medical-software-home-page/</link>
		<comments>http://fearlessflyer.com/2009/06/free-psd-medical-software-home-page/#comments</comments>
		<pubDate>Thu, 11 Jun 2009 23:03:39 +0000</pubDate>
		<dc:creator>michael soriano</dc:creator>
				<category><![CDATA[Freebies]]></category>
		<category><![CDATA[General]]></category>
		<category><![CDATA[HTML and PSD]]></category>
		<category><![CDATA[Photoshop]]></category>
		<category><![CDATA[free psd]]></category>
		<category><![CDATA[medical]]></category>
		<category><![CDATA[template]]></category>

		<guid isPermaLink="false">http://fearlessflyer.com/?p=616</guid>
		<description><![CDATA[This week I&#8217;m giving away a PSD mock up for a potential client that I had a while back. The company is a Software Development Group for medical equipment inventory systems. They are responsible for developing systems for hospitals to be able to track their supplies. From bar code scanning, billing and sophisticated inventory tracking ]]></description>
			<content:encoded><![CDATA[<p>This week I&#8217;m giving away a PSD mock up for a potential client that I had a while back. The company is a Software Development Group for medical equipment inventory systems. They are responsible for developing systems for hospitals to be able to track their supplies. From bar code scanning, billing and sophisticated inventory tracking systems. The project failed &#8211; the client never did go forward with their web site redesign. Regardless, I hate to put my vision to waste. Don&#8217;t get me wrong &#8211; anybody can put together a home page in Photoshop but that&#8217;s not the part I&#8217;m feeling wasteful about. </p>
<p>The project I envisioned was a full website turn around. The company was still using static pages with old style tables and in line styling. My proposal was to completely overhaul their site into WordPress. </p>
<p><a href="http://fearlessflyer.com/main/wp-content/uploads/2009/06/Medical-Software.jpg"><img src="http://fearlessflyer.com/main/wp-content/uploads/2009/06/medical-software2.jpg" alt="medical software2 Free PSD   Medical Software Home Page" title="Full View of the File - Click to Enlarge" width="576" height="559" class="alignnone size-full wp-image-617" /></a></p>
<p>As you can see from above I planned on using WordPress as a CMS. A large section that will house a jQuery Content Slider or another form of slideshow that leads viewers to try out the demo. Directly below are a set of three column containers which will pull posts from different categories. A slightly different approach for the footer &#8211; which contains six mini columns as the main sitemap. </p>
<p><strong>Feel free to download this fully layered and grouped PSD file from this <a href="http://fearlessflyer.com/downloads/medical-software.zip">link</a></strong>. Hopefully you can find a good use for the template. If one of you should become successful in taking some company away from static pages &#8211; then I&#8217;m happy. </p>
]]></content:encoded>
			<wfw:commentRss>http://fearlessflyer.com/2009/06/free-psd-medical-software-home-page/feed/</wfw:commentRss>
		<slash:comments>9</slash:comments>
		</item>
		<item>
		<title>How to Create Car Keys in Photoshop</title>
		<link>http://fearlessflyer.com/2009/05/how-to-create-a-key-with-car-alarm-in-photoshop/</link>
		<comments>http://fearlessflyer.com/2009/05/how-to-create-a-key-with-car-alarm-in-photoshop/#comments</comments>
		<pubDate>Sat, 30 May 2009 02:11:02 +0000</pubDate>
		<dc:creator>michael soriano</dc:creator>
				<category><![CDATA[General]]></category>
		<category><![CDATA[Tutorials]]></category>
		<category><![CDATA[free]]></category>
		<category><![CDATA[free psd]]></category>
		<category><![CDATA[Photoshop]]></category>
		<category><![CDATA[PSD]]></category>
		<category><![CDATA[template]]></category>

		<guid isPermaLink="false">http://fearlessflyer.com/?p=561</guid>
		<description><![CDATA[The following tutorial will show you how to create a nice key with a car alarm in Photoshop. This image is a combination of vector shapes as well as rastered images to achieve the effect. The tools we’ll be using in Photoshop are mainly the built in shape tool, filters and the pen tool. The ]]></description>
			<content:encoded><![CDATA[<p>The following tutorial will show you how to create a nice key with a car alarm in Photoshop. This image is a combination of vector shapes as well as rastered images to achieve the effect. The tools we’ll be using in Photoshop are mainly the built in shape tool, filters and the pen tool. The final image is shown below:</p>
<p><img class="alignnone size-full wp-image-563" title="This is how the finished product looks:" src="http://fearlessflyer.com/main/wp-content/uploads/2009/05/key1.jpg" alt="key1 How to Create Car Keys in Photoshop" width="576" height="510" /></p>
<h3>Part 1: The Key</h3>
<p>Using the Rounded Rectangle tool, Create a new shape of a square, with fill color #2c2c2c</p>
<p><img class="alignnone size-full wp-image-564" title="start with a rounded rectangle" src="http://fearlessflyer.com/main/wp-content/uploads/2009/05/key2.jpg" alt="key2 How to Create Car Keys in Photoshop" width="576" height="510" /></p>
<p>Using the Add Anchor Point, add new anchors at both lower corners of the shape. Drag these new anchor points upwards to form a nice edge.</p>
<p><img class="alignnone size-full wp-image-565" title="Modify the edges" src="http://fearlessflyer.com/main/wp-content/uploads/2009/05/key3.jpg" alt="key3 How to Create Car Keys in Photoshop" width="576" height="510" /></p>
<p>Apply a Gradient Overlay on the shape. Adjust the settings as shown below or you can choose your own gradiation.</p>
<p><img class="alignnone size-full wp-image-566" title="add some gradients" src="http://fearlessflyer.com/main/wp-content/uploads/2009/05/key4.jpg" alt="key4 How to Create Car Keys in Photoshop" width="576" height="433" /></p>
<p>Duplicate the layer you just created and Ctrl + T to transform. Transform it to about 90% less than the original size. Make sure you constrain the proportions.</p>
<p><img class="alignnone size-full wp-image-567" title="Duplicate and resize" src="http://fearlessflyer.com/main/wp-content/uploads/2009/05/key5.jpg" alt="key5 How to Create Car Keys in Photoshop" width="576" height="510" /></p>
<p>Apply a new layer style – Stroke, with fill type as gradient, size of 3 and the rest of the settings like shown below:</p>
<p><img class="alignnone size-full wp-image-568" title="modify layer styles" src="http://fearlessflyer.com/main/wp-content/uploads/2009/05/key6.jpg" alt="key6 How to Create Car Keys in Photoshop" width="576" height="430" /></p>
<p>Using the rounded rectangle tool and the ellipse tool, create two more shapes. The rounded rectangle will have a fill color of #ffffff, the ellipse with fill color #2c2c2c.  Apply the same layer styles to both – stroke with gradient fill. Play around with the gradients and try to match the outer shapes:</p>
<p><img class="alignnone size-full wp-image-569" title="New ellipse shape for the hole" src="http://fearlessflyer.com/main/wp-content/uploads/2009/05/key7.jpg" alt="key7 How to Create Car Keys in Photoshop" width="576" height="510" /></p>
<p>Next is the shaft of the key. With the Pen Tool, start outlining the jagged edges of the key shaft. You can use a real key as a guide. I used two shapes for the shaft – one for the main, the other for the underlying teeth behind the main shaft. I also used the line tool to draw a line on top of the main shaft. </p>
<p><img src="http://fearlessflyer.com/main/wp-content/uploads/2009/05/key8.jpg" alt="key8 How to Create Car Keys in Photoshop" title="the shaft" width="576" height="510" class="alignnone size-full wp-image-570" /></p>
<p>Again, apply some layer styles to the two main shapes. First is a stroke with gradient fill type – reduce the size of the stroke line to 1 and adjust the gradient colors. Do the same thing for the teeth.</p>
<p><img src="http://fearlessflyer.com/main/wp-content/uploads/2009/05/key9.jpg" alt="key9 How to Create Car Keys in Photoshop" title="Apply styles" width="576" height="432" class="alignnone size-full wp-image-571" /></p>
<p>The final result should be something like below. We now move on to the car alarm part.</p>
<p><img src="http://fearlessflyer.com/main/wp-content/uploads/2009/05/key10.jpg" alt="key10 How to Create Car Keys in Photoshop" title="We got a key!" width="576" height="510" class="alignnone size-full wp-image-572" /></p>
<h3>Part 2: The Car Alarm</h3>
<p>Hide all the layers you’ve done so far so you won’t get distracted. Starting again with the rounded rectangle tool, create a new shape – slightly bigger than our key head before. Make the radius to 50 pixels for a more rounded look. Go to “<strong>Edit</strong>” > “<strong>Transform</strong>” > “<strong>Perspective</strong>” and drag the upper handles closer to each other. </p>
<p><img src="http://fearlessflyer.com/main/wp-content/uploads/2009/05/key11.jpg" alt="key11 How to Create Car Keys in Photoshop" title="Another rounded rectangle shape" width="576" height="510" class="alignnone size-full wp-image-573" /></p>
<p>Again, apply layer styles to the new shape: An angled gradient overlay with the setting below, as well as a thick stroke with gradient fill type – again play with the shades.</p>
<p><img src="http://fearlessflyer.com/main/wp-content/uploads/2009/05/key12.jpg" alt="key12 How to Create Car Keys in Photoshop" title="set the layer style" width="576" height="432" class="alignnone size-full wp-image-574" /></p>
<p>The first shape should look like something like below. Note that when playing with gradient fills – there’s no exact way to do it. You just have to follow what looks right with your eye considering the light, shadows etc.</p>
<p><img src="http://fearlessflyer.com/main/wp-content/uploads/2009/05/key13.jpg" alt="key13 How to Create Car Keys in Photoshop" title="Reflection of the gradients" width="576" height="510" class="alignnone size-full wp-image-575" /></p>
<p>Next is to add two more shapes using the ellipse tool. One is for the keyhole which is smaller, the other for the button. Both will have stroke styles with gradient fill types. By now you should know how to play with this effect. Remember that the keyhole is to have a fill of white – or whatever background color you have, and the button is a darker red, also filled with a gradient: </p>
<p><img src="http://fearlessflyer.com/main/wp-content/uploads/2009/05/key14.jpg" alt="key14 How to Create Car Keys in Photoshop" title="Ellipse shapes for the hole" width="576" height="510" class="alignnone size-full wp-image-576" /></p>
<p>And we’re done with the car alarm part. Next part is pretty easy – the key rings.</p>
<h3>Part 3: The Rings</h3>
<p>Start with the ellipse tool, create an oval shape (size it according to the key and the alarm). Apply layer style stroke of 1 pixel, with type gradient fill. Adjust the gradient accordingly varying colors from light grey to dark.</p>
<p><img src="http://fearlessflyer.com/main/wp-content/uploads/2009/05/key15.jpg" alt="key15 How to Create Car Keys in Photoshop" title="Again, the ellipse tool to the rescue" width="576" height="510" class="alignnone size-full wp-image-577" /></p>
<p>Duplicate the first ring twice. The duplicate rings should have a Fill (not Opacity) of 60 percent each. Adjust the angle of the gradients of each layer stroke to go in different directions. Again, its up to your judgment what looks best. You’re trying to achieve the illusion of aluminum texture with the shines. </p>
<p><img src="http://fearlessflyer.com/main/wp-content/uploads/2009/05/key16.jpg" alt="key16 How to Create Car Keys in Photoshop" title="duplicated and nudged please!" width="576" height="510" class="alignnone size-full wp-image-578" /></p>
<p>From these three shapes – you want to duplicate them into another group. Click Ctrl &#8211; T to transform about 80 percent smaller than the first group.</p>
<p><img src="http://fearlessflyer.com/main/wp-content/uploads/2009/05/key17.jpg" alt="key17 How to Create Car Keys in Photoshop" title="clone me and make me smaller!" width="576" height="510" class="alignnone size-full wp-image-579" /></p>
<p>And that is the final step for the rings. Next section is combining all the elements together.</p>
<p><img src="http://fearlessflyer.com/main/wp-content/uploads/2009/05/key18.jpg" alt="key18 How to Create Car Keys in Photoshop" title="Look - were almost complete!" width="576" height="510" class="alignnone size-full wp-image-580" /></p>
<h3>Part 4: Combining Them Together</h3>
<p>The easiest way to work with what we have so far is to rasterize the shapes into more manageable sections. Rasterizing means to flatten the shape for a different kind of editing. It is good practice to always keep your layers grouped and organized – in my case, I’ve grouped them into three sections: key, alarm and rings. To rasterize – I select one group, duplicate it and from that group I merge layers. Once its merged – the key group is going to be just a key layer, the alarm group – an alarm layer and so forth. DO NOT rasterize the original group! Its good practice to keep the vector shapes intact just in case you want to change something. </p>
<p>So after merging each of the groups – we should now have four layers: key, alarm and the two rings.</p>
<p>First rotate the key a few degrees clockwise. Put the bigger ring on top of the key layer. Using the ellipse marquee tool, select the inner section of the rings and start erasing the area where the key is supposed to be visible.</p>
<p> <img src="http://fearlessflyer.com/main/wp-content/uploads/2009/05/key19.jpg" alt="key19 How to Create Car Keys in Photoshop" title="brush tool is cool" width="576" height="510" class="alignnone size-full wp-image-581" /></p>
<p>Do the same thing for the ring layer. You can use any selection tool that you’re comfortable with using: Lasso, Magic Wand – I use the pen tool because it’s more precise and have more control. </p>
<p><img src="http://fearlessflyer.com/main/wp-content/uploads/2009/05/key20.jpg" alt="key20 How to Create Car Keys in Photoshop" title="its all in the strokes!" width="576" height="510" class="alignnone size-full wp-image-582" /></p>
<p>Finally, add some shadows in the places there should be shadows. I do not know of an efficient way to do this but to use the brush tool. Using the built in Photoshop shadow or glow effects apply it in the entire layer – leaving you with having to separate the layer, then erasing – this may be suitable for larger surface areas – but for our purpose, just dab a few brush spots – play with the brush types, opacity and strength, and you should have a pretty decent effect: </p>
<p><img src="http://fearlessflyer.com/main/wp-content/uploads/2009/05/key21.jpg" alt="key21 How to Create Car Keys in Photoshop" title="easy optical illusions for shadows" width="576" height="510" class="alignnone size-full wp-image-583" /></p>
<p>Do the same to the rest of the layers. You will be using a combination of rotating, erasing and painting to achieve the interlocking illusion as in a real set of keys. It is important to pay attention where the light, the shines and the shadows are supposed to be. Also, keep in mind – you may rotate your layers, but DO NOT – I repeat <strong>DO NOT resize them</strong>. Resizing rasterized layers result in extreme loss of quality. If ever you need to resize say the key image – you will have to go back to your vector layers for that. The interlocking rings, key and alarm should look something like this: </p>
<p><img src="http://fearlessflyer.com/main/wp-content/uploads/2009/05/key22.jpg" alt="key22 How to Create Car Keys in Photoshop" title="link the imaginary chains" width="576" height="510" class="alignnone size-full wp-image-562" /></p>
<p>And there you have it. You’ve just created a key with car alarm entirely in Photoshop. <strong>You may download the psd file from this <a href="http://fearlessflyer.com/downloads/key-with-alarm.zip">link</a></strong>. All I ask is for you leave me a nice comment below, <a href="http://twitter.com/mks6804">follow me</a> in Twitter or <a href="http://feeds.feedburner.com/Fearlessflyer">subscribe</a> to my RSS Feeds.</p>
<p><img src="http://fearlessflyer.com/main/wp-content/uploads/2009/05/key1.jpg" alt="key1 How to Create Car Keys in Photoshop" title="Theres my keys - now wheres my car?" width="576" height="510" class="alignnone size-full wp-image-563" /></p>
]]></content:encoded>
			<wfw:commentRss>http://fearlessflyer.com/2009/05/how-to-create-a-key-with-car-alarm-in-photoshop/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Free WP Theme &#8211; The Garamond</title>
		<link>http://fearlessflyer.com/2009/05/free-wp-theme-the-garamond/</link>
		<comments>http://fearlessflyer.com/2009/05/free-wp-theme-the-garamond/#comments</comments>
		<pubDate>Fri, 15 May 2009 23:21:16 +0000</pubDate>
		<dc:creator>michael soriano</dc:creator>
				<category><![CDATA[Freebies]]></category>
		<category><![CDATA[General]]></category>
		<category><![CDATA[Wordpress Themes]]></category>
		<category><![CDATA[WP Themes]]></category>
		<category><![CDATA[Blog]]></category>
		<category><![CDATA[Blogger]]></category>
		<category><![CDATA[CSS]]></category>
		<category><![CDATA[free]]></category>
		<category><![CDATA[premium theme]]></category>
		<category><![CDATA[template]]></category>
		<category><![CDATA[the grid]]></category>
		<category><![CDATA[Themes]]></category>
		<category><![CDATA[Wordpress]]></category>
		<category><![CDATA[WP]]></category>

		<guid isPermaLink="false">http://fearlessflyer.com/?p=497</guid>
		<description><![CDATA[Just got done experimenting with a theme. This time &#8211; no photoshop mockups are done; went ahead and dove right in coding. I ended up with a simple, non-graphic intensive theme. Named it after one of my all time favorite fonts &#8211; the Garamond. Update &#8211; there has been a security vulnerability in an image ]]></description>
			<content:encoded><![CDATA[<p>Just got done experimenting with a theme. This time &#8211; no photoshop mockups are done; went ahead and dove right in coding. I ended up with a simple, non-graphic intensive theme. Named it after one of my all time favorite fonts &#8211; the <strong>Garamond</strong>. </p>
<div class="special">Update &#8211; there has been a security vulnerability in an image handling script in this theme. Please update to the new <a href="http://code.google.com/p/timthumb/source/browse/trunk/timthumb.php">Timthumb</a>. Read more details <a href="http://fearlessflyer.com/2011/08/updated-themes-to-the-latest-timthumb-please-reinstall/">here</a>.</div>
<div class="viewdemo"><a href="http://garamond.fearlessflyer.com">View the Demo</a></div>
<h3>The Home Page</h3>
<p>The Garamond&#8217;s home page mimicks a magazine layout. This was made possible without any special wordpress queries, nor does it filter by categories. Instead, the latest post is automatically styled different. Thanks to this neat trick by <a href="http://www.ruhanirabin.com/how-to-style-the-latest-post-in-wordpress/?dsq=9376478#comment-9376478">Ruhani Rabin</a>. The feature image and the thumbnails are automatically resized upon client request. Meaning, you can upload any size image (preferably wider than 540 pixels &#8211; which is the size of the container), assign it to a custom field &#8211; and voila! Images are cropped, zoomed and sharpened when once the browser hits it. The code I used is from Darren Hoyt known as <a href="http://www.darrenhoyt.com/2008/04/02/timthumb-php-script-released/">TimThumb</a>. </p>
<h3>The Inner Pages</h3>
<p>The Garamond is a bloggers theme. Traditional templates are intact: search, archive, category etc. I also included an authors bio at the end of each single post, as well as an author template which grabs all their articles. I went a little overboard in styling the subheadings for the post (shown below). The default font family used is of course &#8211; Garamond; although since it is not a standard font &#8211; Georgia is used as back up. The contrast between the larger text and the tiny Verdana is striking &#8211; which I felt was good. </p>
<p><img src="http://fearlessflyer.com/main/wp-content/uploads/2009/05/garamond-detaill.jpg" alt="garamond detaill Free WP Theme   The Garamond" title="garamond-detaill" width="576" height="500" class="alignnone size-full wp-image-498" /></p>
<h3>Other Features</h3>
<p>The two sidebars and the footer are all widget driven. Comments support Gravatars, pagination as well as multi-level threads. I&#8217;ve also added a random quote container right below the header &#8211; which requires the <a href="http://www.italyisfalling.com/stray-random-quotes/">Stray Quotes</a> plugin by Italyisfalling.com<br />
<br/><br />
You can view the demo from this <a href="http://garamond.fearlessflyer.com/">link</a>, or <strong>download directly from <a href="http://fearlessflyer.com/downloads/the-garamond.zip">here</a>.</strong> All I ask is for you leave a comment below &#8211; or follow my updates via <strong><a href="http://twitter.com/_fearlessflyer">twitter</a></strong>. </p>
]]></content:encoded>
			<wfw:commentRss>http://fearlessflyer.com/2009/05/free-wp-theme-the-garamond/feed/</wfw:commentRss>
		<slash:comments>10</slash:comments>
		</item>
		<item>
		<title>Free PSD file &#8211; Traffic Home Page</title>
		<link>http://fearlessflyer.com/2009/04/free-psd-file-traffic-home-page/</link>
		<comments>http://fearlessflyer.com/2009/04/free-psd-file-traffic-home-page/#comments</comments>
		<pubDate>Mon, 06 Apr 2009 03:10:39 +0000</pubDate>
		<dc:creator>michael soriano</dc:creator>
				<category><![CDATA[Freebies]]></category>
		<category><![CDATA[General]]></category>
		<category><![CDATA[HTML and PSD]]></category>
		<category><![CDATA[Photoshop]]></category>
		<category><![CDATA[Websites]]></category>
		<category><![CDATA[free]]></category>
		<category><![CDATA[free psd]]></category>
		<category><![CDATA[template]]></category>

		<guid isPermaLink="false">http://fearlessflyer.com/?p=403</guid>
		<description><![CDATA[I have decided to give away my mock ups for clients that didn&#8217;t work out. Since I have a grip of them just taking up space in my hard drive &#8211; I&#8217;ve decided to let the public have it. They are complete layered Photoshop files. The layers are organized into groups, vectors etc. Icons and ]]></description>
			<content:encoded><![CDATA[<p>I have decided to give away my mock ups for clients that didn&#8217;t work out. Since I have a grip of them just taking up space in my hard drive &#8211; I&#8217;ve decided to let the public have it. They are complete layered Photoshop files. The layers are organized into groups, vectors etc. Icons and images used are 100% royalty free, so you don&#8217;t have to worry about that legal stuff. Most of these files are leftovers from design contests in websites such as 99designs and CrowdSpring. In this case, the client was a web analytics software company &#8211; Traffic. They launched a home page contest a while back and this is my entry that didn&#8217;t win. The screen shot below is a preview of how it looks: </p>
<p><img src="http://fearlessflyer.com/main/wp-content/uploads/2009/04/traffichome-page.jpg" alt="traffichome page Free PSD file   Traffic Home Page" title="traffichome-feature" class="alignnone size-full wp-image-408" /></p>
<p>The Traffic Logo is done by another designer which was required to stay intact. <strong>You can download the .psd files from this  <a href="http://fearlessflyer.com/downloads/traffic-files.zip">link</a></strong>. Please feel free to comment below or follow me in <strong><a href="http://twitter.com/mks6804">Twitter</a></strong>.  </p>
]]></content:encoded>
			<wfw:commentRss>http://fearlessflyer.com/2009/04/free-psd-file-traffic-home-page/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
	</channel>
</rss>

<!-- Served from: fearlessflyer.com @ 2012-02-03 18:45:52 by W3 Total Cache -->
