<?xml version="1.0" encoding="UTF-8"?>
<articles type="array">
  <article>
    <body>&lt;p&gt;&lt;span style=&quot;color: #000000; font-family: Georgia, Times; font-size: 12px;&quot;&gt;
&lt;div style=&quot;background-image: initial; background-repeat: initial; background-attachment: initial; -webkit-background-clip: initial; -webkit-background-origin: initial; background-color: #ffffff; font-family: Georgia, 'Times New Roman', Times, serif; color: #303536; background-position: initial initial; margin: 8px;&quot;&gt;
&lt;p&gt;&lt;span style=&quot;color: #000000; line-height: 19px; white-space: pre-wrap;&quot;&gt;&lt;span style=&quot;color: #666666; font-size: 11px; line-height: normal; white-space: normal;&quot;&gt; &lt;/span&gt;&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;&lt;span class=&quot;shownd_DEFAULT&quot;&gt;The year is 2008 and I come upon a new site on a daily basis using the Javascript method of creating an image-based menu with rollover effects. I&amp;rsquo;m not talking flashy rollover effects like the types given to you by various&amp;nbsp;&lt;/span&gt;&lt;abbr class=&quot;shownd_DEFAULT&quot; title=&quot;Javascript&quot;&gt;JS&lt;/abbr&gt;&lt;span class=&quot;shownd_DEFAULT&quot;&gt;libraries such as&amp;nbsp;&lt;/span&gt;&lt;a class=&quot;shownd_DEFAULT&quot; style=&quot;text-decoration: none; color: #006699; border: initial none initial;&quot; href=&quot;http://mootools.net/&quot;&gt;MooTools&lt;/a&gt;&lt;span class=&quot;shownd_DEFAULT&quot;&gt;&amp;nbsp;and&amp;nbsp;&lt;/span&gt;&lt;a class=&quot;shownd_DEFAULT&quot; style=&quot;text-decoration: none; color: #006699; border: initial none initial;&quot; href=&quot;http://http//script.aculo.us/&quot;&gt;script.aculo.us&lt;/a&gt;&lt;span class=&quot;shownd_DEFAULT&quot;&gt;, I&amp;rsquo;m talking a simple image replacement effect. Invoking JS for this sort of thing is bulky and unnecessary when it can be done oh-so-easily with some straightforward CSS.&lt;/span&gt;&lt;/p&gt;
&lt;p class=&quot;shownd_DEFAULT&quot;&gt;One highly used method, which I&amp;rsquo;ll cover another time, allows you to place browser-rendered text in that menu. That&amp;rsquo;s useful for many reasons, but sometimes you don&amp;rsquo;t WANT browser-rendered text because you&amp;rsquo;d like to use a non-web standard font but wish to maintain the text in place for screen readers and SEO. In this case we want to create a menu using the &amp;ldquo;Cooper Std&amp;rdquo; font. So let&amp;rsquo;s get started.&lt;/p&gt;
&lt;p class=&quot;shownd_DEFAULT&quot;&gt;First, the markup:&lt;/p&gt;
&lt;pre&gt;&lt;code style=&quot;display: block; background-image: initial; background-repeat: initial; background-attachment: initial; -webkit-background-clip: initial; -webkit-background-origin: initial; background-color: #eef1f2; border-left-width: 3px; border-left-style: solid; border-left-color: #d2d3d3; background-position: initial initial; padding: 10px;&quot;&gt;&amp;lt;ul id=&quot;menu&quot;&amp;gt;
	&amp;lt;li class=&quot;home&quot;&amp;gt;&amp;lt;a href=&quot;#&quot;&amp;gt;Home&amp;lt;/a&amp;gt;&amp;lt;/li&amp;gt;
	&amp;lt;li class=&quot;locations&quot;&amp;gt;&amp;lt;a href=&quot;#&quot;&amp;gt;Locations&amp;lt;/a&amp;gt;&amp;lt;/li&amp;gt;
	&amp;lt;li class=&quot;about&quot;&amp;gt;&amp;lt;a href=&quot;#&quot;&amp;gt;About Us&amp;lt;/a&amp;gt;&amp;lt;/li&amp;gt;
	&amp;lt;li class=&quot;contact&quot;&amp;gt;&amp;lt;a href=&quot;#&quot;&amp;gt;Contact Us&amp;lt;/a&amp;gt;&amp;lt;/li&amp;gt;
&amp;lt;/ul&amp;gt;&lt;/code&gt;&lt;/pre&gt;
&lt;p class=&quot;shownd_DEFAULT&quot;&gt;That&amp;rsquo;s all. It&amp;rsquo;s very short and semantically relevant.&lt;/p&gt;
&lt;p class=&quot;shownd_DEFAULT&quot;&gt;For this sort of method it&amp;rsquo;s best to create your images as sprites (or one big sprite, up to you.) What I mean by that is to take the image for the normal state and the image for the hover state and place them on one image, like so:&lt;/p&gt;
&lt;p&gt;&lt;img src=&quot;http://orlandodefrias.com/examples/image-based-menu/step2/images/menu_home.png&quot; alt=&quot;Menu image sprite&quot; /&gt;&lt;/p&gt;
&lt;p class=&quot;shownd_DEFAULT&quot;&gt;Then rather than calling a different image for the hover action, you just call the same image with an altered background position. You&amp;rsquo;ll see what I mean in the code. This helps stop the flicker you would get when the browser tries loading the new image when hovering, and it also lowers the amount of requests made to the web server. It would be even better to place all of the images into one big sprite map, but for the sake of this tutorial we&amp;rsquo;ll just create one sprite per menu item.&lt;/p&gt;
&lt;p&gt;&lt;span class=&quot;shownd_DEFAULT&quot;&gt;This, without styling, will produce&amp;nbsp;&lt;/span&gt;&lt;a class=&quot;shownd_DEFAULT&quot; style=&quot;text-decoration: none; color: #006699; border: initial none initial;&quot; href=&quot;http://orlandodefrias.com/examples/image-based-menu/step1/index.html&quot;&gt;the following results&lt;/a&gt;&lt;span class=&quot;shownd_DEFAULT&quot;&gt;, so anyone in a text browser will still be able to see your links. So let&amp;rsquo;s start adding some styles.&lt;/span&gt;&lt;/p&gt;
&lt;pre&gt;&lt;code style=&quot;display: block; background-image: initial; background-repeat: initial; background-attachment: initial; -webkit-background-clip: initial; -webkit-background-origin: initial; background-color: #eef1f2; border-left-width: 3px; border-left-style: solid; border-left-color: #d2d3d3; background-position: initial initial; padding: 10px;&quot;&gt;body {
	margin: 0;
	padding: 10px;
	font-family: Arial;
	background-color: #303136;
	font-size: .75em;
	color: #333;
}
ul#menu {
	list-style: none;
	margin: 0;
	padding: 0;
	height: 25px;
	width: 520px;
}
ul#menu li {
	float: left;
	display: inline;
	height: 25px;
	margin: 0 10px;
}&lt;/code&gt;&lt;/pre&gt;
&lt;p class=&quot;shownd_DEFAULT&quot;&gt;This will give your menu a bit more structure. What you&amp;rsquo;re doing here is creating the menu as an unordered list with static height/width dimensions. With text-based menus you generally want to stay away from hard-coded height properties to account for users who wish to increase or decrease their font sizes and not allow that to break your design, but in this case that&amp;rsquo;s not necessary since these are images.&lt;/p&gt;
&lt;p&gt;&lt;span class=&quot;shownd_DEFAULT&quot;&gt;We&amp;rsquo;re floating the list items to the left to create a &amp;ldquo;seemingly inline&amp;rdquo; list out of what are block elements. The &amp;ldquo;display: inline&amp;rdquo; property is there&amp;nbsp;&lt;/span&gt;&lt;a class=&quot;shownd_DEFAULT&quot; style=&quot;text-decoration: none; color: #006699; border: initial none initial;&quot; href=&quot;http://www.positioniseverything.net/explorer/floatIndent.html&quot;&gt;as a fix for IE6&lt;/a&gt;&lt;span class=&quot;shownd_DEFAULT&quot;&gt;&amp;nbsp;adding a random margin.&lt;/span&gt;&lt;/p&gt;
&lt;p class=&quot;shownd_DEFAULT&quot;&gt;Next thing we want to do is add the images to each class along with their corresponding width properties:&lt;/p&gt;
&lt;pre&gt;&lt;code style=&quot;display: block; background-image: initial; background-repeat: initial; background-attachment: initial; -webkit-background-clip: initial; -webkit-background-origin: initial; background-color: #eef1f2; border-left-width: 3px; border-left-style: solid; border-left-color: #d2d3d3; background-position: initial initial; padding: 10px;&quot;&gt;ul#menu li.home a {
	background: url(images/menu_home.png) 0 0 no-repeat;
	width: 67px;
}
ul#menu li.locations a {
	background: url(images/menu_locations.png) 0 0 no-repeat;
	width: 119px;
}
ul#menu li.about a {
	background: url(images/menu_about.png) 0 0 no-repeat;
	width: 115px;
}
ul#menu li.contact a {
	background: url(images/menu_contact.png) 0 0 no-repeat;
	width: 136px;
}&lt;/code&gt;&lt;/pre&gt;
&lt;p class=&quot;shownd_DEFAULT&quot;&gt;Note the background position, &amp;ldquo;0 0&amp;Prime;, which is the same as &amp;ldquo;left top.&amp;rdquo; This will show the image in its normal state. However, we&amp;rsquo;ve got a little problem here. The browser-rendered text is showing up, and the menu image only spans as high and wide as the text itself. We can fix that pretty easily with the following snippet:&lt;/p&gt;
&lt;pre&gt;&lt;code style=&quot;display: block; background-image: initial; background-repeat: initial; background-attachment: initial; -webkit-background-clip: initial; -webkit-background-origin: initial; background-color: #eef1f2; border-left-width: 3px; border-left-style: solid; border-left-color: #d2d3d3; background-position: initial initial; padding: 10px;&quot;&gt;ul#menu li a {
	display: block;
	height: 25px;
	text-indent: -999em;
}&lt;/code&gt;&lt;/pre&gt;
&lt;p class=&quot;shownd_DEFAULT&quot;&gt;Setting the inline anchor element to a block element allows us to specify its height and width explicitly. The text-indent will move the text completely out of view. Google frowns upon using &amp;ldquo;black hat&amp;rdquo; tactics such as hidden text for SEO purposes, but when you&amp;rsquo;re doing this to a few words in a menu in which the images you&amp;rsquo;re replacing the words with say the same thing, I&amp;rsquo;ve never heard of them having a problem with that. It&amp;rsquo;s when you start hiding paragraphs of key words out of view that Google decides you&amp;rsquo;re no good.&lt;/p&gt;
&lt;p class=&quot;shownd_DEFAULT&quot;&gt;The only thing left to do is the hover state. This will do the trick:&lt;/p&gt;
&lt;pre&gt;&lt;code style=&quot;display: block; background-image: initial; background-repeat: initial; background-attachment: initial; -webkit-background-clip: initial; -webkit-background-origin: initial; background-color: #eef1f2; border-left-width: 3px; border-left-style: solid; border-left-color: #d2d3d3; background-position: initial initial; padding: 10px;&quot;&gt;ul#menu li.home a:hover, ul#menu li.locations a:hover,
ul#menu li.about a:hover, ul#menu li.contact a:hover {
	background-position: bottom left;
}&lt;/code&gt;&lt;/pre&gt;
&lt;p class=&quot;shownd_DEFAULT&quot;&gt;See that? All you&amp;rsquo;re doing is moving the background&amp;rsquo;s position to the bottom left rather than the top left. It&amp;rsquo;s the same image, but it gives the illusion of loading a new one. No flicker.&lt;/p&gt;
&lt;p&gt;&lt;a class=&quot;shownd_DEFAULT&quot; style=&quot;text-decoration: none; color: #006699; border: initial none initial;&quot; href=&quot;http://orlandodefrias.com/examples/image-based-menu/step2/index.html&quot;&gt;View the menu&lt;/a&gt;&lt;/p&gt;
&lt;h4 class=&quot;shownd_DEFAULT&quot;&gt;Final touches&lt;/h4&gt;
&lt;p class=&quot;shownd_DEFAULT&quot;&gt;If you&amp;rsquo;re using Firefox, when clicking a menu item you&amp;rsquo;ll see an ugly dotted line border around the element going all the way to the left edge of the screen. This is something the browser adds itself. There&amp;rsquo;s a way to get rid of it though, just add a hidden overflow property:&lt;/p&gt;
&lt;pre&gt;&lt;code style=&quot;display: block; background-image: initial; background-repeat: initial; background-attachment: initial; -webkit-background-clip: initial; -webkit-background-origin: initial; background-color: #eef1f2; border-left-width: 3px; border-left-style: solid; border-left-color: #d2d3d3; background-position: initial initial; padding: 10px;&quot;&gt;ul#menu li {
	float: left;
	display: inline;
	height: 25px;
	margin: 0 10px;
	overflow: hidden;
}&lt;/code&gt;&lt;/pre&gt;
&lt;p class=&quot;shownd_DEFAULT&quot;&gt;Also, if you want to specify a selected state for a menu item, just add an ID attribute called &amp;ldquo;selected&amp;rdquo; and add this CSS:&lt;/p&gt;
&lt;pre&gt;&lt;code style=&quot;display: block; background-image: initial; background-repeat: initial; background-attachment: initial; -webkit-background-clip: initial; -webkit-background-origin: initial; background-color: #eef1f2; border-left-width: 3px; border-left-style: solid; border-left-color: #d2d3d3; background-position: initial initial; padding: 10px;&quot;&gt;ul#menu li#selected a {background-position: bottom left;}&lt;/code&gt;&lt;/pre&gt;
&lt;p&gt;&lt;a style=&quot;text-decoration: none; color: #006699; border: initial none initial;&quot; href=&quot;http://orlandodefrias.com/examples/image-based-menu/step3/index.html&quot;&gt;View the final menu with selected item&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;
&lt;/div&gt;
&lt;/span&gt;&lt;/p&gt;</body>
    <category-id type="integer">2</category-id>
    <created-at type="datetime">2008-11-21T22:12:37Z</created-at>
    <id type="integer">1</id>
    <published type="boolean">true</published>
    <published-at type="datetime">2008-11-21T22:19:01Z</published-at>
    <synopsis>Are you still creating your roll-over menus with Javascript? There's a better way to do that using pure CSS in a cross-browser compliant method I'll be outlining in this article.</synopsis>
    <title>Creating an image-based menu with CSS</title>
    <updated-at type="datetime">2008-11-21T22:19:01Z</updated-at>
    <user-id type="integer">1</user-id>
  </article>
  <article>
    <body>&lt;p&gt;&lt;span style=&quot;font-size: 12px; white-space: pre-wrap;&quot;&gt;Not all portfolios need to have a serious business feel to them. Whether it's the color scheme or the illustrations, the following twelve portfolio web sites contain an aura of professional playfulness.&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;&lt;a class=&quot;FontSize_HUGE&quot; href=&quot;http://darkmotion.com/&quot;&gt;Darkmotion&lt;/a&gt;&lt;br /&gt;&lt;a class=&quot;screen_img&quot; href=&quot;http://darkmotion.com/&quot;&gt;&lt;img src=&quot;http://files.shownd.com/articles/112308/darkmotion.jpg&quot; alt=&quot;&quot; /&gt;&lt;/a&gt;&lt;br /&gt; Darkmotion's beautiful illustrations and tone really give it that playful edge.&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;
