<?xml version="1.0" encoding="UTF-8"?>
<?xml-stylesheet type="text/xsl" media="screen" href="/~d/styles/rss2full.xsl"?><?xml-stylesheet type="text/css" media="screen" href="http://feeds.feedburner.com/~d/styles/itemcontent.css"?><rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:wfw="http://wellformedweb.org/CommentAPI/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:atom="http://www.w3.org/2005/Atom" xmlns:sy="http://purl.org/rss/1.0/modules/syndication/" xmlns:slash="http://purl.org/rss/1.0/modules/slash/" xmlns:feedburner="http://rssnamespace.org/feedburner/ext/1.0" version="2.0">

<channel>
	<title>Fearlessflyer Design</title>
	
	<link>http://fearlessflyer.com</link>
	<description>Web Development, Blog Design and Email Marketing</description>
	<lastBuildDate>Tue, 07 Jul 2009 15:06:11 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=abc</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="self" href="http://feeds.feedburner.com/Fearlessflyer" type="application/rss+xml" /><feedburner:emailServiceId>Fearlessflyer</feedburner:emailServiceId><feedburner:feedburnerHostname>http://feedburner.google.com</feedburner:feedburnerHostname><item>
		<title>Styling Your Widgetized Sidebar</title>
		<link>http://feedproxy.google.com/~r/Fearlessflyer/~3/kBUtInyLRNY/</link>
		<comments>http://fearlessflyer.com/2009/07/styling-your-widgetized-sidebar/#comments</comments>
		<pubDate>Tue, 07 Jul 2009 05:56:11 +0000</pubDate>
		<dc:creator>Michael Soriano</dc:creator>
				<category><![CDATA[General]]></category>
		<category><![CDATA[Tutorials]]></category>
		<category><![CDATA[WP Themes]]></category>
		<category><![CDATA[Sidebar]]></category>
		<category><![CDATA[Themes]]></category>
		<category><![CDATA[Widgets]]></category>
		<category><![CDATA[Wordpress]]></category>

		<guid isPermaLink="false">http://fearlessflyer.com/?p=658</guid>
		<description><![CDATA[There’s no real correct way on how a sidebar should look. But since the dawn of HTML, we’ve seen sidebars that span vertically in the left, right – twin column, triple column – heck – I’ve even seen them in the middle! (I guess that wouldn’t be a sidebar then would it?). Nonetheless, the sidebar [...]]]></description>
			<content:encoded><![CDATA[<p>There’s no real correct way on how a sidebar should look. But since the dawn of HTML, we’ve seen sidebars that span vertically in the left, right – twin column, triple column – heck – I’ve even seen them in the middle! (I guess that wouldn’t be a sidebar then would it?). Nonetheless, the sidebar to me is one of the more exciting components of a website. Furthermore, Wordpress has given us the ability to “widgetize” our sidebars – which to a surprise, is very easy to style. </p>
<p>Note that you can “widgetize” almost any of your template files, but for the sake of this article, we will take a look at just the more common, single sidebar. </p>
<h3>First of all &#8211; What are Widgets?</h3>
<p>According to <a href="http://automattic.com/code/widgets/">Automattic</a> (the company behind Wordpress), “<em>they’re just things you can use to personalize your WordPress site without knowing HTML</em>”. To elaborate further, widgets are like a fast way to plug in bits of code into your sidebar. Widgets are accessed via the admin panel, under “Appearance” > “Widgets”. Common widgets are Calendar, Meta, Recent Posts, the Tag Cloud and Text. Widgets are not to be confused with “plugins”. Although there are some plugins that become available as “Widgets” once you install them. </p>
<h3>Why use Widgets? </h3>
<p>For theme developers – it is almost a necessity for your theme to be widgetized. This means that you have to tailor your theme to non-savvy users to be able to customize your theme to use these small snippets of code without writing a bit of HMTL. It is a way to cater to their needs as well as expand and utilize the full capability of Wordpress. Check out the screenshot below of the Widgets section from the admin panel: </p>
<p><img src="http://fearlessflyer.com/main/wp-content/uploads/2009/07/widgets-1.jpg" alt="widgets-1" title="widgets-1" width="576" height="400" class="alignnone size-full wp-image-660" /></p>
<p>Now consider the user of your theme doesn’t know any web development – doesn’t this functionality come in very handy? This is why widgetizing your themes is always a good idea.</p>
<h3>Styling Your Widgetized Sidebar</h3>
<p><strong>The Container Approach:</strong></p>
<p>I’m sure you’ve seen this kind of sidebar. It’s one where widgets are compartmentalized or “boxed”. May it be sharp squares, faded edges or even rounded corners – the container approach is definitely one of the more popular sidebar styles around. Take a look at a typical container for a widget: </p>
<p><img src="http://fearlessflyer.com/main/wp-content/uploads/2009/07/widgets-3.jpg" alt="widgets-3" title="widgets-3" width="576" height="488" class="alignnone size-full wp-image-662" /></p>
<p>As you can see, the entire container can be drawn up by just one DIV. This is what the “<em>before_widget</em>” and “<em>after_widget</em>” name-value pairs are for in your functions.php:</p>
<p><img src="http://fearlessflyer.com/main/wp-content/uploads/2009/07/widgets-2.jpg" alt="widgets-2" title="widgets-2" width="576" height="430" class="alignnone size-full wp-image-661" /></p>
<p>Note that declaring a “sidebar-column” div for the widget container – you are now able to style unordered list items, as well as their child elements. As with my example, I’ve designated bigger icons for the parent list-style property, and a smaller arrow button for the children. </p>
<p>Below are a couple of good example websites that use the container approach for their sidebars:  </p>
<p><img src="http://fearlessflyer.com/main/wp-content/uploads/2009/07/widgets-5.jpg" alt="widgets-5" title="widgets-5" width="576" height="450" class="alignnone size-full wp-image-664" /><br />
<a href="http://www.gomediazine.com">http://www.gomediazine.com</a></p>
<p><img src="http://fearlessflyer.com/main/wp-content/uploads/2009/07/widgets-4.jpg" alt="widgets-4" title="widgets-4" width="576" height="450" class="alignnone size-full wp-image-663" /><br />
<a href="http://www.blurbia.com/blog">http://www.blurbia.com/blog</a></p>
<p><strong>The Continuous Column Approach:</strong></p>
<p>This approach preserves the notion of a sidebar being – just a real bar. May it be in the right side or the left, the continuous column sidebar remains classic, simple and if done right – timeless. </p>
<p>Take a look at the simplicity of this style: </p>
<p><img src="http://fearlessflyer.com/main/wp-content/uploads/2009/07/widgets-6.jpg" alt="widgets-6" title="widgets-6" width="574" height="326" class="alignnone size-full wp-image-665" /></p>
<p>In this case, all I really styled is the headings of each widget. This is what the function.php’s “before_title” and “after_title” comes in handy. I used a regular H3 tag, assigning just the right font style, sufficient padding and a tiny bottom-border image – and it’s ready to go.   </p>
<p>As mentioned, the continuous column approach gives your sidebar that “clean” look. It is used by many news and magazine style blogs in the conservative end. Two popular websites that employ the continuous column approach are:  </p>
<p><img src="http://fearlessflyer.com/main/wp-content/uploads/2009/07/widgets-7.jpg" alt="widgets-7" title="widgets-7" width="576" height="450" class="alignnone size-full wp-image-666" /><br />
<a href="http://www.woothemes.com/blog/">http://www.woothemes.com/blog/</a></p>
<p><img src="http://fearlessflyer.com/main/wp-content/uploads/2009/07/widgets-8.jpg" alt="widgets-8" title="widgets-8" width="576" height="450" class="alignnone size-full wp-image-667" /><br />
<a href="http://daily.creattica.com/">http://daily.creattica.com/</a></p>
<h3>Anything Goes:</h3>
<p>Anything goes is exactly what it implies. It is very random, no compartments, borders or even visible patterns. Although it is still a column, there is no definite distinction where widgets start or end. Note that this can only be achieved by combining the “<em>fewest similar</em>” widgets, along with static elements. By “fewest similar” I mean widgets that are visually different from one another. For example: “Recent Posts”, “Archives” and “Categories” widgets are all rendered as lists. </p>
<p>Remember – you can play with static elements and combine them with the more dynamic widgets, to give your sidebar a more arbitrary look: </p>
<p><img src="http://fearlessflyer.com/main/wp-content/uploads/2009/07/widgets-9.jpg" alt="widgets-9" title="widgets-9" width="574" height="600" class="alignnone size-full wp-image-668" /></p>
<p>Take a look at these websites that have an “anything goes” style sidebar: </p>
<p><img src="http://fearlessflyer.com/main/wp-content/uploads/2009/07/widgets-10.jpg" alt="widgets-10" title="widgets-10" width="576" height="450" class="alignnone size-full wp-image-669" /><br />
<a href="http://www.webdesignerwall.com/">http://www.webdesignerwall.com/</a></p>
<p><img src="http://fearlessflyer.com/main/wp-content/uploads/2009/07/widgets-11.jpg" alt="widgets-11" title="widgets-11" width="576" height="450" class="alignnone size-full wp-image-659" /><br />
<a href="http://www.dawghousedesignstudio.com/">http://www.dawghousedesignstudio.com/</a></p>
<p><strong>What about you? What’s your take on styling sidebars and widgets?</strong></p>

<p><a href="http://feedads.g.doubleclick.net/~a/8hXyIcGl5khYDlO4EUO48CSxs5U/0/da"><img src="http://feedads.g.doubleclick.net/~a/8hXyIcGl5khYDlO4EUO48CSxs5U/0/di" border="0" ismap="true"></img></a><br/>
<a href="http://feedads.g.doubleclick.net/~a/8hXyIcGl5khYDlO4EUO48CSxs5U/1/da"><img src="http://feedads.g.doubleclick.net/~a/8hXyIcGl5khYDlO4EUO48CSxs5U/1/di" border="0" ismap="true"></img></a></p><img src="http://feeds.feedburner.com/~r/Fearlessflyer/~4/kBUtInyLRNY" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://fearlessflyer.com/2009/07/styling-your-widgetized-sidebar/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		<feedburner:origLink>http://fearlessflyer.com/2009/07/styling-your-widgetized-sidebar/</feedburner:origLink></item>
		<item>
		<title>How to Create a Slick jQuery Login Form for Wordpress</title>
		<link>http://feedproxy.google.com/~r/Fearlessflyer/~3/WCW0CxEnHMw/</link>
		<comments>http://fearlessflyer.com/2009/06/how-to-create-a-slick-jquery-login-form-for-wordpress/#comments</comments>
		<pubDate>Sat, 20 Jun 2009 01:57:53 +0000</pubDate>
		<dc:creator>Michael Soriano</dc:creator>
				<category><![CDATA[General]]></category>
		<category><![CDATA[Tutorials]]></category>
		<category><![CDATA[jQuery]]></category>
		<category><![CDATA[Login Form]]></category>
		<category><![CDATA[Wordpress]]></category>

		<guid isPermaLink="false">http://fearlessflyer.com/?p=624</guid>
		<description><![CDATA[Every Wordpress site has its login form in its own page located at: yoursite/wp-admin. But what if you want this form to appear in a more convenient place such as your header template? This will add flexibility to your blog by making your admin pages more accessible. Furthermore, adding a little jQuery  makes this [...]]]></description>
			<content:encoded><![CDATA[<p>Every Wordpress site has its login form in its own page located at: yoursite/wp-admin. But what if you want this form to appear in a more convenient place such as your header template? This will add flexibility to your blog by making your admin pages more accessible. Furthermore, adding a little jQuery  makes this form semi-visible by having a toggle switch. </p>
<h3>The Images</h3>
<p>I only used a couple of images for the form. First is the little tab that extends just right below the edge of our browser that when clicked, shows the entire form. Second is the actual login button. Note that you don’t have to create any images at all for this form – regular CSS styling would look fine. In my case – I used rounded edges for a more stylistic look; hence the need for images:</p>
<p><img src="http://fearlessflyer.com/main/wp-content/uploads/2009/06/jquery-login-1.jpg" alt="jquery-login-1" title="jquery-login-1" width="576" height="101" class="alignnone size-full wp-image-625" /></p>
<h3>The Form</h3>
<p>This is where the functionality kicks in. This code came from Kriesi’s post: “<a href="http://www.kriesi.at/archives/admin-login-on-your-front-page">Admin login in your front page</a>”.  His code is basically a valid login form that can reside in any page of your Wordpress site. An else condition is also included that shows additional options for when the user is logged in. I added a table (that’s correct, I used a TABLE! – so shoot me!) for the input fields and labels to behave and align accordingly. Of course – you can omit the table if you want to. I’ve also added several DIV elements so our form can be housed in a little box. </p>
<p>This part shows when the user isn’t logged in:</p>
<pre class="brush: c-sharp;">
&lt;div id=&quot;quick-login&quot;&gt;
  &lt;div id=&quot;login-form&quot;&gt;
  &lt;?php if (!(current_user_can('level_0'))){ ?&gt;
  &lt;form action=&quot;&lt;?php echo get_option('home'); ?&gt;/wp-login.php&quot; method=&quot;post&quot;&gt;
&lt;table&gt;
&lt;tr&gt;
&lt;td&gt; 
&lt;label for=&quot;label&quot;&gt;User&lt;/label&gt;
&lt;/td&gt;
&lt;td&gt; 
&lt;label for=&quot;label&quot;&gt;Password&lt;/label&gt;
&lt;em class=&quot;forgot&quot;&gt;&lt;a href=&quot;&lt;?php echo get_option('home'); ?&gt;/wp-login.php?action=lostpassword&quot;&gt;Forgot?&lt;/a&gt;&lt;/em&gt;&lt;/span&gt;&lt;/td&gt;
&lt;td&gt;&amp;nbsp;&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt; 
&lt;input type=&quot;text&quot; name=&quot;log&quot; id=&quot;log&quot; value=&quot;&lt;?php echo wp_specialchars(stripslashes($user_login), 1) ?&gt;&quot; size=&quot;20&quot; class=&quot;login-fields&quot; /&gt;
&lt;/td&gt;
&lt;td&gt; 
&lt;input type=&quot;password&quot; name=&quot;pwd&quot; id=&quot;pwd&quot; size=&quot;20&quot; class=&quot;login-fields&quot;/&gt;
&lt;/td&gt;
&lt;td&gt; 
&lt;input type=&quot;submit&quot; name=&quot;submit&quot; value=&quot;&quot; class=&quot;login-button&quot; /&gt;
&lt;input type=&quot;hidden&quot; name=&quot;redirect_to&quot; value=&quot;&lt;?php echo $_SERVER['REQUEST_URI']; ?&gt;&quot; /&gt;
&lt;/td&gt;
&lt;/tr&gt;
&lt;/table&gt; 
&lt;/form&gt;
</pre>
<p>This code shows when the user IS logged in. I’ve also included my own message for the logged in user. You should adjust this to accommodate your theme. </p>
<pre class="brush: c-sharp;">
&lt;?php } else { ?&gt;
  &lt;div id=&quot;logged-in-box&quot;&gt;
  &lt;p&gt;You can now quickly edit your posts by clicking the &lt;em&gt;Edit This&lt;/em&gt; &amp;nbsp;buttons after each post&lt;/p&gt;
&lt;ul class=&quot;admin_box&quot;&gt;
&lt;li&gt;&lt;a href=&quot;&lt;?php echo get_option('home'); ?&gt;/wp-admin/&quot;&gt;Dashboard&lt;/a&gt;&lt;/li&gt; 
&lt;li&gt;&lt;a href=&quot;&lt;?php echo wp_logout_url(urlencode($_SERVER['REQUEST_URI'])); ?&gt;&quot;&gt;logout&lt;/a&gt;&lt;/li&gt;
&lt;/ul&gt; 
&lt;/div&gt;&lt;!--logged-in-box--&gt; 

&lt;?php }?&gt;
  &lt;/div&gt;&lt;!--login-form--&gt;	
</pre>
<h3>The CSS </h3>
<p>Now that we have all the elements in place, we can proceed with styling them. Note the color for the tab image is the background color for the entire DIV. Another important property is “display:none” &#8211; which hides the form by default. This is what jQuery will toggle to “display:block” when we’re done. </p>
<pre class="brush: css;">
a.menu_class {float:right; background:url(images/button-toggle3.png); width:184px; height:32px; text-indent:-9999px; outline-style: none;}
  #login-form {float:right; padding:2px 10px 10px 10px ; display:none; background:#397846;}
  #login-form label {color:#FFFFFF; text-transform:uppercase; font-size:11px; padding-left:5px; font-weight:bold; font-family:verdana; position:relative; top:5px; left:0;}
  #login-form em a {color:#a1dbe6; text-decoration:none; font-size:10px; position:relative; top:5px; left:37px;}
  #login-form em a:hover {color:#999999;}
  input.login-fields {border:none; background:#444444; padding:7px 5px; margin:0 10px 0 2px; color:#FFFFFF;}
  input.login-button {width:101px; height:36px; background:url(images/login-btn.png); border:none;}
  #logged-in-box {width:456px;}
  #logged-in-box p {float:right; width:238px; line-height:14px; font-size:10px; padding:5px 10px 0 0; color:#999999;}
  #logged-in-box p em {font-style:normal; color:#a1dbe6;}
  ul.admin_box {padding:10px 20px 20px 10px;}
  ul.admin_box li{float:left; list-style:none; padding:0 10px 10px 10px; text-align:center; }
  ul.admin_box li a{text-decoration:none; color:#FFFFFF; text-transform:uppercase; font-size:11px; font-weight:bold; font-family:verdana;}
  ul.admin_box li a:hover {color:#ccc;}
</pre>
<h3>The jQuery</h3>
<p>Our form is complete, styles and all. The last thing we need is the action. We accomplish this by adding jQuery. First of, don’t forget to reference the library and your custom script in your head section: </p>
<pre class="brush: c-sharp;">
&lt;script type=&quot;text/javascript&quot; src=&quot;&lt;?php bloginfo('template_directory'); ?&gt;/scripts/js/jquery.js&quot;&gt;&lt;/script&gt;
&lt;script type=&quot;text/javascript&quot; src=&quot;&lt;?php bloginfo('template_directory'); ?&gt;/scripts/js/slider.js&quot;&gt;&lt;/script&gt;
</pre>
<p>Then the following few lines of code is what we include in our custom script (“slider.js”). </p>
<pre class="brush: c-sharp;">
$(document).ready(function () {
$('a.menu_class').click(function () {
$('div#login-form').slideToggle('medium');
});
});
</pre>
<p>And that’s it! You have created a slick jQuery powered login form for your Wordpress site. This particular form is designed to be placed in your header file. Note that the form will work from any template in your theme. <strong>Give the <a href="http://blue.fearlessflyer.com/home/jquery-demo/">demo</a> a try</strong> – I’ve designated a test user account so you can see how the form looks when logged in.</p>

<p><a href="http://feedads.g.doubleclick.net/~a/Q1Ii7r_Up5GbRvqeQZb5Hx7emKA/0/da"><img src="http://feedads.g.doubleclick.net/~a/Q1Ii7r_Up5GbRvqeQZb5Hx7emKA/0/di" border="0" ismap="true"></img></a><br/>
<a href="http://feedads.g.doubleclick.net/~a/Q1Ii7r_Up5GbRvqeQZb5Hx7emKA/1/da"><img src="http://feedads.g.doubleclick.net/~a/Q1Ii7r_Up5GbRvqeQZb5Hx7emKA/1/di" border="0" ismap="true"></img></a></p><img src="http://feeds.feedburner.com/~r/Fearlessflyer/~4/WCW0CxEnHMw" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://fearlessflyer.com/2009/06/how-to-create-a-slick-jquery-login-form-for-wordpress/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://fearlessflyer.com/2009/06/how-to-create-a-slick-jquery-login-form-for-wordpress/</feedburner:origLink></item>
		<item>
		<title>Free PSD – Medical Software Home Page</title>
		<link>http://feedproxy.google.com/~r/Fearlessflyer/~3/mfdG_i0rvXw/</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[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><img src="http://fearlessflyer.com/main/wp-content/uploads/2009/06/medical-software2.jpg" alt="medical-software2" title="medical-software2" width="576" height="559" class="alignnone size-full wp-image-617" /></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://www.box.net/shared/y7zqb53o0q">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>

<p><a href="http://feedads.g.doubleclick.net/~a/zoUsBcsT1TMgsxZqcmE_Dx8C08I/0/da"><img src="http://feedads.g.doubleclick.net/~a/zoUsBcsT1TMgsxZqcmE_Dx8C08I/0/di" border="0" ismap="true"></img></a><br/>
<a href="http://feedads.g.doubleclick.net/~a/zoUsBcsT1TMgsxZqcmE_Dx8C08I/1/da"><img src="http://feedads.g.doubleclick.net/~a/zoUsBcsT1TMgsxZqcmE_Dx8C08I/1/di" border="0" ismap="true"></img></a></p><img src="http://feeds.feedburner.com/~r/Fearlessflyer/~4/mfdG_i0rvXw" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://fearlessflyer.com/2009/06/free-psd-medical-software-home-page/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://fearlessflyer.com/2009/06/free-psd-medical-software-home-page/</feedburner:origLink></item>
		<item>
		<title>Free WP Theme – Blue Rooster</title>
		<link>http://feedproxy.google.com/~r/Fearlessflyer/~3/CGLdYkyL4us/</link>
		<comments>http://fearlessflyer.com/2009/06/free-wp-theme-blue-rooster/#comments</comments>
		<pubDate>Fri, 05 Jun 2009 17:33:50 +0000</pubDate>
		<dc:creator>Michael Soriano</dc:creator>
				<category><![CDATA[Freebies]]></category>
		<category><![CDATA[General]]></category>
		<category><![CDATA[WP Themes]]></category>
		<category><![CDATA[free]]></category>
		<category><![CDATA[Wordpress]]></category>

		<guid isPermaLink="false">http://fearlessflyer.com/?p=599</guid>
		<description><![CDATA[Finally done with a simple theme called Blue Rooster. The theme is a two column layout with a extra templates that can convert your blog into a CMS. The sidebar and footer are both widgetized, author and category templates included, as well as social buttons already intact. The theme style is a mix of rounded [...]]]></description>
			<content:encoded><![CDATA[<p>Finally done with a simple theme called <strong>Blue Rooster</strong>. The theme is a two column layout with a extra templates that can convert your blog into a CMS. The sidebar and footer are both widgetized, author and category templates included, as well as social buttons already intact. The theme style is a mix of rounded corners, flat edges and wooden elements with a schema of muted, dark colors on a plain white surface. Blue Rooster is free under Creative Commons license. </p>
<h3>Usage</h3>
<p>Blue Rooster is ready to use out of the box. The standard blog template will work with or without assigning thumbnails to your posts. In order to use thumbnails &#8211; you would have to assign custom fields to your posts with name: &#8220;<strong>image</strong>&#8220;. To learn more about custom fields &#8211; check this <a href="http://codex.wordpress.org/Using_Custom_Fields">link </a>from the Wordpress Codex. <strong>You DO NOT have to resize your images for the thumbnails</strong>, thanks to the Darren Hoyt for his <a href="http://www.darrenhoyt.com/2008/04/02/timthumb-php-script-released/">TimThumb</a> script which made this all possible. The thumbnails are also powered by jQuery: <a href="http://www.no-margin-for-errors.com/projects/prettyPhoto-jquery-lightbox-clone/">PrettyPhoto</a> &#8211; which is a lightbox clone where the larger images are displayed when clicked. A link to the single post is also included with the larger image. </p>
<h3>The Bonus Templates</h3>
<p><img src="http://fearlessflyer.com/main/wp-content/uploads/2009/06/blue-rooster2.jpg" alt="blue-rooster2" title="blue-rooster2" width="576" height="323" class="alignnone size-full wp-image-605" /></p>
<p><strong>If you want to use the slide show in the front page</strong> &#8211; just apply the template &#8220;<strong>template-home</strong>&#8221; to your home page. Then make this page the static page of your site. To customize the slide show &#8211; simply replace the images in the images folder. Note that there are two sets of images: the larger image and the bottom bar. The active state and non-active state of the bottom bar matches the larger image. The <strong>Testimonials</strong> section in the template are actual posts under a category: testimonials. Simply create this category and start creating posts under it. The testimonial author works as the title for this section. </p>
<p><strong>The Photo Gallery </strong> page is as simple as applying &#8220;photo gallery&#8221; to a page. The images in this gallery are automatically populated from your custom field thumbnails. So in order for this to populate &#8211; you must use thumbnails in your post. </p>
<h3>Other Stuff</h3>
<p>A custom login form is built in the header which is also jQuery powered. Once logged in will give you quick access to the dashboard, as well as quick &#8220;<strong>Edit</strong>&#8221; links after each post. The single post page includes an author information which feeds information from your user profile and Gravatar. So to utilize this section &#8211; your user information and gravatar must be filled out. The comments section support threading and pagination. </p>
<p><strong>You can demo Blue Rooster from this <a href="http://blue.fearlessflyer.com/">link</a></strong>. Download the theme from <a href="http://www.box.net/shared/j2trh2cva5">here</a>. I can also release the .psd files for customization only if I get a large response (by leaving comments). Otherwise &#8211; feel free to check it out and use it for your next project. </p>

<p><a href="http://feedads.g.doubleclick.net/~a/rZV6L41iZm8qxWOIDebelH3Ai8o/0/da"><img src="http://feedads.g.doubleclick.net/~a/rZV6L41iZm8qxWOIDebelH3Ai8o/0/di" border="0" ismap="true"></img></a><br/>
<a href="http://feedads.g.doubleclick.net/~a/rZV6L41iZm8qxWOIDebelH3Ai8o/1/da"><img src="http://feedads.g.doubleclick.net/~a/rZV6L41iZm8qxWOIDebelH3Ai8o/1/di" border="0" ismap="true"></img></a></p><img src="http://feeds.feedburner.com/~r/Fearlessflyer/~4/CGLdYkyL4us" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://fearlessflyer.com/2009/06/free-wp-theme-blue-rooster/feed/</wfw:commentRss>
		<slash:comments>19</slash:comments>
		<feedburner:origLink>http://fearlessflyer.com/2009/06/free-wp-theme-blue-rooster/</feedburner:origLink></item>
		<item>
		<title>How to Create a Key with Car Alarm in Photoshop</title>
		<link>http://feedproxy.google.com/~r/Fearlessflyer/~3/jHoOp-KyPhU/</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[Photoshop]]></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="key1" src="http://fearlessflyer.com/main/wp-content/uploads/2009/05/key1.jpg" alt="key1" 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="key2" src="http://fearlessflyer.com/main/wp-content/uploads/2009/05/key2.jpg" alt="key2" 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="key3" src="http://fearlessflyer.com/main/wp-content/uploads/2009/05/key3.jpg" alt="key3" 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="key4" src="http://fearlessflyer.com/main/wp-content/uploads/2009/05/key4.jpg" alt="key4" 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="key5" src="http://fearlessflyer.com/main/wp-content/uploads/2009/05/key5.jpg" alt="key5" 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="key6" src="http://fearlessflyer.com/main/wp-content/uploads/2009/05/key6.jpg" alt="key6" 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="key7" src="http://fearlessflyer.com/main/wp-content/uploads/2009/05/key7.jpg" alt="key7" 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" title="key8" 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" title="key9" 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" title="key10" 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" title="key11" 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" title="key12" 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" title="key13" 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" title="key14" 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" title="key15" 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" title="key16" 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" title="key17" 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" title="key18" 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" title="key19" 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" title="key20" 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" title="key21" 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" title="key22" 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. You may download the psd file from this <a href="http://www.box.net/shared/9c920mc1qb">link</a>. 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" title="key1" width="576" height="510" class="alignnone size-full wp-image-563" /></p>

<p><a href="http://feedads.g.doubleclick.net/~a/beaek8EQn7BazE63192nIUA4NOY/0/da"><img src="http://feedads.g.doubleclick.net/~a/beaek8EQn7BazE63192nIUA4NOY/0/di" border="0" ismap="true"></img></a><br/>
<a href="http://feedads.g.doubleclick.net/~a/beaek8EQn7BazE63192nIUA4NOY/1/da"><img src="http://feedads.g.doubleclick.net/~a/beaek8EQn7BazE63192nIUA4NOY/1/di" border="0" ismap="true"></img></a></p><img src="http://feeds.feedburner.com/~r/Fearlessflyer/~4/jHoOp-KyPhU" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://fearlessflyer.com/2009/05/how-to-create-a-key-with-car-alarm-in-photoshop/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://fearlessflyer.com/2009/05/how-to-create-a-key-with-car-alarm-in-photoshop/</feedburner:origLink></item>
		<item>
		<title>Create A Subscribe Bar with CSS Sprites</title>
		<link>http://feedproxy.google.com/~r/Fearlessflyer/~3/NHZii1Zqxog/</link>
		<comments>http://fearlessflyer.com/2009/05/create-a-subscribe-bar-with-css-sprites/#comments</comments>
		<pubDate>Fri, 22 May 2009 06:48:37 +0000</pubDate>
		<dc:creator>Michael Soriano</dc:creator>
				<category><![CDATA[General]]></category>
		<category><![CDATA[Tutorials]]></category>

		<guid isPermaLink="false">http://fearlessflyer.com/?p=511</guid>
		<description><![CDATA[Having a subscribe bar is almost a necessity for modern websites. This organizes your reader&#8217;s options on how to stay informed of your updates and new posts. May it be through Twitter, RSS, Email or even Facebook &#8211; you can display this bar in almost any part of your web pages. This following will teach [...]]]></description>
			<content:encoded><![CDATA[<p>Having a subscribe bar is almost a necessity for modern websites. This organizes your reader&#8217;s options on how to stay informed of your updates and new posts. May it be through Twitter, RSS, Email or even Facebook &#8211; you can display this bar in almost any part of your web pages. This following will teach you how to create a subscribe bar from scratch using Photoshop and a CSS technique known as sprites.  </p>
<h3>Part 1 &#8211; Creating the Image</h3>
<p>In Photoshop, create a new image 432 pixels by 78 pixels. Add a title for your bar, and four icons of your subscription options. In our case, we&#8217;re using an RSS feed icon, Twitter, Email and Facebook. *Icons are from <a href="http://wefunction.com/2009/05/free-social-icons-app-icons/">WeFunction</a> Collection. Line them up and space them evenly. </p>
<p><img src="http://fearlessflyer.com/main/wp-content/uploads/2009/05/social-0.jpg" alt="social-0" title="social-0" width="576" height="374" class="alignnone size-full wp-image-515" /></p>
<p>Add guides that divide each button. Also be sure to add a guide right on the top of the document. Lock the guides in place – you will need these dimensions when creating the CSS. </p>
<p><img src="http://fearlessflyer.com/main/wp-content/uploads/2009/05/social-01.jpg" alt="social-01" title="social-01" width="576" height="375" class="alignnone size-full wp-image-516" /></p>
<p>Multiply the canvas height by two. Make sure you click the button that keeps the canvas flushed to the bottom</p>
<p><img src="http://fearlessflyer.com/main/wp-content/uploads/2009/05/social-02.jpg" alt="social-02" title="social-02" width="576" height="338" class="alignnone size-full wp-image-518" /></p>
<p>Select all existing layers and create a duplicate set. Merge all the layers in that set to create a single layer which we’ll use for the hover effect of the links. </p>
<p><img src="http://fearlessflyer.com/main/wp-content/uploads/2009/05/social-11.jpg" alt="social-1" title="social-1" class="alignnone size-full wp-image-517" /></p>
<p>Nudge the new layer upwards – make sure it’s lined up exactly as the bottom layers. To create a hover effect – I desaturate the layer all the way to the max – making it a grayscale layer.</p>
<p><img src="http://fearlessflyer.com/main/wp-content/uploads/2009/05/social-03.jpg" alt="social-03" title="social-03" width="576" height="370" class="alignnone size-full wp-image-520" /></p>
<p>Make sure you hide the background layer and save the image as a .png.</p>
<h3>Part 2 &#8211; The HTML</h3>
<p>We’re going to need a single div and an unordered list of links to render the sprites. Make sure to add an id for each anchor tag. This is how we’ll match the image through our stylesheet. </p>
<pre class="brush: c-sharp;">
&lt;div id=&quot;subscribe-div&quot;&gt;
  &lt;ul id=&quot;subsc&quot;&gt;
&lt;li class=&quot;title&quot;&gt;Keep Updated&lt;/li&gt;
&lt;li&gt;&lt;a id=&quot;rss&quot; href=&quot;#&quot; title=&quot;Subscribe to RSS&quot;&gt;RSS&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a id=&quot;twit&quot; href=&quot;#&quot; title=&quot;Follow Us in Twitter&quot;&gt;Twitter&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a id=&quot;mailrss&quot; href=&quot;#&quot; title=&quot;Get Feeds through Mail&quot;&gt;Subscribe By Email&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a id=&quot;facebook&quot; href=&quot;#&quot; title=&quot;Find us in Facebook&quot;&gt;Facebook&lt;/a&gt;&lt;/li&gt;
&lt;/ul&gt; 
&lt;/div&gt;&lt;!--subscribe-div--&gt;
</pre>
<p>Of course you have to replace the # with your links. Note that the first list item is not a link. This is just a placeholder for the title “Keep Updated” title. </p>
<h3>Part 3 – The CSS</h3>
<pre class="brush: c-sharp;">
#subscribe-div {margin:0 auto;}
#subscribe-div ul#subsc li {display:inline; float:left; }
#subscribe-div ul#subsc li a { background:url(images/social-sprites.png);  display:block; float:left; height:78px;}
</pre>
<p>The first selector (#subscribe-div) can contain general properties of your bar. This includes overall padding, margins or positioning. The second selector  (#subscribe-div ul#subsc li)  – lets the browser know to display list items horizontally. The third (#subscribe-div ul#subsc li a) – calls our .png image. </p>
<pre class="brush: c-sharp;">
#subscribe-div ul#subsc li.bar-title {background:url(images/social-sprites.png); background-position:0 0; width:156px; height:78px; text-indent:-9999px;}
</pre>
<p><img src="http://fearlessflyer.com/main/wp-content/uploads/2009/05/social-2.jpg" alt="social-2" title="social-2" width="576" height="225" class="alignnone size-full wp-image-519" /></p>
<p>This styles our list item bar-title with the “Keep Updated” leftmost section of our .png image – hence the position of 0 0 (means coordinates of 0 and 0). Next is styling the normal state of the links: </p>
<pre class="brush: c-sharp;">
#subscribe-div ul#subsc li a#rss {background-position:-156px 0; width:68px; }
#subscribe-div ul#subsc li a#twit {background-position:-224px 0; width:65px; }
#subscribe-div ul#subsc li a#mailrss {background-position:-289px 0; width:65px; }
#subscribe-div ul#subsc li a#facebook {background-position:-354px 0; width:78px; }
</pre>
<p>The above code reflects the normal state of the buttons in our list. The only properties applied are width and background position. To get the width of each button, you have to go back to your .psd (remember applying the guides in the beginning of the tutorial). Note that not all the buttons are identical in size, thus varying in widths. To get the background position, always remember: the first value is the left coordinate and the next value is top. Since we already know that our title is 156 pixels, we know our first button (rss) is going to have a background position of -156px. </p>
<p><img src="http://fearlessflyer.com/main/wp-content/uploads/2009/05/social-3.jpg" alt="social-3" title="social-3" width="576" height="225" class="alignnone size-full wp-image-514" /></p>
<p>Next is the hover state. </p>
<pre class="brush: c-sharp;">
#subscribe-div ul#subsc li a:hover#rss {background-position:-156px 78px; width:68px;}
#subscribe-div ul#subsc li a:hover#twit {background-position:-224px 78px; width:65px; }
#subscribe-div ul#subsc li a:hover#mailrss {background-position:-289px 78px; width:65px; }
#subscribe-div ul#subsc li a:hover#facebook {background-position:-354px 78px; width:78px; }
</pre>
<p>Notice I just copied the code for the normal state and re-pasted it. The only difference is the use of anchor pseudo class :hover is appended to the “a” selector, and the top value of background position is now 78 pixels. This is because we want the .png image to shift 78 pixels downward, once the mouse is hovered over each link. </p>
<p>The only thing left to do is to indent the text of the links. This is done in the #subscribe-div ul#subsc li a selector (text-indent:-9999px;). </p>
<p>And that&#8217;s it. We have finished creating a subscribe bar from an image in Photoshop, HTML and finally adding some styles with CSS. You can view the demo from this <a href="http://fearlessflyer.com/main/wp-content/uploads/2009/05/social-sprites.html">link</a>, or download the source code from <a href="http://www.box.net/shared/81y02kny7j">here</a>. All I ask is for you leave a comment, <a href="http://feeds.feedburner.com/Fearlessflyer">subscribe</a> or follow me in <a href="http://twitter.com/mks6804">Twitter</a>. </p>

<p><a href="http://feedads.g.doubleclick.net/~a/Ro_lzcUHF8XPBHz_19u4ZLlpbfs/0/da"><img src="http://feedads.g.doubleclick.net/~a/Ro_lzcUHF8XPBHz_19u4ZLlpbfs/0/di" border="0" ismap="true"></img></a><br/>
<a href="http://feedads.g.doubleclick.net/~a/Ro_lzcUHF8XPBHz_19u4ZLlpbfs/1/da"><img src="http://feedads.g.doubleclick.net/~a/Ro_lzcUHF8XPBHz_19u4ZLlpbfs/1/di" border="0" ismap="true"></img></a></p><img src="http://feeds.feedburner.com/~r/Fearlessflyer/~4/NHZii1Zqxog" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://fearlessflyer.com/2009/05/create-a-subscribe-bar-with-css-sprites/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		<feedburner:origLink>http://fearlessflyer.com/2009/05/create-a-subscribe-bar-with-css-sprites/</feedburner:origLink></item>
		<item>
		<title>Free WP Theme – The Garamond</title>
		<link>http://feedproxy.google.com/~r/Fearlessflyer/~3/zoyGO2_H6h4/</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[WP Themes]]></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. 
The Home Page
The Garamond&#8217;s home page mimicks a magazine layout. This [...]]]></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 Garamond. </p>
<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" 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 download directly from <a href="http://www.box.net/shared/b3c1tjp85n">here</a>. All I ask is for you leave a comment below &#8211; or follow my updates via <strong><a href="http://twitter.com/mks6804">twitter</a></strong>. </p>

<p><a href="http://feedads.g.doubleclick.net/~a/g8gFhXE_eVAS5zPQ7ae7s3a9FYA/0/da"><img src="http://feedads.g.doubleclick.net/~a/g8gFhXE_eVAS5zPQ7ae7s3a9FYA/0/di" border="0" ismap="true"></img></a><br/>
<a href="http://feedads.g.doubleclick.net/~a/g8gFhXE_eVAS5zPQ7ae7s3a9FYA/1/da"><img src="http://feedads.g.doubleclick.net/~a/g8gFhXE_eVAS5zPQ7ae7s3a9FYA/1/di" border="0" ismap="true"></img></a></p><img src="http://feeds.feedburner.com/~r/Fearlessflyer/~4/zoyGO2_H6h4" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://fearlessflyer.com/2009/05/free-wp-theme-the-garamond/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		<feedburner:origLink>http://fearlessflyer.com/2009/05/free-wp-theme-the-garamond/</feedburner:origLink></item>
		<item>
		<title>How to change the Background Dynamically in your Wordpress Theme</title>
		<link>http://feedproxy.google.com/~r/Fearlessflyer/~3/qCMMFCNcHBY/</link>
		<comments>http://fearlessflyer.com/2009/05/how-to-change-the-background-dynamically-in-your-wordpress-theme/#comments</comments>
		<pubDate>Sat, 09 May 2009 19:01:44 +0000</pubDate>
		<dc:creator>Michael Soriano</dc:creator>
				<category><![CDATA[General]]></category>
		<category><![CDATA[Tutorials]]></category>

		<guid isPermaLink="false">http://fearlessflyer.com/?p=486</guid>
		<description><![CDATA[We all have seen Wordpress sites with repeating backgrounds that span beautifully across the entire page. This property is usually applied in the body tag of your template.  What about those portfolio websites that use a different background image in the front page? Or those magazine styled websites that apply different backgrounds for their [...]]]></description>
			<content:encoded><![CDATA[<p>We all have seen Wordpress sites with repeating backgrounds that span beautifully across the entire page. This property is usually applied in the body tag of your template.  What about those portfolio websites that use a different background image in the front page? Or those magazine styled websites that apply different backgrounds for their category pages? How’d they do that? </p>
<h3>The problem</h3>
<p>For anyone who’s developed a Wordpress theme would know how to break it up in templates: header.php, sidebar.php , footer.php etc. And as I’ve mentioned: you control the background image (if you want it to span the entire page) usually in the body tag of your HTML.  The problem is – the body tag comes BEFORE any other tag in your templates. </p>
<p>For example, take a look at the screenshot of a typical header.php file below. It shows the body tag where you apply a different property value in the CSS file each time you want it unique from another page:</p>
<p><img src="http://fearlessflyer.com/main/wp-content/uploads/2009/05/bg-tut1.jpg" alt="bg-tut1" title="bg-tut1" width="576" height="200" class="alignnone size-full wp-image-488" /></p>
<p>The problem is, in your special template, you’ve already called the get header file:</p>
<p><img src="http://fearlessflyer.com/main/wp-content/uploads/2009/05/bg-tuts2.jpg" alt="bg-tuts2" title="bg-tuts2" width="576" height="200" class="alignnone size-full wp-image-487" /></p>
<h3>The Answer – Conditional Tags</h3>
<p>Wordpress is built is such a way that you can control almost every aspect of your pages. One useful snippet is known as Conditional Tags. Conditional tags can be used in your templates to change what is displayed on a particular page – like the background image. Examples of conditional tags are: is_single(), is_front_page() or is_admin(). For more information on Conditional Tags – see the this <a href="http://codex.wordpress.org/Conditional_Tags">link</a> from Wordpress Codex library. In our case – we’re going to use the tag is_page_template().</p>
<h3>Step 1: Insert the PHP</h3>
<p>Open your header.php in your text editor. You’re going to add a conditional statement in inside the opening body id tag. In my case, I’m using three different backround images. Two of them, I want to apply in two individual templates, while the rest of the pages share a default image: </p>
<pre class="brush: c-sharp;">
&lt;body id=&quot;&lt;?php if (is_page_template('template-diff-bg-demo1.php')){
echo &quot;template-diff-bg-demo1&quot;;
} 
elseif (is_page_template('template-diff-bg-demo2.php')){
echo &quot;template-diff-bg-demo2&quot;;
} 
else {
echo &quot;default&quot;;
}?&gt;&quot; &gt;
</pre>
<p><strong>Explanation:</strong> If the template used is named “template-diff-bg-demo1.php”, echo a body id of “template-diff-bg-demo1”, or if template used is named “template-diff-bg-demo2.php” use body id of “template-diff-bg-demo2”, otherwise – just use body id of “default”. </p>
<h3>Step 2: The CSS</h3>
<p>Open your styles.css. We’re going to match the body ids that are going to be called each time you switch page templates. In our case – we need three different ids: </p>
<ul>
<li>body# template-diff-bg-demo1 – a different background</li>
<li>body# template-diff-bg-demo2 – another background</li>
<li>body#default – the default background</li>
</ul>
<pre class="brush: c-sharp;">
body#default { background:url(images/default-bg.jpg) top center no-repeat #000000; }
  body#template-diff-bg-demo1 { background:url(images/default-bg2.jpg) top center no-repeat #000000;}
  body#template-diff-bg-demo2 { background:url(images/default-bg3.jpg) top center no-repeat #000000; }
</pre>
<h3>Conclusion </h3>
<p>There you have it. We dynamically changed the body ids of our theme – according to specific page templates. Changing the body ids allowed us style them differently in our stylesheet. This is just one of many possibilities in displaying content (or in our case – style) by using Wordpress’ conditional tags. Check out the demo using the code above from this <a href="http://squid.fearlessflyer.com/page-2/">link</a>. Happy Coding!</p>
<p><a href="http://squid.fearlessflyer.com/page-2/"><img src="http://fearlessflyer.com/main/wp-content/uploads/2009/05/bg-tuts3.jpg" alt="bg-tuts3" title="bg-tuts3" width="600" height="200" class="alignnone size-full wp-image-489" /></a></p>

<p><a href="http://feedads.g.doubleclick.net/~a/Np7pxxJRWscbI4Q7msyVUYvTJag/0/da"><img src="http://feedads.g.doubleclick.net/~a/Np7pxxJRWscbI4Q7msyVUYvTJag/0/di" border="0" ismap="true"></img></a><br/>
<a href="http://feedads.g.doubleclick.net/~a/Np7pxxJRWscbI4Q7msyVUYvTJag/1/da"><img src="http://feedads.g.doubleclick.net/~a/Np7pxxJRWscbI4Q7msyVUYvTJag/1/di" border="0" ismap="true"></img></a></p><img src="http://feeds.feedburner.com/~r/Fearlessflyer/~4/qCMMFCNcHBY" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://fearlessflyer.com/2009/05/how-to-change-the-background-dynamically-in-your-wordpress-theme/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
		<feedburner:origLink>http://fearlessflyer.com/2009/05/how-to-change-the-background-dynamically-in-your-wordpress-theme/</feedburner:origLink></item>
		<item>
		<title>Eureka Wordpress Theme For Sale!</title>
		<link>http://feedproxy.google.com/~r/Fearlessflyer/~3/PibS_ntbi-I/</link>
		<comments>http://fearlessflyer.com/2009/05/eureka-wordpress-theme-for-sale/#comments</comments>
		<pubDate>Wed, 06 May 2009 17:35:36 +0000</pubDate>
		<dc:creator>Michael Soriano</dc:creator>
				<category><![CDATA[General]]></category>
		<category><![CDATA[WP Themes]]></category>
		<category><![CDATA[CMS]]></category>
		<category><![CDATA[Themes]]></category>
		<category><![CDATA[Wordpress]]></category>

		<guid isPermaLink="false">http://fearlessflyer.com/?p=481</guid>
		<description><![CDATA[Just finished a theme I developed and its called Eureka. Eureka is a classic web 2.0 styled theme for Wordpress. It can be used for a regular blog or as a CMS. It has a standard two column layout using 960.gs CSS framework. Templates for archives, categories, as well as a bonus home page template [...]]]></description>
			<content:encoded><![CDATA[<p>Just finished a theme I developed and its called Eureka. Eureka is a classic web 2.0 styled theme for Wordpress. It can be used for a regular blog or as a CMS. It has a standard two column layout using 960.gs CSS framework. Templates for archives, categories, as well as a bonus home page template with coda slider already built in. The single post page has social buttons integrated, paginated and multi-threaded comments with gravatars. The sidebar is fully widgetized, with custom styling to match the rest of the theme. Eureka is built for Wordpress 2.7, tested in browsers: Internet Explorer 6, 7 and Firefox. </p>
<p>A screenshot of the homepage with coda slider is shown below: </p>
<p><img src="http://fearlessflyer.com/main/wp-content/uploads/2009/05/eureka2.jpg" alt="eureka2" title="eureka2" width="576" height="600" class="alignnone size-full wp-image-482" /></p>
<h3>Credits</h3>
<p>The small icons used are from <a href="http://www.pinvoke.com/">Fuque icons</a>, the larger buttons are from the amazing <a href="http://wefunction.com/2008/07/function-free-icon-set/">WeFunction</a>, social buttons from <a href="http://Quake9.com">Aquaticus</a> and the big vector images are from <a href="http://stinky9.deviantart.com">stinky9</a>. Fonts in the graphics are traditional Helvetica Nueu and Myriad Pro. The code for the slider is <a href="http://www.ndoherty.com/coda-slider">Niall Doherty</a>. </p>
<p>You can check the live version of Eureka <a href="http://eureka.fearlessflyer.com/">here</a>, and purchase from this <a href="http://themeforest.net/item/eureka/40324">link</a>.</p>

<p><a href="http://feedads.g.doubleclick.net/~a/baLbKSfTfpFk1xnkW8G5_nH7D_E/0/da"><img src="http://feedads.g.doubleclick.net/~a/baLbKSfTfpFk1xnkW8G5_nH7D_E/0/di" border="0" ismap="true"></img></a><br/>
<a href="http://feedads.g.doubleclick.net/~a/baLbKSfTfpFk1xnkW8G5_nH7D_E/1/da"><img src="http://feedads.g.doubleclick.net/~a/baLbKSfTfpFk1xnkW8G5_nH7D_E/1/di" border="0" ismap="true"></img></a></p><img src="http://feeds.feedburner.com/~r/Fearlessflyer/~4/PibS_ntbi-I" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://fearlessflyer.com/2009/05/eureka-wordpress-theme-for-sale/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://fearlessflyer.com/2009/05/eureka-wordpress-theme-for-sale/</feedburner:origLink></item>
		<item>
		<title>Free PSD – Elementary School Website</title>
		<link>http://feedproxy.google.com/~r/Fearlessflyer/~3/x6ANRWtq8P0/</link>
		<comments>http://fearlessflyer.com/2009/04/free-psd-elementary-school-website/#comments</comments>
		<pubDate>Fri, 01 May 2009 00:02:08 +0000</pubDate>
		<dc:creator>Michael Soriano</dc:creator>
				<category><![CDATA[Freebies]]></category>
		<category><![CDATA[General]]></category>
		<category><![CDATA[Websites]]></category>

		<guid isPermaLink="false">http://fearlessflyer.com/?p=468</guid>
		<description><![CDATA[Another one to give away to my fellow designers looking for a quick way to mock up a website. In this case &#8211; an elementary school. This is one of those contest that ooooh, came sooo close to winning. The contest I refer to are the ones similar to crowdspring and 99designs. Its an entire [...]]]></description>
			<content:encoded><![CDATA[<p>Another one to give away to my fellow designers looking for a quick way to mock up a website. In this case &#8211; an elementary school. This is one of those contest that ooooh, came sooo close to winning. The contest I refer to are the ones similar to crowdspring and 99designs. Its an entire school district, needing a makeover for their string of websites (like that&#8217;s something new) &#8211; seems that all school websites I encounter need a desperate makeover. The district needed new everything: colors, logos, layout &#8211; it was a big project. The winning design was to lead the way of an entire line of re-branding for their business. So the contest was a big deal; because not only for the cash prize &#8211; but the long needed work that comes with it. Not to mention &#8211; your logos will be plastered in several schools across the country. Regardless, I didn&#8217;t get the job &#8211; so I&#8217;m giving one of my mock ups for free. </p>
<p><img src="http://fearlessflyer.com/main/wp-content/uploads/2009/04/elementary3.jpg" alt="elementary3" title="elementary3" width="576" height="1002" class="alignnone size-full wp-image-470" /></p>
<p>The design uses a base of burgundy and splashes of tan for the color scheme. The icons used are from the coquette collection in <a href="http://smashingmagazine.com">smashingmagazine</a>, while fonts are Georgia and Helvetica Nueu. The file is of high quality, fully layered and grouped. All I ask in return is for you to leave a comment below or follow me in <strong><a href="http://twitter.com/mks6804">Twitter</a></strong>. To download &#8211; simply click <a href="http://www.box.net/shared/p1bnzlf6c5">here</a>. Have fun designing!   </p>

<p><a href="http://feedads.g.doubleclick.net/~a/RvKRw21LPxv7gY1TZiA0in5SWSc/0/da"><img src="http://feedads.g.doubleclick.net/~a/RvKRw21LPxv7gY1TZiA0in5SWSc/0/di" border="0" ismap="true"></img></a><br/>
<a href="http://feedads.g.doubleclick.net/~a/RvKRw21LPxv7gY1TZiA0in5SWSc/1/da"><img src="http://feedads.g.doubleclick.net/~a/RvKRw21LPxv7gY1TZiA0in5SWSc/1/di" border="0" ismap="true"></img></a></p><img src="http://feeds.feedburner.com/~r/Fearlessflyer/~4/x6ANRWtq8P0" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://fearlessflyer.com/2009/04/free-psd-elementary-school-website/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://fearlessflyer.com/2009/04/free-psd-elementary-school-website/</feedburner:origLink></item>
	</channel>
</rss>