&lt;p&gt;&lt;a class=&quot;FontSize_HUGE&quot; href=&quot;http://jduerr.com/&quot;&gt;Jason Duerr&lt;/a&gt;&lt;br /&gt;&lt;a class=&quot;screen_img&quot; href=&quot;http://jduerr.com/&quot;&gt;&lt;img src=&quot;http://files.shownd.com/articles/112308/jduerr.jpg&quot; alt=&quot;&quot; /&gt;&lt;/a&gt;&lt;br /&gt; Jason's attitude is all in his color scheme.&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;
&lt;p&gt;&lt;a class=&quot;FontSize_HUGE&quot; href=&quot;http://designdisease.com/&quot;&gt;Design Disease&lt;/a&gt;&lt;br /&gt;&lt;a class=&quot;screen_img&quot; href=&quot;http://designdisease.com/&quot;&gt;&lt;img src=&quot;http://files.shownd.com/articles/112308/designdisease.jpg&quot; alt=&quot;&quot; /&gt;&lt;/a&gt;&lt;br /&gt; Who knew so much blue could be so easy on the eyes?&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;
&lt;p&gt;&lt;a class=&quot;FontSize_HUGE&quot; href=&quot;http://branded07.com/&quot;&gt;Branded07&lt;/a&gt;&lt;br /&gt;&lt;a class=&quot;screen_img&quot; href=&quot;http://branded07.com/&quot;&gt;&lt;img src=&quot;http://files.shownd.com/articles/112308/branded07.jpg&quot; alt=&quot;&quot; /&gt;&lt;/a&gt;&lt;br /&gt; Nothing says &quot;playful&quot; like a couple of puffins. Nothing.&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;
&lt;p&gt;&lt;a class=&quot;FontSize_HUGE&quot; href=&quot;http://hicksdesign.com/&quot;&gt;Hicks Design&lt;/a&gt;&lt;br /&gt;&lt;a class=&quot;screen_img&quot; href=&quot;http://hicksdesign.com/&quot;&gt;&lt;img src=&quot;http://files.shownd.com/articles/112308/hicksdesign.jpg&quot; alt=&quot;&quot; /&gt;&lt;/a&gt;&lt;br /&gt; Just look at the Silverback icon!&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;
&lt;p&gt;&lt;a class=&quot;FontSize_HUGE&quot; href=&quot;http://kyanmedia.com/&quot;&gt;Kyan&lt;/a&gt;&lt;br /&gt;&lt;a class=&quot;screen_img&quot; href=&quot;http://kyanmedia.com/&quot;&gt;&lt;img src=&quot;http://files.shownd.com/articles/112308/kyan.jpg&quot; alt=&quot;&quot; /&gt;&lt;/a&gt;&lt;br /&gt; Clouds and paper airplanes can turn anything into a playground.&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;
&lt;p&gt;&lt;a class=&quot;FontSize_HUGE&quot; href=&quot;http://freshnessdesign.com/&quot;&gt;Freshness&lt;/a&gt;&lt;br /&gt;&lt;a class=&quot;screen_img&quot; href=&quot;http://freshnessdesign.com/&quot;&gt;&lt;img src=&quot;http://files.shownd.com/articles/112308/freshness.jpg&quot; alt=&quot;&quot; /&gt;&lt;/a&gt;&lt;br /&gt; Orange and purple; two colors with no rhymes, but in this case reason.&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;
&lt;p&gt;&lt;a class=&quot;FontSize_HUGE&quot; href=&quot;http://volll.com/&quot;&gt;Volll&lt;/a&gt;&lt;br /&gt;&lt;a class=&quot;screen_img&quot; href=&quot;http://volll.com/&quot;&gt;&lt;img src=&quot;http://files.shownd.com/articles/112308/volll.jpg&quot; alt=&quot;&quot; /&gt;&lt;/a&gt;&lt;br /&gt; Hint: If you see anything cute, try clicking it.&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;
&lt;p&gt;&lt;a class=&quot;FontSize_HUGE&quot; href=&quot;http://turbomilk.com/&quot;&gt;Turbomilk&lt;/a&gt;&lt;br /&gt;&lt;a class=&quot;screen_img&quot; href=&quot;http://turbomilk.com/&quot;&gt;&lt;img src=&quot;http://files.shownd.com/articles/112308/turbomilk.jpg&quot; alt=&quot;&quot; /&gt;&lt;/a&gt;&lt;br /&gt; When you think milk, you normally don't think green. Strangely, it works.&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;
&lt;p&gt;&lt;a class=&quot;FontSize_HUGE&quot; href=&quot;http://jeffsarmiento.com/&quot;&gt;Jeff Sarmiento&lt;/a&gt;&lt;br /&gt;&lt;a class=&quot;screen_img&quot; href=&quot;http://jeffsarmiento.com/&quot;&gt;&lt;img src=&quot;http://files.shownd.com/articles/112308/jeffsarmiento.jpg&quot; alt=&quot;&quot; /&gt;&lt;/a&gt;&lt;br /&gt; A bit of a blast to the past meets the present.&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;
&lt;p&gt;&lt;a class=&quot;FontSize_HUGE&quot; href=&quot;http://jengermann.com/&quot;&gt;Jen Germann&lt;/a&gt;&lt;br /&gt;&lt;a class=&quot;screen_img&quot; href=&quot;http://jengermann.com/&quot;&gt;&lt;img src=&quot;http://files.shownd.com/articles/112308/jengermann.jpg&quot; alt=&quot;&quot; /&gt;&lt;/a&gt;&lt;br /&gt; Dog trainer. Classic.&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;
&lt;p&gt;&lt;a class=&quot;FontSize_HUGE&quot; href=&quot;http://studiomikmik.com/&quot;&gt;Studio MikMik&lt;/a&gt;&lt;br /&gt;&lt;a class=&quot;screen_img&quot; href=&quot;http://studiomikmik.com/&quot;&gt;&lt;img src=&quot;http://files.shownd.com/articles/112308/mikmik.jpg&quot; alt=&quot;&quot; /&gt;&lt;/a&gt;&lt;br /&gt; Very clean, very polished, very nice.&lt;/p&gt;</body>
    <category-id type="integer">2</category-id>
    <created-at type="datetime">2008-11-24T02:10:34Z</created-at>
    <id type="integer">2</id>
    <published type="boolean">true</published>
    <published-at type="datetime">2008-11-24T07:15:40Z</published-at>
    <synopsis>Not all portfolios need to have a serious business feel to them. Whether it's the color scheme or the illustrations, the following twelve portfolio web sites contain an aura of professional playfulness.

&lt;p&gt;&lt;a class=&quot;FontSize_HUGE&quot; href=&quot;http://darkmotion.com/&quot;&gt;Darkmotion&lt;/a&gt;&lt;br /&gt;&lt;a class=&quot;screen_img_small&quot; href=&quot;http://darkmotion.com/&quot;&gt;&lt;img src=&quot;http://files.shownd.com/articles/112308/darkmotion_small.jpg&quot; alt=&quot;&quot; /&gt;&lt;/a&gt;&lt;/p&gt;

Continued on next page...</synopsis>
    <title>12 Examples of Playful Portfolios</title>
    <updated-at type="datetime">2008-11-24T07:15:40Z</updated-at>
    <user-id type="integer">1</user-id>
  </article>
  <article>
    <body>&lt;p&gt;Putting together a pre-1920s photographic effect is easier than you think. In the earlier days of photography, camera and film quality generally produced dull, hazy photos lacking contrast and sharpness. Our goal here is to recreate this look with some Photoshop magic. This tutorial should help spice up your online portfolio.&lt;/p&gt;
&lt;p&gt;&lt;a class=&quot;articleEntry&quot; href=&quot;http://files.shownd.com/articles/120808/large.jpg&quot;&gt;&lt;img src=&quot;http://files.shownd.com/articles/120808/small.jpg&quot; alt=&quot;&quot; /&gt;&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;Let's achieve this effect.&lt;/p&gt;
&lt;p&gt;&lt;span style=&quot;font-weight: bold;&quot;&gt;Step 1) &lt;/span&gt;First, let's start off with an image. The one I chose is a free image from &lt;a title=&quot;iStockPhoto - Cheap stock photography&quot; href=&quot;http://istockphoto.com&quot;&gt;iStockPhoto&lt;/a&gt;, something they give away every week. While everyone doesn't love the police for whatever reason, I'm sure we can all agree on loving firefighters, so we'll work with that image. You might consider using an image from your portfolio and adding the finished photograph up for display in your showcase.&lt;/p&gt;
&lt;p&gt;&lt;span style=&quot;font-weight: bold;&quot;&gt;Step 2)&amp;nbsp;&lt;/span&gt;Once you've got your image handy, open up the &lt;span class=&quot;shownd_DEFAULT&quot;&gt;&lt;span class=&quot;shownd_RED&quot;&gt;Channel Mixer&lt;/span&gt;&amp;nbsp;(Image &amp;gt; Adjustments) and click the Monochrome option on the bottom left of the Channel Mixer. &amp;nbsp;Set Red, Green, and Blue to +20, +30, +50, respectively. Click OK.&lt;/span&gt;&lt;/p&gt;
&lt;p class=&quot;articleEntry&quot;&gt;&lt;img src=&quot;http://files.shownd.com/articles/120808/channel_mix.jpg&quot; alt=&quot;&quot; /&gt;&lt;/p&gt;
&lt;p&gt;&lt;span style=&quot;font-weight: bold;&quot;&gt;Step 3)&amp;nbsp;&lt;/span&gt;Next, duplicate your layer (Ctrl/Cmd+J) which will give you your original background layer plus a duplicate copy of that same layer. We'll be working on this new one. Add some &lt;span class=&quot;shownd_RED&quot;&gt;Gaussian Blur&lt;/span&gt; (Filter &amp;gt; Blur) to your new layer. Set it to a radius of 4.0 pixels.&lt;/p&gt;
&lt;p class=&quot;articleEntry&quot;&gt;&lt;img src=&quot;http://files.shownd.com/articles/120808/blur.jpg&quot; alt=&quot;&quot; /&gt;&lt;/p&gt;
&lt;p&gt;Add a layer mask by clicking the &lt;span class=&quot;shownd_RED&quot;&gt;Add Layer Mask&lt;/span&gt; button in the layer panel.&lt;/p&gt;
&lt;p&gt;&lt;span style=&quot;font-weight: bold;&quot;&gt;Step 4)&amp;nbsp;&lt;/span&gt;What we need to do next is add more focus onto the face. In Ye Olden Times cameras lacked the sophistication they do now, so objects had a tendency to blur on exposure. However, the focal point of the lens provided a bit more sharpness, so let's create that effect to bring more focus to the fireman's face.&lt;/p&gt;
&lt;p&gt;Select the brush tool (B) and set the master diameter to a very large size, say, roughly the diameter of the man's face. In the case of my file we're looking at 960px, but your mileage may vary so try experimenting a bit until you find the right size. Set the brush's hardness to 0%, opacity to 45%, flow to 55%, foreground color to black, and enable airbrush capabilities by clicking the appropriate button.&lt;/p&gt;
&lt;p class=&quot;articleEntry&quot;&gt;&lt;img src=&quot;http://files.shownd.com/articles/120808/brush.jpg&quot; alt=&quot;&quot; /&gt;&lt;/p&gt;
&lt;p&gt;When you've done that, just click your big, beautiful brush over what you'd like the focal point to be, in this case, the firefighter's face. About 2 clicks should be enough, any more than that and you'll be creating too much sharpness. Once you've done that, merge all of your layers (Ctrl/Cmd+Shift+E.)&lt;/p&gt;
&lt;p class=&quot;articleEntry&quot;&gt;&lt;img src=&quot;http://files.shownd.com/articles/120808/face.jpg&quot; alt=&quot;&quot; /&gt;&lt;/p&gt;
&lt;p&gt;&lt;span style=&quot;font-weight: bold;&quot;&gt;Step 5)&amp;nbsp;&lt;/span&gt;Now we need to add a bit of glow to simulate the Ye Olden Times old-timey uncoated lenses. Add some &lt;span class=&quot;shownd_RED&quot;&gt;Diffuse Glow&lt;/span&gt; (Filters &amp;gt; Distort.) Set your graininess to 3, glow to 3, and glow amount to 10.&lt;/p&gt;
&lt;p class=&quot;articleEntry&quot;&gt;&lt;img src=&quot;http://files.shownd.com/articles/120808/glow.jpg&quot; alt=&quot;&quot; /&gt;&lt;/p&gt;
&lt;p&gt;&lt;span style=&quot;font-weight: bold;&quot;&gt;Step 6)&amp;nbsp;&lt;/span&gt;Fantastic. Let's get rid of the colors with a black and white gradient map. Create a new &lt;span class=&quot;shownd_RED&quot;&gt;Gradient Map&lt;/span&gt; (Image &amp;gt; Adjustments), click the arrow and select the black and white option. Click OK.&lt;/p&gt;
&lt;p class=&quot;articleEntry&quot;&gt;&lt;img src=&quot;http://files.shownd.com/articles/120808/gradient.jpg&quot; alt=&quot;&quot; /&gt;&lt;/p&gt;
&lt;p&gt;&lt;span style=&quot;font-weight: bold;&quot;&gt;Step 7)&amp;nbsp;&lt;/span&gt;The final step is to give it that &lt;span style=&quot;text-decoration: line-through;&quot;&gt;subjectively&lt;/span&gt; cool sepia effect. This is simple using a &lt;span class=&quot;shownd_RED&quot;&gt;Photo Filter&lt;/span&gt; (Image &amp;gt; Adjustments) and selecting the Sepia option. Add some more density to the default 25%, maybe going anywhere between 30-40%.&lt;/p&gt;
&lt;p&gt;There you have it, a Hollywood firefighter circa 1915.&lt;/p&gt;
&lt;p class=&quot;articleEntry&quot;&gt;&lt;img src=&quot;http://files.shownd.com/articles/120808/very_large.jpg&quot; alt=&quot;&quot; /&gt;&lt;/p&gt;</body>
    <category-id type="integer">5</category-id>
    <created-at type="datetime">2008-12-08T16:53:38Z</created-at>
    <id type="integer">3</id>
    <published type="boolean">true</published>
    <published-at type="datetime">2008-12-08T18:25:58Z</published-at>
    <synopsis>Putting together a pre-1920s photographic effect is easier than you think. In the earlier days of photography, camera and film quality generally produced dull, hazy photos lacking contrast and sharpness. Our goal here is to recreate this look with some Photoshop magic. This tutorial should help spice up your online portfolio.

&lt;p&gt;&lt;a class=&quot;articleEntry&quot; href=&quot;http://files.shownd.com/articles/120808/large.jpg&quot;&gt;&lt;img src=&quot;http://files.shownd.com/articles/120808/small.jpg&quot; alt=&quot;&quot; /&gt;&lt;/a&gt;&lt;/p&gt;

Let's achieve this effect.

Continued on next page...</synopsis>
    <title>Creating a Classic Photograph Effect in 7 Steps</title>
    <updated-at type="datetime">2008-12-08T18:25:58Z</updated-at>
    <user-id type="integer">1</user-id>
  </article>
  <article>
    <body>&lt;p&gt;&lt;span&gt;You&amp;rsquo;ve got digital photos.&amp;nbsp; Your camera even has a black and white setting, but somehow those black and white shots never look quite like they should.&amp;nbsp; They&amp;rsquo;re faded and grey.&amp;nbsp; This is because your camera only removes the color.&amp;nbsp; To get the look you want, you need to change the levels and bump up the contrast.&amp;nbsp; If you want to get that classic black and white look without paying for Photoshop, you can do it with the Gimp.&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;&lt;span style=&quot;letter-spacing: 0.0px;&quot;&gt;The Gimp is free photo editing software.&amp;nbsp; It&amp;rsquo;s not as seamless and user friendly as Photoshop, but you can do a lot with it.&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;&lt;span style=&quot;letter-spacing: 0.0px;&quot;&gt;You can download it here if you use windows: &amp;nbsp;&lt;span style=&quot;color: #000099;&quot;&gt;&lt;span style=&quot;letter-spacing: 0px; text-decoration: underline;&quot;&gt;&lt;a href=&quot;http://www.gimp.org/windows/&quot;&gt;http://www.gimp.org/windows/&lt;/a&gt; &lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;or here:&amp;nbsp;&lt;span style=&quot;color: #000099;&quot;&gt;&lt;span style=&quot;letter-spacing: 0px; text-decoration: underline;&quot;&gt;&lt;a href=&quot;http://www.gimp.org/macintosh/&quot;&gt;http://www.gimp.org/macintosh/&lt;/a&gt;&amp;nbsp;&lt;/span&gt;&lt;span style=&quot;letter-spacing: 0px;&quot;&gt;&amp;nbsp;&lt;span class=&quot;shownd_DEFAULT&quot;&gt;if you use Mac.&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;&lt;span style=&quot;letter-spacing: 0.0px;&quot;&gt;Always shoot in color.&amp;nbsp; Always.&amp;nbsp; Your camera picks up more information that way and you will always have the option of changing it later once you learn how.&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;&lt;span style=&quot;letter-spacing: 0.0px;&quot;&gt;Open the picture you want in The Gimp.&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;&lt;img src=&quot;http://i128.photobucket.com/albums/p190/KCrimini/Gimp%20Tutorial/Carousel.jpg&quot; alt=&quot;&quot; /&gt;&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;
&lt;p&gt;Never use your original file.&amp;nbsp; In case something goes wrong, duplicate it. Do this by going to &amp;ldquo;Image&amp;rdquo; and then &amp;ldquo;Duplicate.&amp;rdquo;&amp;nbsp; Make any changes or edits to your duplicated version.&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;
&lt;p&gt;&lt;img src=&quot;http://i128.photobucket.com/albums/p190/KCrimini/Gimp%20Tutorial/DuplicateImage.jpg&quot; alt=&quot;&quot; /&gt;&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;
&lt;p&gt;Now we&amp;rsquo;re going to take the color out:&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;
&lt;p&gt;&lt;img src=&quot;http://i128.photobucket.com/albums/p190/KCrimini/Gimp%20Tutorial/Desaturate.jpg&quot; alt=&quot;&quot; /&gt;&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;
&lt;p&gt;&lt;img src=&quot;http://i128.photobucket.com/albums/p190/KCrimini/Gimp%20Tutorial/DesaturateOK.jpg&quot; alt=&quot;&quot; /&gt;&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;
&lt;p&gt;Easy, right?&lt;/p&gt;
&lt;p&gt;But it&amp;rsquo;s too grey.&lt;/p&gt;
&lt;p&gt;&lt;span style=&quot;letter-spacing: 0.0px;&quot;&gt;Let fix it.&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;
&lt;p&gt;&lt;img src=&quot;http://i128.photobucket.com/albums/p190/KCrimini/Gimp%20Tutorial/ColorLevels.jpg&quot; alt=&quot;&quot; /&gt;&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;
&lt;p&gt;&lt;span style=&quot;letter-spacing: 0.0px;&quot;&gt;Go to &amp;ldquo;Color&amp;rdquo; then &amp;ldquo;Levels&amp;rdquo; and play with the levels.&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;
&lt;p&gt;&lt;img src=&quot;http://i128.photobucket.com/albums/p190/KCrimini/Gimp%20Tutorial/ChangeLevels1.jpg&quot; alt=&quot;&quot; /&gt;&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;
&lt;p&gt;Move the triangles until your picture looks the way you want it to.&amp;nbsp; You will have more subtle control of the image if you use the triangles under the histogram (the thing that looks like a mountain).  Here you have a grey triangle to control your greys, too.&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;
&lt;p&gt;&lt;span style=&quot;font-size: 12px; font-family: Helvetica;&quot;&gt;&lt;img src=&quot;http://i128.photobucket.com/albums/p190/KCrimini/Gimp%20Tutorial/ChangeLevels2.jpg&quot; alt=&quot;&quot; /&gt;&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;
&lt;p&gt;That's better, right?&lt;/p&gt;
&lt;p&gt;&lt;span&gt;Make sure to hit &amp;ldquo;OK&amp;rdquo; to save your changes.&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;&lt;span&gt;Now go to &amp;ldquo;File&amp;rdquo; and then &amp;ldquo;Save&amp;rdquo; and save it.&amp;nbsp; It&amp;rsquo;s best to save your photo as a JPEG so you can open it with any computer and any program.&amp;nbsp; Pick the highest resolution.&amp;nbsp; Why not?&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;
&lt;p&gt;&lt;img src=&quot;http://i128.photobucket.com/albums/p190/KCrimini/Gimp%20Tutorial/SaveAsJPEG.jpg&quot; alt=&quot;&quot; /&gt;&lt;/p&gt;
&lt;div&gt;&lt;span&gt;&lt;br /&gt;&lt;/span&gt;&lt;/div&gt;
&lt;p&gt;&lt;span&gt;So there you have it.&amp;nbsp; A perfect black and white, ready to print photo, and you didn&amp;rsquo;t spend a dime.&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;
&lt;p&gt;&lt;img src=&quot;http://i128.photobucket.com/albums/p190/KCrimini/Gimp%20Tutorial/CarouselBW.jpg&quot; alt=&quot;&quot; /&gt;&lt;/p&gt;</body>
    <category-id type="integer">5</category-id>
    <created-at type="datetime">2009-02-10T01:24:02Z</created-at>
    <id type="integer">5</id>
    <published type="boolean">true</published>
    <published-at type="datetime">2009-02-10T17:39:19Z</published-at>
    <synopsis>How to Transform your Color Digital Shots into Beautiful Black and White for Free

Kate Sedgwick shows you how to transform your color digital photographs into rich black and white shots using free software.  The Gimp has many of the features of Photoshop and can be downloaded and used at no cost whether you use a Mac or a PC.

</synopsis>
    <title>Gimp Your Way to the Perfect Black and White Shot</title>
    <updated-at type="datetime">2009-02-10T17:39:19Z</updated-at>
    <user-id type="integer">383</user-id>
  </article>
  <article>
    <body>&lt;p&gt;If you don&amp;rsquo;t know what a Jesus tortilla is, check out &lt;a href=&quot;http://www.jesustortilla.com/&quot;&gt;JesusTortilla.Com&lt;/a&gt;.&lt;/p&gt;
&lt;p&gt;Jesus appears everywhere if you believe &lt;a href=&quot;http://www.ibiblio.org/pub/electronic-publications/stay-free/5/jesus.htm&quot;&gt;these people&lt;/a&gt;, but you have to take their word for it since they don&amp;rsquo;t provide any photographic evidence.  Are you tired of hoping and waiting for a miraculous Jesus tortilla of your own?  Do you want to impress your friends or serve your grandma a treat she&amp;rsquo;ll remember for whatever's left of her life? I would like to impress upon you the fact that miracles come in all shapes and sizes. If you want your miracle to be Marlon Brando from &quot;The Godfather&quot; or Goetse, more power to you. The sky's the limit and no one's stopping you.&lt;/p&gt;
&lt;p&gt;We're sticking with a classic for the time being, though. &amp;nbsp;I&amp;rsquo;m here to bear witness to that fact that manufacturing a miracle is not as easy as it may seem.&amp;nbsp; I will share with you some things to do and one thing not to do.&amp;nbsp; To be clear, this project involves fire and sharp things.&amp;nbsp; Be judicious. I learned everything I know about burning Jesus into a tortilla through trial and error and experimentation.&amp;nbsp; In certain instances, I may have been a little overzealous in my approach.&amp;nbsp; You, however can learn from my mistakes. &amp;nbsp;Let's get started.&lt;/p&gt;
&lt;p class=&quot;shownd_DEFAULT&quot;&gt;Here's what you'll need:&lt;/p&gt;
&lt;p class=&quot;shownd_DEFAULT&quot;&gt;A Jesus Stencil:&lt;/p&gt;
&lt;p class=&quot;shownd_DEFAULT&quot;&gt;&amp;nbsp;&lt;/p&gt;
&lt;p class=&quot;shownd_DEFAULT&quot;&gt;&lt;img src=&quot;http://i128.photobucket.com/albums/p190/KCrimini/MiracleTortilla/JesusStencil.jpg&quot; alt=&quot;&quot; width=&quot;427&quot; height=&quot;640&quot; /&gt;&lt;/p&gt;
&lt;p&gt;I don&amp;rsquo;t recommend going much bigger than this unless you want to buy some aluminum flashing and do a big one on a large flour tortilla.&amp;nbsp; This is about all your tall boy can (which you will be using for your metal stencil) can handle.&amp;nbsp; Actual size is 8 x 12 centimeters.&lt;/p&gt;
&lt;div&gt;Depending on your screen, you may have to make some adjustments.&lt;/div&gt;
&lt;div&gt;
&lt;p&gt;If you have to use regular grade printer paper, you can reinforce your stencil before cutting with clear packing tape. This will make your stencil durable and prevent tearing from some of the finer cuts you will have to make.&lt;/p&gt;
&lt;/div&gt;
&lt;div&gt;&lt;br /&gt;&lt;/div&gt;
&lt;div&gt;Tools and Materials:&lt;br /&gt;&lt;/div&gt;
&lt;div&gt;&lt;img src=&quot;http://i128.photobucket.com/albums/p190/KCrimini/MiracleTortilla/Materials.jpg&quot; alt=&quot;&quot; /&gt;&lt;/div&gt;
&lt;div&gt;&lt;br /&gt;&lt;/div&gt;
&lt;div&gt;&lt;br /&gt;&lt;/div&gt;
&lt;div&gt;
&lt;ul class=&quot;general_list&quot;&gt;
&lt;li&gt;Tortillas (flour used here - results not guaranteed with corn)&lt;/li&gt;
&lt;li&gt;Crack lighter (butane - flame burns in a controlled point)&lt;/li&gt;
&lt;li&gt;Aluminum foil&lt;/li&gt;
&lt;li&gt;Tall Boy Can*&lt;/li&gt;
&lt;li&gt;Clear packing tape*&lt;/li&gt;
&lt;li&gt;Permanent Marker&lt;/li&gt;
&lt;li&gt;Cotton first Aid Tape&lt;/li&gt;
&lt;li&gt;Cutting Board&lt;/li&gt;
&lt;li&gt;Lightweight utility knife&lt;/li&gt;
&lt;li&gt;Paper Stencil of The Lord&lt;/li&gt;
&lt;li&gt;Butane for your lighter&lt;/li&gt;
&lt;li&gt;Helpful: scissors&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;*not pictured here&lt;/p&gt;
&lt;div&gt;&lt;br /&gt;&lt;/div&gt;
&lt;div&gt;&lt;img src=&quot;http://i128.photobucket.com/albums/p190/KCrimini/MiracleTortilla/9TapeYourJesus.jpg&quot; alt=&quot;&quot; /&gt;&lt;/div&gt;
&lt;div class=&quot;FontSize_HUGE&quot;&gt;Tape Your Jesus&lt;/div&gt;
&lt;/div&gt;
&lt;div&gt;&lt;br /&gt;&lt;/div&gt;
&lt;div&gt;&lt;img src=&quot;http://i128.photobucket.com/albums/p190/KCrimini/MiracleTortilla/2CutYourJesus.jpg&quot; alt=&quot;&quot; /&gt;&lt;span class=&quot;FontSize_HUGE&quot;&gt;Cut Your Jesus&lt;/span&gt;&lt;/div&gt;
&lt;div&gt;&lt;br /&gt;&lt;/div&gt;
&lt;div&gt;&lt;img src=&quot;http://i128.photobucket.com/albums/p190/KCrimini/MiracleTortilla/CutYourTallBoy.jpg&quot; alt=&quot;&quot; /&gt;&lt;span class=&quot;FontSize_HUGE&quot;&gt;Cut Your Tall Boy&lt;/span&gt;&lt;/div&gt;
&lt;div&gt;&lt;br /&gt;&lt;/div&gt;
&lt;div&gt;It's worth mentioning here that you ought to be careful. &amp;nbsp;Use scissors if you must. &amp;nbsp;Give the beer to someone who is not using sharp tools and razor thin aluminum. &amp;nbsp;Don't say I didn't warn you.&lt;/div&gt;
&lt;div&gt;&lt;br /&gt;&lt;/div&gt;
&lt;div&gt;Your can will be curly once it's cut. &amp;nbsp;You can straighten it gradually against the edge of a table. &amp;nbsp;Be patient. &amp;nbsp;It will relax.&lt;/div&gt;
&lt;div&gt;&lt;br /&gt;&lt;/div&gt;
&lt;div&gt;Now you are ready to trace the paper stencil onto the can. &amp;nbsp;It&amp;rsquo;s best to leave the painted side of the can up.&amp;nbsp; The pigment on the can has a tendency to catch fire and transmit temperature irregularly, and if you can see it happening, you can nip it in the bud.&lt;/div&gt;
&lt;div&gt;&lt;br /&gt;&lt;/div&gt;
&lt;div&gt;&lt;img src=&quot;http://i128.photobucket.com/albums/p190/KCrimini/MiracleTortilla/4CutCanStencil.jpg&quot; alt=&quot;&quot; /&gt;&lt;br /&gt;&lt;/div&gt;
&lt;div&gt;&lt;br /&gt;&lt;/div&gt;
&lt;div&gt;Cut the stencil from the can with your utility knife. &amp;nbsp;If you didn't follow the advice about not drinking the beer, maybe leave this for the next day? Manual dexterity is a must here. &amp;nbsp;Go slowly to avoid cutting long, destructive and unintentional lines.&lt;/div&gt;
&lt;div&gt;&lt;br /&gt;&lt;/div&gt;
&lt;div&gt;A cutting board is recommended here to conserve your blade and protect household surfaces. &amp;nbsp;Expect to replace (or snap off) the blade once or twice for this step.&lt;/div&gt;
&lt;div&gt;&lt;br /&gt;&lt;/div&gt;
&lt;div&gt;&lt;img src=&quot;http://i128.photobucket.com/albums/p190/KCrimini/MiracleTortilla/Foil.jpg&quot; alt=&quot;&quot; /&gt;&lt;br /&gt;&lt;/div&gt;
&lt;p&gt;Tape tinfoil to all four edges on the front of your stencil. &amp;nbsp;Cotton fiber first-aid tape works well.&lt;/p&gt;
&lt;p&gt;&lt;img src=&quot;http://i128.photobucket.com/albums/p190/KCrimini/MiracleTortilla/Foil2.jpg&quot; alt=&quot;&quot; /&gt;&lt;/p&gt;
&lt;p&gt;Add another piece of foil to the front to cover your tape and for reinforcement.&amp;nbsp;&amp;nbsp;This piece need not be taped, but it should have a hole large enough to expose the entire stencil. &amp;nbsp;Maybe this is overkill, but the less burning hot, fiery surface area is next to your fingertips the better, I say.&lt;/p&gt;
&lt;p&gt;Carefully center your tortilla behind the stencil. &amp;nbsp;Select a tortilla that has few dark spots in the center as they may interfere with your stencil.&lt;/p&gt;
&lt;p&gt;&lt;img src=&quot;http://i128.photobucket.com/albums/p190/KCrimini/MiracleTortilla/ThatsaWrap.jpg&quot; alt=&quot;&quot; /&gt;&lt;/p&gt;
&lt;p&gt;Wrap the tortilla snugly inside the tinfoil taking care not to jostle or fold your tortilla.&lt;img src=&quot;http://i128.photobucket.com/albums/p190/KCrimini/MiracleTortilla/CrashandBurn.jpg&quot; alt=&quot;&quot; /&gt;&lt;/p&gt;
&lt;p&gt;Use your crack lighter to cook the image of Jesus into the tortilla.&amp;nbsp; The method I found works best is to move the lighter much as you would a can of spray paint.&amp;nbsp; You may not see anything at first.&amp;nbsp; The tortilla is moist and you must dry the exposed parts before they begin to toast.&amp;nbsp; Soon you will see a change in color.&amp;nbsp; It will be irregular as the surface of the tortilla is, but this makes your Jesus tortilla more authentic.&lt;/p&gt;
&lt;p&gt;Use something non-flammable to push your stencil snug with the tortilla at the same time you're burning it. &amp;nbsp;This prevents buckles in the stencil from exposing parts that aren't meant to be exposed to the flame. &amp;nbsp;Keep the tip of your scissors or knife close to the parts you are burning at all times.&lt;/p&gt;
&lt;p&gt;Be patient.&amp;nbsp; Allow plenty of time as you want to avoid overheating and destroying your lighter.&amp;nbsp; Miracles take time.&lt;/p&gt;
&lt;p&gt;If you think you can take care of this project quickly, like this:&lt;/p&gt;
&lt;p&gt;&lt;img src=&quot;http://i128.photobucket.com/albums/p190/KCrimini/MiracleTortilla/NotRecd.jpg&quot; alt=&quot;&quot; /&gt;&lt;/p&gt;
&lt;p&gt;I have to tell you that it will not work. &amp;nbsp;You will burn your stencil out of any possible recognizability and destroy your tortilla in the process. &amp;nbsp;Flame-throwing is not the answer. &amp;nbsp;Jesus will only appear if you exercise the virtue of patience.&lt;/p&gt;
&lt;p&gt;&lt;img src=&quot;http://i128.photobucket.com/albums/p190/KCrimini/MiracleTortilla/HeIsBorn.jpg&quot; alt=&quot;&quot; /&gt;&lt;/p&gt;
&lt;p&gt;When you think you&amp;rsquo;ve pretty much got it, remove your tortilla and check out your Jesus.&amp;nbsp; If he&amp;rsquo;s not quite what you imagined, don&amp;rsquo;t worry. &amp;nbsp;&lt;/p&gt;
&lt;p&gt;&lt;img src=&quot;http://i128.photobucket.com/albums/p190/KCrimini/MiracleTortilla/FineTune.jpg&quot; alt=&quot;&quot; /&gt;&lt;/p&gt;
&lt;div&gt;
&lt;p&gt;You can clean him up with a knife point.&amp;nbsp; Carefully scrape away the parts you would like to be lighter. &amp;nbsp;I personally found it disturbing that Jesus was sporting a Hitler 'stache, so I did a little scraping under his little nose.&lt;/p&gt;
&lt;p&gt;&lt;img src=&quot;http://i128.photobucket.com/albums/p190/KCrimini/MiracleTortilla/ReBurn.jpg&quot; alt=&quot;&quot; /&gt;&lt;/p&gt;
&lt;p&gt;You can also burn a little more for accent and shading. &amp;nbsp;If you go a little overboard, you can still potentially rescue your Tortilla in God's Image with the previous step.&lt;/p&gt;
&lt;p&gt;&lt;img src=&quot;http://i128.photobucket.com/albums/p190/KCrimini/MiracleTortilla/FinishedProduct.jpg&quot; alt=&quot;&quot; /&gt;&lt;/p&gt;
&lt;p&gt;So there you have it! &amp;nbsp;Have fun, enjoy and go freak everyone out!&lt;/p&gt;
&lt;/div&gt;</body>
    <category-id type="integer">5</category-id>
    <created-at type="datetime">2009-02-18T04:48:42Z</created-at>
    <id type="integer">6</id>
    <published type="boolean">true</published>
    <published-at type="datetime">2009-02-20T17:39:06Z</published-at>
    <synopsis>&lt;p&gt;&lt;img src=&quot;http://i128.photobucket.com/albums/p190/KCrimini/MiracleTortilla/MakeYrOwnSm.jpg&quot; alt=&quot;Jesus!&quot; /&gt;&lt;/p&gt;

&lt;p&gt;Step by step instructions guiding you through the delicate process of making your own Miracle Jesus Tortilla.  This project is not for the faint of heart or those with little manual dexterity.  Attempt at your own risk.&lt;/p&gt;</synopsis>
    <title>Make Your Own Miracle Jesus Tortilla!</title>
    <updated-at type="datetime">2009-02-20T17:39:06Z</updated-at>
    <user-id type="integer">383</user-id>
  </article>
  <article>
    <body>&lt;p&gt;&lt;span style=&quot;font-weight: bold;&quot;&gt;Tuesday, 2:30am:&lt;/span&gt;&lt;br /&gt;My eyelids droop and my eyes red. I long for my bed yet I still have so many files images to complete by the end of the next day. Opening each file, one at a time, I carefully adjust each one to my liking. 10 or so images later a yawn interrupts me and I realize it's 3 AM. I have been editing for 6 hours now and realize I still have over 250files to go. I can only think two things: One, I need to take less photographs. Two, something needs to change.&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;
&lt;p&gt;&lt;span style=&quot;font-weight: bold;&quot;&gt;Wednesday, 10am:&lt;/span&gt;&lt;br /&gt;I make coffee to ready myself to dig into a full day of editing to meet my deadline. I decide to download a free trial of Adobe Lightroom while I'm waiting for the coffee to brew. Once installed, I upload my images and with 3 clicks have completed what was taking me 5 minutes a photo in Photoshop. Lightroom is a lifesaver.&lt;/p&gt;
&lt;p&gt;With each click, I am getting my life back. No longer will I have loads of backed up photoshoots to edit. Being familiar with Photoshop, Lightroom is a breeze. Of course, I will still use Photoshop often for many things, but nothing can compare to the amount of time Lightroom is going to save me. I had a beer that night to celebrate.&lt;/p&gt;
&lt;p&gt;&lt;img src=&quot;http://shannonleeimages.com/lightroom-sm.jpg&quot; alt=&quot;lightroom&quot; /&gt;&lt;/p&gt;
&lt;p&gt;Go to &lt;a href=&quot;http://www.adobe.com/products/photoshoplightroom/&quot;&gt;http://www.adobe.com/products/photoshoplightroom/&lt;/a&gt; to download a free 30 day trial.&amp;nbsp; It retails between $250-$300 and is worth every single penny. If you are a student (or if you know one) you can get it around $70-$100.&lt;/p&gt;
&lt;p&gt;There is still much I need to learn of Lightroom, as I learn I'll share my tutorials... more to come soon!&lt;/p&gt;</body>
    <category-id type="integer">4</category-id>
    <created-at type="datetime">2009-02-28T05:39:28Z</created-at>
    <id type="integer">7</id>
    <published type="boolean">true</published>
    <published-at type="datetime">2009-02-28T22:01:00Z</published-at>
    <synopsis>Praises for Adobe Lightroom for professional photographers.</synopsis>
    <title>How Lightroom Gave Me My Life Back</title>
    <updated-at type="datetime">2009-02-28T22:01:00Z</updated-at>
    <user-id type="integer">389</user-id>
  </article>
  <article>
    <body>&lt;p&gt;
&lt;p&gt;Whether it is a company, an individual, or an event organizer - More often than not, people in general will want to hire a photographer that is able to give them a cutting edge, contemporary image. As a matter of fact, one of the number one things people look for in a photographer is something visually modern in style and technique. If you have been a photographer for many years, you know that popular visual styles are constantly changing all of the time. Things that were once &quot;never to be spoken of&quot; are now the hot new thing. It can be hard to keep up with all of the buzz, and it can be even more difficult to change the way you photograph things after shooting a certain way for an extended period of time. The following are four key ideas of how to keep up with the times.&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;
&lt;h3&gt;&lt;span style=&quot;font-weight: bold;&quot;&gt;Keeping up with magazines&lt;/span&gt;&lt;br /&gt;&lt;/h3&gt;
&lt;p&gt;If you want to keep up with the times, the best method is to look at any up-to-date photography magazines. It is usually a top priority for magazines that specialize in photography to know what is visually &quot;in&quot;. Sometimes magazines even view it is as their responsibility to bring something new to the table to inspire photographers. A great genre of magazines to follow is fashion magazines. Now, before you give me droopy eyes and tilt your head the other way - There is a great reason I bring up fashion magazines. Fashion is built around the idea of consistently and continually reshaping trends. This means fashion photographers always have to be on top of their game to keep up with the fashion industry. Although fashion styles go in and out, a lot of fashion photography actually lingers for years and is used by other industries.&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;
&lt;h3&gt;&lt;span style=&quot;font-weight: bold;&quot;&gt;Striving for constant redefinition&lt;/span&gt;&lt;br /&gt;&lt;/h3&gt;
&lt;p&gt;As mentioned before, it can be difficult to keep up with the times on a visual level. This indirectly means that things are constantly changing and it is ideal to keep it a prime concern to strive for redefinition. By this I mean taking your own person &quot;twist&quot; on things and continuously integrating it with sought after, present-day techniques. This alone will set you ahead of over half of your &quot;competition&quot;. Striving for new techniques before they even happen will eliminate any remaining competition, which brings us to the next key idea...&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;
&lt;h3&gt;&lt;span style=&quot;font-weight: bold;&quot;&gt;Being an innovator&lt;/span&gt;&lt;br /&gt;&lt;/h3&gt;
&lt;p&gt;If you take a moment to think how trends are set, it becomes easy to understand that anyone can become an innovator in the realm of photography. Like any other industry, trends are set by innovators. Innovators are not scientists in labs who work for companies to meld together chemicals and formulate things that will become popular. Something becomes popular with a mixture of two things: Exposure and making something look(visually and/or mentally) different in a good way that people are either not familiar with or have never really thought of before. This may be a new twist on old techniques, or something no one has ever seen period, as long as it is something that can be viewed as &quot;different&quot;. This type of innovation is usually set by professional photographers who have such a desire to strive with their photography that they are constantly looking for new ways to shoot. They experiment with new forms/levels of light in places that they usually don't/wouldn't put them and using focal lengths that they might not usually use which, again, brings us to our last idea...&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;
&lt;h3&gt;&lt;span style=&quot;font-weight: bold;&quot;&gt;Experimenting with different lenses&lt;/span&gt;&lt;br /&gt;&lt;/h3&gt;
&lt;p&gt;When you become one with a particular workflow, you also become partial to particular techniques that sometimes prohibit you from being more creative than you could be. This includes using only a particular bag focal lengths that you are used to shooting with. If you're used to working only with a 50mm and a 100mm, the possibility of you using a wide lens is pretty slim and thus cuts your creative freedom by leaps and bounds. It is in your best interest as a photographer to learn how to work with all types of lenses, but only to the point where you know how to operate them. Getting used to certain focal lengths can become a disadvantage because it often times reduces the amount at which someone experiments. Remember that one of the key elements of being a great photographer is to treat each location as if you have never been there before and to capture everything as a stranger. This concept works on many levels and should never be forgotten!&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;
&lt;p&gt;Learning cutting edge photography can be stressful at first but you get used to the constant strive and it becomes a priority once you realize how important it is to keep on top of your game. It not only keeps you fully booked, but will also set your standard above most of your competition and that's what you're high paying customers want to see - Passion, and high standards. Always remember - If you don't like what you see, try something else until you &lt;span style=&quot;font-style: italic;&quot;&gt;LOVE&lt;/span&gt; what you see!&lt;/p&gt;
&lt;/p&gt;</body>
    <category-id type="integer">4</category-id>
    <created-at type="datetime">2009-03-04T00:07:09Z</created-at>
    <id type="integer">8</id>
    <published type="boolean">true</published>
    <published-at type="datetime">2009-03-04T00:07:09Z</published-at>
    <synopsis>If you have been a photographer for many years, you know that popular visual styles are constantly changing all of the time. Things that were once &quot;never to be spoken of&quot; are now the hot new thing. It can be hard to keep up with all of the buzz, and it can be even more difficult to change the way you photograph things after shooting a certain way for an extended period of time. The following is three key ideas of how to keep up with the times.</synopsis>
    <title>Keeping Your Photography Cutting Edge</title>
    <updated-at type="datetime">2009-03-04T00:07:09Z</updated-at>
    <user-id type="integer">443</user-id>
  </article>
  <article>
    <body>&lt;p&gt;Is film a dying medium?&lt;span&gt;&amp;nbsp; &lt;/span&gt;Many seem to think so with digital taking over.&lt;span&gt;&amp;nbsp; &lt;/span&gt;It&amp;rsquo;s easy, it&amp;rsquo;s cheap, it&amp;rsquo;s immediate.&lt;span&gt;&amp;nbsp; &lt;/span&gt;It offers so much yet I still find film so rewarding.&lt;span&gt;&amp;nbsp;&amp;nbsp; &lt;/span&gt;My first photography class in high school I learned how to develop and print my own photographs using a Minolta Maxxum 5.&lt;span&gt;&amp;nbsp; &lt;/span&gt;There is nothing more terrifying than winding your first roll of film onto a reel in complete darkness, the sweet tinge permeating from the chemicals while being agitated in their metal container, and the delight of watching as your hard work appears in front of your eyes in the developer under the dim red light.&lt;span&gt;&amp;nbsp; &lt;/span&gt;&lt;/p&gt;
&lt;p class=&quot;Style2&quot;&gt;&amp;nbsp;&lt;/p&gt;
&lt;p class=&quot;Style2&quot;&gt;All the big names in photography used film, Ansel Adams, Annie Leibovitz (although she shoots all digital now), Dorthea Lange, W. Eugene Smith, Henri-Cartier Bresson, the list goes on.&lt;span&gt;&amp;nbsp; &lt;/span&gt;But where will this new and greatly rising medium take photography?&lt;/p&gt;
&lt;p class=&quot;Style2&quot;&gt;&amp;nbsp;&lt;/p&gt;
&lt;p class=&quot;Style2&quot;&gt;Here are a few shots I took in Australia (I took 4 cameras with me, 2 film, 2 digital):&lt;/p&gt;
&lt;p class=&quot;Style2&quot;&gt;&lt;img style=&quot;vertical-align: middle; border: 1px solid black;&quot; src=&quot;http://shannonleeimages.com/inblog/shownd/090102-40D-1454sm-lxsm.jpg&quot; alt=&quot;melbourne, australia&quot; width=&quot;625&quot; height=&quot;433&quot; /&gt;&lt;/p&gt;
&lt;p class=&quot;Style2&quot;&gt;&amp;nbsp;&lt;/p&gt;
&lt;p class=&quot;Style2&quot;&gt;&lt;img style=&quot;vertical-align: middle; border: 1px solid black;&quot; src=&quot;http://shannonleeimages.com/inblog/shownd/090112-MFILM-2395sm-lxsm.jpg&quot; alt=&quot;melbourne, australia&quot; width=&quot;625&quot; height=&quot;419&quot; /&gt;&lt;/p&gt;
&lt;p class=&quot;Style2&quot;&gt;&amp;nbsp;&lt;/p&gt;
&lt;p class=&quot;Style2&quot;&gt;Can you tell the difference?&lt;span&gt;&amp;nbsp; &lt;/span&gt;One is better composed and a nicer day of course.&lt;span&gt;&amp;nbsp; &lt;/span&gt;I tried to as closely as possible edit them to look the same in contrast, color and cropping.&lt;span&gt;&amp;nbsp; &lt;/span&gt;For those of you who aren&amp;rsquo;t sure, the first one is digital, the second is film.&lt;span&gt;&amp;nbsp; &lt;/span&gt;I shot the first quickly, without thinking too hard about it.&lt;span&gt;&amp;nbsp; &lt;/span&gt;The second was taken with a bit more planning and patience on a nicer day.&lt;span&gt;&amp;nbsp; &lt;/span&gt;Unfortunately, this is the best example from my work I could find.&lt;span&gt;&amp;nbsp; &lt;/span&gt;I think I may try experimenting with this in the future.&lt;/p&gt;
&lt;p class=&quot;Style2&quot;&gt;&amp;nbsp;&lt;/p&gt;
&lt;p class=&quot;Style2&quot; style=&quot;text-align: center;&quot;&gt;&lt;strong&gt;Using Film &lt;/strong&gt;&lt;/p&gt;
&lt;p class=&quot;Style2&quot;&gt;&lt;strong&gt;Positives:&lt;/strong&gt;&lt;/p&gt;
&lt;p class=&quot;Style2&quot;&gt;1. Grain, grain, grain!&lt;span&gt;&amp;nbsp; &lt;/span&gt;I can&amp;rsquo;t say how much I love film grain.&lt;span&gt;&amp;nbsp; &lt;/span&gt;This can be computer generated though.&lt;/p&gt;
&lt;p class=&quot;Style2&quot;&gt;2. Set up time &amp;ndash; I love the fact that when I&amp;rsquo;m shooting film I think more carefully about my photo.&lt;span&gt;&amp;nbsp; &lt;/span&gt;I get 24-36 chances (sometimes only 12 on a Holga) to get my shots.&lt;span&gt;&amp;nbsp; &lt;/span&gt;The expense of film forces me to be a better photographer.&lt;/p&gt;
&lt;p class=&quot;Style2&quot;&gt;3. Unpredictable &amp;ndash; never know what you&amp;rsquo;re going to get and that&amp;rsquo;s liberating for creative people like me.&lt;/p&gt;
&lt;p class=&quot;Style2&quot;&gt;4. Size &amp;ndash; you can blow up a large format film photo much larger than digital &amp;ndash; although this probably won&amp;rsquo;t be the case much longer with the rapid increase in technology.&lt;/p&gt;
&lt;p class=&quot;Style2&quot;&gt;&amp;nbsp;&lt;/p&gt;
&lt;p class=&quot;Style2&quot;&gt;&lt;strong&gt;Negatives:&lt;/strong&gt;&lt;/p&gt;
&lt;p class=&quot;Style2&quot;&gt;1. Unpredictable &amp;ndash; never sure what you&amp;rsquo;re going to get.&lt;span&gt;&amp;nbsp; &lt;/span&gt;If you mess something up, you don&amp;rsquo;t know until after you get your film back.&lt;span&gt;&amp;nbsp; &lt;/span&gt;You could miss a great memory if the film has gone bad, a light leak, or poor developing.&lt;/p&gt;
&lt;p class=&quot;Style2&quot;&gt;2. Expense &amp;ndash; can be a little or a lot more expensive than digital considering you have to buy film and process it.&lt;span&gt;&amp;nbsp; &lt;/span&gt;Although it can be done for less than $10 a roll.&lt;/p&gt;
&lt;p class=&quot;Style2&quot;&gt;3. Time &amp;ndash; It takes time to get your photos back after taking them.&lt;span&gt;&amp;nbsp; &lt;/span&gt;I can&amp;rsquo;t go shoot and look at the photos when I get home.&lt;span&gt;&amp;nbsp; &lt;/span&gt;Although 1 hour processing is available.&lt;/p&gt;
&lt;p class=&quot;Style2&quot;&gt;&amp;nbsp;&lt;/p&gt;
&lt;p class=&quot;Style2&quot;&gt;When it comes down to it, I think that it all depends on what you are shooting.&lt;span&gt;&amp;nbsp; &lt;/span&gt;Being a professional photographer, nothing beats the immediacy, ease and price of digital.&lt;span&gt;&amp;nbsp; &lt;/span&gt;It&amp;rsquo;s certainly changed photography.&lt;span&gt;&amp;nbsp; &lt;/span&gt;However, there is something about that quality of film that makes it irresistible.&lt;span&gt;&amp;nbsp; &lt;/span&gt;I hope to and would love to shoot a wedding on film someday.&lt;span&gt;&amp;nbsp; &lt;/span&gt;&lt;/p&gt;
&lt;p class=&quot;Style2&quot;&gt;It saddens me to realize that perhaps, yes, film is a dying format.&lt;span&gt;&amp;nbsp; &lt;/span&gt;However, cheap film cameras sold in Urban Outfitters gives me hope that the young, creative souls will keep it alive and film will have its comeback.&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;</body>
    <category-id type="integer">4</category-id>
    <created-at type="datetime">2009-03-08T03:31:34Z</created-at>
    <id type="integer">9</id>
    <published type="boolean">true</published>
    <published-at type="datetime">2009-03-08T19:58:51Z</published-at>
    <synopsis>Which is better photography? Film or digital?</synopsis>
    <title>Film vs Digital</title>
    <updated-at type="datetime">2009-03-08T19:58:51Z</updated-at>
    <user-id type="integer">389</user-id>
  </article>
  <article>
    <body>&lt;p&gt;I'm the sort of person who feels it's important for all graphic designers specializing in the web front to have a decent grasp of markup (XHTML) and styling (CSS) techniques. This technique will help in creating image-based menus by filling in the colors using CSS rather than the flat image. The obvious benefits include less images to produce as a whole, faster download times, easier maintenance, and painless modifications.&lt;/p&gt;
&lt;p&gt;This article will cover something which I consider to be extremely useful to designers who wish to make dynamically-colored menus using images rather than text.&lt;/p&gt;
&lt;p&gt;For example, let's say you have your standard menu with 4 links: Home, Locations, About, Contact. Maybe you want to color each link differently, one red, one blue, one green, one orange. The hover state for all of them will be... let's say white. You can go ahead and make 4 images (home red, locations blue, about green, contact orange) and then 4 additional hover state images bringing your total to 8. Fair enough, it's not really a tough task to undertake, though I can help you cut that time in half.&lt;/p&gt;
&lt;p&gt;You show your client the menu and he loves it. You continue working on the rest of the site and a few days later the client frantically calls you and says, &quot;we need to change the the menu IMMEDIATELY! Our competitor's menu has the same colors, plus our logo designer decided to use different colors and we want them to match!&quot;&lt;/p&gt;
&lt;p&gt;This kind of thing happens all the time, and if you're using images instead of browser-rendered text it can start taking up more and more time to recreate those images again.&lt;/p&gt;
&lt;p&gt;Another example is a menu for a site that lets users choose a theme, or perhaps a seasonal change to the site's colors. Rather than making images for each of the themes, use this method.&lt;/p&gt;
&lt;p&gt;All right, enough anecdotes, let's get right to it. Most of this markup and CSS is from the &lt;a href=&quot;../../articles/1/Creating-an-image-based-menu-with-CSS&quot;&gt;first article in the series&lt;/a&gt; which means you can just refer to that if you need in-depth explanations of what's going on.&lt;/p&gt;
&lt;p&gt;The markup:&lt;/p&gt;
&lt;pre&gt;&lt;code&gt;
&amp;lt;ul id=&quot;menu&quot;&amp;gt;
    &amp;lt;li id=&quot;selected&quot; class=&quot;home&quot;&amp;gt;&amp;lt;a href=&quot;#&quot;&amp;gt;Home&amp;lt;/a&amp;gt;&amp;lt;/li&amp;gt;
    &amp;lt;li class=&quot;locations&quot;&amp;gt;&amp;lt;a href=&quot;#&quot;&amp;gt;Locations&amp;lt;/a&amp;gt;&amp;lt;/li&amp;gt;
    &amp;lt;li class=&quot;about&quot;&amp;gt;&amp;lt;a href=&quot;#&quot;&amp;gt;About Us&amp;lt;/a&amp;gt;&amp;lt;/li&amp;gt;
    &amp;lt;li class=&quot;contact&quot;&amp;gt;&amp;lt;a href=&quot;#&quot;&amp;gt;Contact Us&amp;lt;/a&amp;gt;&amp;lt;/li&amp;gt;
&amp;lt;/ul&amp;gt;
&lt;/code&gt;
&lt;/pre&gt;
&lt;p&gt;Again, very short and sweet. The CSS is, for the most part, the same as the original with a slight variation which I'll get to:&lt;/p&gt;
&lt;pre&gt;&lt;code class=&quot;code_css&quot;&gt;html {margin: 0; padding: 0;}&lt;br /&gt;body {&lt;br /&gt;	margin: 0;&lt;br /&gt;	font-family: Arial;&lt;br /&gt;	background-color: white;&lt;br /&gt;	font-size: .75em;&lt;br /&gt;	color: #333;&lt;br /&gt;}&lt;br /&gt;a:link {color: white; text-decoration: none; font-weight: bold;}&lt;br /&gt;a:hover {color: #87acee;}&lt;br /&gt;&lt;br /&gt;ul#menu {&lt;br /&gt;	list-style: none;&lt;br /&gt;	margin: 0;&lt;br /&gt;	padding: 10px;&lt;br /&gt;	height: 25px;&lt;br /&gt;	background: #303136;&lt;br /&gt;}&lt;br /&gt;ul#menu li {&lt;br /&gt;	float: left;&lt;br /&gt;	display: inline;&lt;br /&gt;	height: 25px;&lt;br /&gt;	margin: 0 10px;&lt;br /&gt;&lt;br /&gt;}&lt;br /&gt;ul#menu li a {&lt;br /&gt;	display: block;&lt;br /&gt;	height: 25px;&lt;br /&gt;	text-indent: -999em;&lt;br /&gt;}&lt;br /&gt;&lt;br /&gt;.home a {background:white url(images/menu_home.png) 0 0 no-repeat; width: 67px;}&lt;br /&gt;.locations a {background: red url(images/menu_locations.png) 0 0 no-repeat; width: 119px;}&lt;br /&gt;.about a {background: orange url(images/menu_about.png) 0 0 no-repeat; width: 115px;}&lt;br /&gt;.contact a {background: green url(images/menu_contact.png) 0 0 no-repeat; width: 136px;}&lt;br /&gt;&lt;br /&gt;.home a:hover, ul#menu li.locations a:hover,&lt;br /&gt;.about a:hover, ul#menu li.contact a:hover {background-color: white;}&lt;br /&gt;&lt;/code&gt;&lt;/pre&gt;
&lt;p&gt;As you can see it's pretty much the same. The differences lie within the &lt;em&gt;background color&lt;/em&gt; of the list item element in question. What we're doing here is creating an image of the text with an alpha transparency.&lt;/p&gt;
&lt;p&gt;This is what it would look like in Photoshop:&lt;/p&gt;
&lt;p&gt;&lt;img src=&quot;http://orlandodefrias.com/examples/image-based-menu-color/step1/images/sample.png&quot; alt=&quot;&quot; /&gt;&lt;/p&gt;
&lt;p&gt;You don't need a hover state image since that will be controlled strictly through the CSS. What you need is the transparent image. If you don't know how to make it, I'll quickly show you how in Photoshop.&lt;/p&gt;
&lt;h4&gt;Making the images&lt;/h4&gt;
&lt;p&gt;&lt;strong&gt;Step 1:&lt;/strong&gt; Create a new layer (above the Background Layer) and give it the background color you'd like. I used #303136 for mine.&lt;br /&gt; &lt;strong&gt;Step 2:&lt;/strong&gt; Switch to the background layer and either make it transparent or hide its layer visibility. The point is you cannot have a locked layer at the base.&lt;br /&gt; &lt;strong&gt;Step 3:&lt;/strong&gt; Use the Type Tool and type out your menu word. Use a color that contrasts your background. I used #ffffff (white) for mine.&lt;br /&gt; &lt;strong&gt;Step 4:&lt;/strong&gt; Rasterize the layer (right click the layer in the layers panel, click rasterize type) and open up the layer's blending options by right clicking the layer in the panel and then clicking &quot;Blending Options...&quot;&lt;br /&gt; &lt;strong&gt;Step 5:&lt;/strong&gt; In the advanced blending section of blending options, move the Fill Opacity slider to 0 and set the knockout to &quot;shallow.&quot;&lt;/p&gt;
&lt;p&gt;&lt;img src=&quot;http://orlandodefrias.com/examples/image-based-menu-color/step1/images/making_font.png&quot; alt=&quot;&quot; /&gt;&lt;/p&gt;
&lt;p&gt;That's that. Crop it up to taste and save your file for web as PNG-24 (that's important.) You can create the other menu item files in the same method.&lt;/p&gt;
&lt;p&gt;Now when you want to change menu colors, you can do so in the CSS simply by changing the background-color, leaving the image intact, as such:&lt;/p&gt;
&lt;pre&gt;&lt;code class=&quot;code_css&quot;&gt;&lt;br /&gt;.your_item a {background: #56FD34 url(images/your_image.png) 0 0 no-repeat;}&lt;br /&gt;.your_item a:hover {background-color: #9D14AB;}&lt;br /&gt;&lt;/code&gt;&lt;/pre&gt;
&lt;h4&gt;What about IE6?&lt;/h4&gt;
&lt;p&gt;As you might have noticed, IE6 doesn't play nice with this on account of using alpha-transparent PNGs to achieve the anti-aliased text effect. In order to fix this while maintaining valid CSS you'll need to use ActiveX but do so in an IE6-specific stylesheet using conditionals. Here is the CSS you'll put in your IE6 stylesheet:&lt;/p&gt;
&lt;pre&gt;&lt;code class=&quot;code_css&quot;&gt;&lt;br /&gt;ul#menu li a {position: relative;} /*Fix IE6 link bug on PNGs*/&lt;br /&gt;.home a {&lt;br /&gt;	background-image: none;&lt;br /&gt;	filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(enabled=true, src=images/menu_home.png, sizingMethod=image);&lt;br /&gt;	cursor: pointer;&lt;br /&gt;}&lt;br /&gt;.locations a {&lt;br /&gt;	background-image: none;&lt;br /&gt;	filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(enabled=true, src=images/menu_locations.png, sizingMethod=image);&lt;br /&gt;	cursor: pointer;&lt;br /&gt;}&lt;br /&gt;.about a {&lt;br /&gt;	background-image: none;&lt;br /&gt;	filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(enabled=true, src=images/menu_about.png, sizingMethod=image);&lt;br /&gt;	cursor: pointer;&lt;br /&gt;}&lt;br /&gt;.contact a {&lt;br /&gt;	background-image: none;&lt;br /&gt;	filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(enabled=true, src=images/menu_contact.png, sizingMethod=image);&lt;br /&gt;	cursor: pointer;&lt;br /&gt;}&lt;br /&gt;&lt;/code&gt;&lt;/pre&gt;
&lt;p&gt;We're knocking out the background image on IE6 and replacing it with a Microsoft proprietary ActiveX filter. If you placed this in your IE stylesheet, you'll need to tell the XHTML file to load it for IE6 only. Place the following inside your document's &amp;lt;head&amp;gt; tags and replaced ie_styles.css with your stylesheet:&lt;/p&gt;
&lt;pre&gt;&lt;code class=&quot;code_xhtml&quot;&gt;&lt;br /&gt;&lt;!--[if lt IE 7]&gt;
&lt;link href=&quot;ie_styles.css&quot; mce_href=&quot;ie_styles.css&quot; media=&quot;screen&quot; rel=&quot;stylesheet&quot; type=&quot;text/css&quot; /&gt;&lt;![endif]--&gt;&lt;br /&gt;&lt;/code&gt;&lt;/pre&gt;
&lt;p&gt;&lt;a href=&quot;http://orlandodefrias.com/examples/image-based-menu-color/step1/index.html&quot;&gt;View the complete menu&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;This kind of technique is something you can get used to putting together on all your image-based menus to make life much easier on you. I was very thorough in this tutorial, so while it may seem like a lot to do, it's actually the kind of thing you can get done in mere minutes.&lt;/p&gt;</body>
    <category-id type="integer">5</category-id>
    <created-at type="datetime">2009-03-11T15:42:50Z</created-at>
    <id type="integer">10</id>
    <published type="boolean">true</published>
    <published-at type="datetime">2009-03-11T15:42:50Z</published-at>
    <synopsis>Learn a CSS technique that will help in creating image-based menus by filling in the colors using CSS rather than a flat image. The obvious benefits include less images to produce as a whole, faster download times, easier maintenance, and painless modifications.</synopsis>
    <title>CSS Menu With Background Colors</title>
    <updated-at type="datetime">2009-03-11T15:42:50Z</updated-at>
    <user-id type="integer">1</user-id>
  </article>
  <article>
    <body>&lt;p&gt;Why is it that certain celebrities rub you the wrong way?&lt;/p&gt;
&lt;p&gt;Do you ever get a little angry when you have to see some celebrity schmuck&amp;rsquo;s face for the nine-billionth time?&lt;/p&gt;
&lt;p&gt;The purpose of this tutorial is to give you an outlet - a new way of seeing the celebrities that get on your nerves the most.&lt;/p&gt;
&lt;p&gt;Ask yourself the following series of questions:&lt;/p&gt;
&lt;p&gt;1) What celebrity am I sick of seeing?&lt;/p&gt;
&lt;p&gt;2) &amp;nbsp;Who or what does the celebrity remind me of?&lt;/p&gt;
&lt;p&gt;&lt;img src=&quot;http://i128.photobucket.com/albums/p190/KCrimini/MonoFarrell/CelebArraycopy.jpg&quot; alt=&quot;Which Celebrity Makes You Sick?&quot; /&gt;&lt;/p&gt;
&lt;p class=&quot;FontSize_LARGE&quot;&gt;&lt;span style=&quot;font-weight: bold;&quot;&gt;EXAMPLE: &amp;nbsp;I asked my friend the above questions. &amp;nbsp;&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;She said, &amp;ldquo;Dr. Phil is repugnant in a way that sometimes makes my stomach hurt. &amp;nbsp;He makes me think of a cross dressing wanker in silk panties or an adult baby who longs to crap his diapers and call someone &amp;lsquo;mommy&amp;rsquo; to get off. &amp;nbsp;He makes me sick.&lt;/p&gt;
&lt;p&gt;My friend has plenty of material to work with if she decides to give Dr. Phil a makeover.&lt;/p&gt;
&lt;p&gt;The stupid face I'm sick of seeing today is that of Colin Farrell.&amp;nbsp;&lt;/p&gt;
&lt;p&gt;Why? &amp;nbsp;Do I need a reason?&lt;/p&gt;
&lt;p&gt;I hate him. &amp;nbsp;He&amp;rsquo;s like a glorified monkey-faced wuss boy with muscles and he probably waxes his crotch. &amp;nbsp;He doesn&amp;rsquo;t have the raw masculinity to pull off the roles he&amp;rsquo;s cast in. &amp;nbsp;He&amp;rsquo;s a whoremonger. &amp;nbsp;Whatever. &amp;nbsp;I don&amp;rsquo;t know why. &amp;nbsp;I don&amp;rsquo;t like him.&lt;/p&gt;
&lt;p&gt;Q: Which of the previous free associations about Colin Farrell could be clultivated with visual imagery?&lt;/p&gt;
&lt;p&gt;A: Glorified monkey face.&lt;/p&gt;
&lt;p&gt;Let&amp;rsquo;s get started.&lt;/p&gt;
&lt;hr /&gt;
&lt;p class=&quot;shownd_DEFAULT&quot;&gt;&lt;span class=&quot;FontSize_LARGE&quot; style=&quot;font-weight: bold;&quot;&gt;What you will need:&lt;/span&gt;&lt;/p&gt;
&lt;ul class=&quot;general_list&quot;&gt;
&lt;li&gt;Photoshop CS 2 or 3*&lt;/li&gt;
&lt;li&gt;An internet connection&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;&lt;small&gt;*You could probably do this in
&lt;script src=&quot;../../../javascripts/tiny_mce/themes/advanced/langs/en.js?1236204951&quot; type=&quot;text/javascript&quot;&gt;&lt;/script&gt;
other versions of Photoshop, but I use the &amp;ldquo;warp&amp;rdquo; tool here and that is not available in prior versions of the program.&lt;/small&gt;&lt;/p&gt;
&lt;hr /&gt;
&lt;p&gt;Search for images of your target and of what they remind you of.&lt;/p&gt;
&lt;p&gt;My friend above would search for &amp;ldquo;Dr. Phil&amp;rdquo; and &amp;ldquo;Adult Baby&amp;rdquo; or &amp;ldquo;Cross Dresser.&amp;rdquo;&lt;/p&gt;
&lt;p&gt;Download several images that might work. &amp;nbsp;You are looking for a correlation of the angle of the face and the direction of the light so you can combine the photo of your target with the insulting photo you will ultimately superimpose their face over.&lt;/p&gt;
&lt;p&gt;I found a Photo of Galen from &quot;The Planet of the Apes&quot; that I correlated with the facial angle of a photo of Colin Farrell.&lt;/p&gt;
&lt;p&gt;&lt;img src=&quot;http://i128.photobucket.com/albums/p190/KCrimini/MonoFarrell/Far.jpg&quot; alt=&quot;Photo 1&quot; /&gt;&lt;/p&gt;
&lt;p&gt;The red here is a separate layer so I can remove it at any time. &amp;nbsp;Best just to orient GMB (Glorified Monkey Boy) over the red area and go from there.&lt;/p&gt;
&lt;p&gt;Drag the celeb photo onto the insult photo with the move tool.&lt;/p&gt;
&lt;p&gt;&lt;img src=&quot;http://i128.photobucket.com/albums/p190/KCrimini/MonoFarrell/Far2.jpg&quot; alt=&quot;Orient and Scale&quot; /&gt;&lt;/p&gt;
&lt;p&gt;Orient and roughly scale the face of the hated using Transform/Scale&lt;/p&gt;
&lt;p&gt;&lt;img src=&quot;http://i128.photobucket.com/albums/p190/KCrimini/MonoFarrell/Far3.jpg&quot; alt=&quot;Transparent&quot; /&gt;&lt;/p&gt;
&lt;p&gt;Adjust transparency in your layers palette to help you orient The Hated's face properly in the photograph. &amp;nbsp;Alternate between Transform/Rotate and Transform/Scale until you are satisfied with the orientation.&lt;/p&gt;
&lt;p&gt;&lt;img src=&quot;http://i128.photobucket.com/albums/p190/KCrimini/MonoFarrell/Far4.jpg&quot; alt=&quot;Remove buffer layer&quot; /&gt;&lt;/p&gt;
&lt;p&gt;Here I've removed the buffer layer and you can see Galen peeking out. &amp;nbsp;&lt;/p&gt;
&lt;p&gt;It's time to fine tune the images.&lt;/p&gt;
&lt;p&gt;Start by using the eraser tool to fit the face over the insult photo.&lt;/p&gt;
&lt;p&gt;&lt;img src=&quot;http://i128.photobucket.com/albums/p190/KCrimini/MonoFarrell/Far5.jpg&quot; alt=&quot;Erase&quot; /&gt;&lt;/p&gt;
&lt;p&gt;If you erase a little too much, no worries. &amp;nbsp;You will be using the photo below to meld with. &amp;nbsp;The edges do not have to be perfect.&lt;/p&gt;
&lt;p&gt;&lt;img src=&quot;http://i128.photobucket.com/albums/p190/KCrimini/MonoFarrell/Far6.jpg&quot; alt=&quot;Warp&quot; /&gt;&lt;/p&gt;
&lt;p&gt;Use Transform/Warp to get a closer correlation between the parts of the face.&lt;/p&gt;
&lt;p&gt;&lt;img src=&quot;http://i128.photobucket.com/albums/p190/KCrimini/MonoFarrell/Far7.jpg&quot; alt=&quot;Color Balance&quot; /&gt;&lt;/p&gt;
&lt;p&gt;Use Image/Adjustments/Color Balance to get The Hated's skin tone as close to that of the insult photo as possible. &amp;nbsp;Here, Galen is very red. &amp;nbsp;I adjusted for red and yellow for Shadows, Midtones and Highlights to get the closest possible match.&lt;/p&gt;
&lt;p&gt;&lt;img src=&quot;http://i128.photobucket.com/albums/p190/KCrimini/MonoFarrell/Far8.jpg&quot; alt=&quot;Peek a Boo&quot; /&gt;&lt;/p&gt;
&lt;p&gt;I like to incorporate as much of the original insult photo as possible, giving just enough of a sprinkling of the original celebrity features so as to be recognizable. &amp;nbsp; &amp;nbsp;Here I've used the erase tool to show much more of Galen's face replacing the eyes, nose and mouth with that of &amp;nbsp;GMF.&lt;/p&gt;
&lt;p&gt;It's looking pretty apparent that Farrell needs another color adjustment.&lt;/p&gt;
&lt;p&gt;&lt;img src=&quot;http://i128.photobucket.com/albums/p190/KCrimini/MonoFarrell/Far10.jpg&quot; alt=&quot;Clone&quot; /&gt;&lt;/p&gt;
&lt;p&gt;There. &amp;nbsp;That's better. &amp;nbsp;&lt;/p&gt;
&lt;p&gt;Now I switch layers to the background and clone stamp until I've eradicated Galen's original facial features that are still peeping through.&lt;/p&gt;
&lt;p&gt;&lt;img src=&quot;http://i128.photobucket.com/albums/p190/KCrimini/MonoFarrell/Far12.jpg&quot; alt=&quot;I can live without the nose&quot; width=&quot;550&quot; height=&quot;550&quot; /&gt;&lt;/p&gt;
&lt;p&gt;I've decided that I can live without Farrell's original nose. &amp;nbsp;Once I erase it, his mouth seems out of alignment. &amp;nbsp;I simply select it with the Marquee tool and bump it over a little.&lt;/p&gt;
&lt;p&gt;Use your judgement. This project is for your personal satisfaction. If you're happy just putting Britney Spears' eyes over those of a sloth and calling it a day, just pick and choose the steps that will get your desired effect.&lt;/p&gt;
&lt;p&gt;&lt;img src=&quot;http://i128.photobucket.com/albums/p190/KCrimini/MonoFarrell/MonoFinal-1.jpg&quot; alt=&quot;Final&quot; /&gt;&lt;/p&gt;
&lt;p&gt;So there you have it.  The final product. Whew! I feel much better now.&lt;/p&gt;
&lt;p&gt;Remember: The most important thing is that you amuse yourself.  Experiment and have fun!&lt;/p&gt;</body>
    <category-id type="integer">5</category-id>
    <created-at type="datetime">2009-03-20T21:13:51Z</created-at>
    <id type="integer">13</id>
    <published type="boolean">true</published>
    <published-at type="datetime">2009-03-21T01:41:33Z</published-at>
    <synopsis>&lt;p&gt;&lt;img src=&quot;http://i128.photobucket.com/albums/p190/KCrimini/MonoFarrell/CelebArraycopy.jpg&quot; alt=&quot;How to Deface Celebrity Photos the Right Way&quot; /&gt;&lt;/p&gt;

&lt;p&gt;Everywhere you look these days, there's some horribly photoshopped celebrity.  &lt;/p&gt;

&lt;p&gt;Stray pixels float in the hair of some anonymous crossdresser while Rush Limbaugh's  face beams in unrealistic proportion to the photo it's been superimposed on. You can appreciate the idea, but the skills are lacking. If you've ever thought it would be good fun to deface celebrity photos with at least a moderately convincing outcome, you've come to the right place. Here I outline some tools in Photoshop that will get you going in the right direction.&lt;/p&gt;

&lt;p&gt;Enjoy, and happy Photoshopping!&lt;/p&gt;</synopsis>
    <title>How to Deface Celebrity Photos the Right Way: A How To</title>
    <updated-at type="datetime">2009-03-21T01:41:33Z</updated-at>
    <user-id type="integer">383</user-id>
  </article>
</articles>
