<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>we are pixel8, inc.</title>
	<atom:link href="http://www.wearepixel8.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.wearepixel8.com</link>
	<description>Graphic Design Studio &#38; Marketing Agency</description>
	<lastBuildDate>Thu, 02 Sep 2010 19:06:38 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0.1</generator>
		<item>
		<title>Change Opacity of Images on Hover using jQuery</title>
		<link>http://www.wearepixel8.com/blog/change-opacity-hover-jquery/</link>
		<comments>http://www.wearepixel8.com/blog/change-opacity-hover-jquery/#comments</comments>
		<pubDate>Wed, 04 Aug 2010 23:59:31 +0000</pubDate>
		<dc:creator>Erik Ford</dc:creator>
				<category><![CDATA[Blog]]></category>
		<category><![CDATA[Tips & Tutorials]]></category>
		<category><![CDATA[Javascripts]]></category>
		<category><![CDATA[jQuery]]></category>
		<category><![CDATA[Web Development]]></category>
		<category><![CDATA[Website Portfolio]]></category>

		<guid isPermaLink="false">http://www.wearepixel8.com/?p=1704</guid>
		<description><![CDATA[Using jQuery in this tutorial, you will learn how to change the opacity of the remaining images, in an unordered list, when the user is hovering over a single image.]]></description>
			<content:encoded><![CDATA[<p>Not long ago, I wrote a <a title="Create a Filterable Portfolio Page in WordPress with jQuery" href="http://www.wearepixel8.com/blog/filterable-portfolio/">post</a> about how you can create a filterable portfolio, in WordPress, using a <code>jQuery</code> plug in. And, since I love the ability to create subtle nuances for the user, I decided to extend this tutorial and show you how to include a hover effect animation for your thumbnails.</p>
<h2>The Goal</h2>
<p>What I want to achieve is actually quite simple and I am sure you have seen the effect before. When a user hovers over a thumbnail in the portfolio, I want the opacity value of the remaining images reduced to a percentage of my choosing while leaving the hovered image opacity at 100%. I first set out to conquer this subtle animation using CSS only but, with poor cross browser support for <code>opacity</code>, I only ended up with really bad hacks and workarounds.</p>
<p><img src="http://www.wearepixel8.com/wp-content/uploads/2010/08/jqueryhover.jpg" alt="Screenshot of jQuery Hover Animation" title="Screenshot of jQuery Hover Animation" width="540" height="351" class="aligncenter size-full wp-image-1737" /></p>
<p>Once the CSS experiment proved to be a failure, I knew that jQuery would be perfect for the task. And, how right I was. The code ended up being minimal (less than 10 lines) and I could retain my clean and lean markup.</p>
<p><a class="viewdemo" title="View the Demo" href="http://www.wearepixel8.com/demos/portfolio-animation/">View Demo</a></p>
<h2>Step 1: Get the latest version of jQuery</h2>
<p>The first thing you want to always do is make sure you are running the latest version of <code>jQuery</code> on your site (version 1.4.2 as of the publication). You can do this by either <a href="http://docs.jquery.com/Downloading_jQuery" title="Download jQuery">downloading</a> the most recent version and uploading the file to your server or by hotlinking to the latest version directly from a CDN (Content Delivery Network) like Google Ajax API. I prefer the latter. Simply add the following code between the opening and closing <code>&lt;head&gt;</code> tags of your document.</p>

<div class="wp_syntax"><div class="code"><pre class="html4strict" style="font-family:monospace;"><span style="color: #009900;">&lt;<span style="color: #000000; font-weight: bold;">script</span> <span style="color: #000066;">type</span><span style="color: #66cc66;">=</span><span style="color: #ff0000;">&quot;text/javascript&quot;</span> <span style="color: #000066;">src</span><span style="color: #66cc66;">=</span><span style="color: #ff0000;">&quot;http://ajax.googleapis.com/ajax/libs/jquery/1.4.2/jquery.min.js?ver=1.4.2&quot;</span>&gt;&lt;<span style="color: #66cc66;">/</span><span style="color: #000000; font-weight: bold;">script</span>&gt;</span></pre></div></div>

<h2>Step 2: Write the HTML Markup and CSS Styles</h2>
<p>There is no need for me to spend much time designing and coding a complicated layout for this demo. Suffice to say, your portfolio list should semantically be wrapped in an unordered list. The design and presentation of your portfolio is left up to your imagination. For demo purposes, I have written the following HTML code:</p>

<div class="wp_syntax"><div class="code"><pre class="html4strict" style="font-family:monospace;"><span style="color: #009900;">&lt;<span style="color: #000000; font-weight: bold;">ul</span> <span style="color: #000066;">id</span><span style="color: #66cc66;">=</span><span style="color: #ff0000;">&quot;portfolio-list&quot;</span> <span style="color: #000066;">class</span><span style="color: #66cc66;">=</span><span style="color: #ff0000;">&quot;clear&quot;</span>&gt;</span>
	<span style="color: #009900;">&lt;<span style="color: #000000; font-weight: bold;">li</span>&gt;&lt;<span style="color: #000000; font-weight: bold;">a</span> <span style="color: #000066;">href</span><span style="color: #66cc66;">=</span><span style="color: #ff0000;">&quot;#&quot;</span> <span style="color: #000066;">title</span><span style="color: #66cc66;">=</span><span style="color: #ff0000;">&quot;Koopon Website Design&quot;</span>&gt;&lt;<span style="color: #000000; font-weight: bold;">img</span> <span style="color: #000066;">src</span><span style="color: #66cc66;">=</span><span style="color: #ff0000;">&quot;images/koopon.jpg&quot;</span> <span style="color: #000066;">alt</span><span style="color: #66cc66;">=</span><span style="color: #ff0000;">&quot;Koopon Website&quot;</span> <span style="color: #000066;">width</span><span style="color: #66cc66;">=</span><span style="color: #ff0000;">&quot;210&quot;</span> <span style="color: #000066;">height</span><span style="color: #66cc66;">=</span><span style="color: #ff0000;">&quot;140&quot;</span> <span style="color: #66cc66;">/</span>&gt;&lt;<span style="color: #66cc66;">/</span><span style="color: #000000; font-weight: bold;">a</span>&gt;&lt;<span style="color: #66cc66;">/</span><span style="color: #000000; font-weight: bold;">li</span>&gt;</span>
	<span style="color: #009900;">&lt;<span style="color: #000000; font-weight: bold;">li</span>&gt;&lt;<span style="color: #000000; font-weight: bold;">a</span> <span style="color: #000066;">href</span><span style="color: #66cc66;">=</span><span style="color: #ff0000;">&quot;#&quot;</span> <span style="color: #000066;">title</span><span style="color: #66cc66;">=</span><span style="color: #ff0000;">&quot;Patriot Pride Corp Logo Design&quot;</span>&gt;&lt;<span style="color: #000000; font-weight: bold;">img</span> <span style="color: #000066;">src</span><span style="color: #66cc66;">=</span><span style="color: #ff0000;">&quot;images/ppcorp.jpg&quot;</span> <span style="color: #000066;">alt</span><span style="color: #66cc66;">=</span><span style="color: #ff0000;">&quot;Patriot Pride Corp Logo&quot;</span> <span style="color: #000066;">width</span><span style="color: #66cc66;">=</span><span style="color: #ff0000;">&quot;210&quot;</span> <span style="color: #000066;">height</span><span style="color: #66cc66;">=</span><span style="color: #ff0000;">&quot;140&quot;</span> <span style="color: #66cc66;">/</span>&gt;&lt;<span style="color: #66cc66;">/</span><span style="color: #000000; font-weight: bold;">a</span>&gt;&lt;<span style="color: #66cc66;">/</span><span style="color: #000000; font-weight: bold;">li</span>&gt;</span>
	<span style="color: #009900;">&lt;<span style="color: #000000; font-weight: bold;">li</span>&gt;&lt;<span style="color: #000000; font-weight: bold;">a</span> <span style="color: #000066;">href</span><span style="color: #66cc66;">=</span><span style="color: #ff0000;">&quot;#&quot;</span> <span style="color: #000066;">title</span><span style="color: #66cc66;">=</span><span style="color: #ff0000;">&quot;Mazaif Packagin Design&quot;</span>&gt;&lt;<span style="color: #000000; font-weight: bold;">img</span> <span style="color: #000066;">src</span><span style="color: #66cc66;">=</span><span style="color: #ff0000;">&quot;images/mazaif.jpg&quot;</span> <span style="color: #000066;">alt</span><span style="color: #66cc66;">=</span><span style="color: #ff0000;">&quot;Mazaif Packaging&quot;</span> <span style="color: #000066;">width</span><span style="color: #66cc66;">=</span><span style="color: #ff0000;">&quot;210&quot;</span> <span style="color: #000066;">height</span><span style="color: #66cc66;">=</span><span style="color: #ff0000;">&quot;140&quot;</span> <span style="color: #66cc66;">/</span>&gt;&lt;<span style="color: #66cc66;">/</span><span style="color: #000000; font-weight: bold;">a</span>&gt;&lt;<span style="color: #66cc66;">/</span><span style="color: #000000; font-weight: bold;">li</span>&gt;</span>
	<span style="color: #009900;">&lt;<span style="color: #000000; font-weight: bold;">li</span>&gt;&lt;<span style="color: #000000; font-weight: bold;">a</span> <span style="color: #000066;">href</span><span style="color: #66cc66;">=</span><span style="color: #ff0000;">&quot;#&quot;</span> <span style="color: #000066;">title</span><span style="color: #66cc66;">=</span><span style="color: #ff0000;">&quot;Women Working Logo Design&quot;</span>&gt;&lt;<span style="color: #000000; font-weight: bold;">img</span> <span style="color: #000066;">src</span><span style="color: #66cc66;">=</span><span style="color: #ff0000;">&quot;images/womenworking.jpg&quot;</span> <span style="color: #000066;">alt</span><span style="color: #66cc66;">=</span><span style="color: #ff0000;">&quot;Women Working Logo&quot;</span> <span style="color: #000066;">width</span><span style="color: #66cc66;">=</span><span style="color: #ff0000;">&quot;210&quot;</span> <span style="color: #000066;">height</span><span style="color: #66cc66;">=</span><span style="color: #ff0000;">&quot;140&quot;</span> <span style="color: #66cc66;">/</span>&gt;&lt;<span style="color: #66cc66;">/</span><span style="color: #000000; font-weight: bold;">a</span>&gt;&lt;<span style="color: #66cc66;">/</span><span style="color: #000000; font-weight: bold;">li</span>&gt;</span>
<span style="color: #009900;">&lt;<span style="color: #66cc66;">/</span><span style="color: #000000; font-weight: bold;">ul</span>&gt;</span></pre></div></div>

<p>There is nothing overly special here. The <code>&lt;ul&gt;</code> gets an id name of &#8220;portfolio-list&#8221; and a class name of &#8220;clear&#8221;, which will clear the float at the end of the unordered list. Everything else is pretty straightforward. I will then add the following styles:</p>

<div class="wp_syntax"><div class="code"><pre class="css" style="font-family:monospace;"><span style="color: #6666ff;">.clear</span> <span style="color: #00AA00;">&#123;</span> <span style="color: #000000; font-weight: bold;">display</span><span style="color: #00AA00;">:</span> inline-<span style="color: #993333;">block</span><span style="color: #00AA00;">;</span> <span style="color: #00AA00;">&#125;</span>
<span style="color: #6666ff;">.clear</span><span style="color: #3333ff;">:after </span><span style="color: #00AA00;">&#123;</span> <span style="color: #000000; font-weight: bold;">display</span><span style="color: #00AA00;">:</span> <span style="color: #993333;">block</span><span style="color: #00AA00;">;</span> <span style="color: #000000; font-weight: bold;">visibility</span><span style="color: #00AA00;">:</span> <span style="color: #993333;">hidden</span><span style="color: #00AA00;">;</span> <span style="color: #000000; font-weight: bold;">clear</span><span style="color: #00AA00;">:</span> <span style="color: #993333;">both</span><span style="color: #00AA00;">;</span> <span style="color: #000000; font-weight: bold;">height</span><span style="color: #00AA00;">:</span> <span style="color: #cc66cc;">0</span><span style="color: #00AA00;">;</span> <span style="color: #000000; font-weight: bold;">content</span><span style="color: #00AA00;">:</span> <span style="color: #ff0000;">&quot;.&quot;</span><span style="color: #00AA00;">;</span> <span style="color: #00AA00;">&#125;</span>
<span style="color: #cc00cc;">#portfolio-list</span> li <span style="color: #00AA00;">&#123;</span> <span style="color: #000000; font-weight: bold;">float</span><span style="color: #00AA00;">:</span> <span style="color: #000000; font-weight: bold;">left</span><span style="color: #00AA00;">;</span> <span style="color: #000000; font-weight: bold;">margin</span><span style="color: #00AA00;">:</span> <span style="color: #cc66cc;">0</span> <span style="color: #933;">10px</span><span style="color: #00AA00;">;</span> <span style="color: #00AA00;">&#125;</span>
<span style="color: #cc00cc;">#portfolio-list</span> li a<span style="color: #00AA00;">,</span> <span style="color: #cc00cc;">#portfolio-list</span> li a<span style="color: #3333ff;">:visited </span><span style="color: #00AA00;">&#123;</span> <span style="color: #000000; font-weight: bold;">display</span><span style="color: #00AA00;">:</span> <span style="color: #993333;">block</span><span style="color: #00AA00;">;</span> <span style="color: #000000; font-weight: bold;">border</span><span style="color: #00AA00;">:</span> <span style="color: #933;">5px</span> <span style="color: #993333;">solid</span> <span style="color: #cc00cc;">#4f8603</span><span style="color: #00AA00;">;</span> <span style="color: #000000; font-weight: bold;">width</span><span style="color: #00AA00;">:</span> <span style="color: #933;">210px</span><span style="color: #00AA00;">;</span> <span style="color: #000000; font-weight: bold;">height</span><span style="color: #00AA00;">:</span> <span style="color: #933;">140px</span><span style="color: #00AA00;">;</span> <span style="color: #00AA00;">&#125;</span>
<span style="color: #cc00cc;">#portfolio-list</span> li a<span style="color: #3333ff;">:hover</span><span style="color: #00AA00;">,</span> <span style="color: #cc00cc;">#portfolio-list</span> li a<span style="color: #3333ff;">:active </span><span style="color: #00AA00;">&#123;</span> <span style="color: #000000; font-weight: bold;">border-color</span><span style="color: #00AA00;">:</span> <span style="color: #cc00cc;">#315301</span><span style="color: #00AA00;">;</span> <span style="color: #00AA00;">&#125;</span></pre></div></div>

<p>All I have done here is <code>float</code> the list items to the left and given them a <code>margin</code> of 10px on the left and right sides. All of the list item links will have a 5px <code>border</code> of green that will change to a darker hue on <code>hover</code>. Lastly, you will notice my little &#8220;clearing fix&#8221;, which is most definitely a hack, but it works and I never leave home without it.</p>
<h2>Step 3: Write the jQuery to animate the portfolio</h2>
<p>The amazing part of this entire journey is that it will only take 8 lines of code to accomplish our goal by using the new <code>jQuery.delegate()</code> method. Add the following code to your javascript file and I will explain what is happening afterwords:</p>

<div class="wp_syntax"><div class="code"><pre class="javascript" style="font-family:monospace;">jQuery<span style="color: #009900;">&#40;</span><span style="color: #3366CC;">&quot;#portfolio-list&quot;</span><span style="color: #009900;">&#41;</span>.<span style="color: #660066;">delegate</span><span style="color: #009900;">&#40;</span><span style="color: #3366CC;">&quot;li&quot;</span><span style="color: #339933;">,</span> <span style="color: #3366CC;">&quot;mouseover mouseout&quot;</span><span style="color: #339933;">,</span> <span style="color: #003366; font-weight: bold;">function</span><span style="color: #009900;">&#40;</span>e<span style="color: #009900;">&#41;</span> <span style="color: #009900;">&#123;</span>
	<span style="color: #000066; font-weight: bold;">if</span> <span style="color: #009900;">&#40;</span>e.<span style="color: #660066;">type</span> <span style="color: #339933;">==</span> <span style="color: #3366CC;">'mouseover'</span><span style="color: #009900;">&#41;</span> <span style="color: #009900;">&#123;</span>
	jQuery<span style="color: #009900;">&#40;</span><span style="color: #3366CC;">&quot;#portfolio-list li&quot;</span><span style="color: #009900;">&#41;</span>.<span style="color: #660066;">not</span><span style="color: #009900;">&#40;</span><span style="color: #000066; font-weight: bold;">this</span><span style="color: #009900;">&#41;</span>.<span style="color: #660066;">dequeue</span><span style="color: #009900;">&#40;</span><span style="color: #009900;">&#41;</span>.<span style="color: #660066;">animate</span><span style="color: #009900;">&#40;</span><span style="color: #009900;">&#123;</span>opacity<span style="color: #339933;">:</span> <span style="color: #3366CC;">&quot;0.3&quot;</span><span style="color: #009900;">&#125;</span><span style="color: #339933;">,</span> <span style="color: #CC0000;">300</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
    <span style="color: #009900;">&#125;</span> <span style="color: #000066; font-weight: bold;">else</span> <span style="color: #009900;">&#123;</span>
	jQuery<span style="color: #009900;">&#40;</span><span style="color: #3366CC;">&quot;#portfolio-list li&quot;</span><span style="color: #009900;">&#41;</span>.<span style="color: #660066;">not</span><span style="color: #009900;">&#40;</span><span style="color: #000066; font-weight: bold;">this</span><span style="color: #009900;">&#41;</span>.<span style="color: #660066;">dequeue</span><span style="color: #009900;">&#40;</span><span style="color: #009900;">&#41;</span>.<span style="color: #660066;">animate</span><span style="color: #009900;">&#40;</span><span style="color: #009900;">&#123;</span>opacity<span style="color: #339933;">:</span> <span style="color: #3366CC;">&quot;1&quot;</span><span style="color: #009900;">&#125;</span><span style="color: #339933;">,</span> <span style="color: #CC0000;">300</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
   	<span style="color: #009900;">&#125;</span>
<span style="color: #009900;">&#125;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span></pre></div></div>

<p>As you can see, we are targeting all of the <code>&lt;li&gt;</code> tags inside of <code>#portfolio-list</code> and attaching the &#8220;mouseover&#8221; and &#8220;mouseout&#8221; events using <code>jQuery.delegate()</code>. Now, if the user hovers over a list item, animate all of the of the other items by reducing their opacity to 30% over 300 milliseconds. The else statement returns the opacity back to 100%.</p>
<p>Normally, I would use <code>.stop()</code>, which would literally stop firing the animation if the user quickly hovered over another image causing all of the images to flicker. But <a href="http://www.philsalesses.com" title="Visit Phil Salesses' Website">Phil Salesses</a> discovered some unwanted behavior when using my snippet in conjunction with the filtering plug in and discovered that <code>.dequeue()</code> would also halt the animation without interfering with the plug in.</p>
<h2>Conclusion</h2>
<p>There you have it. A very simple way to add a little interactivity to your portfolio with minimal amount of code. Be sure to check out the <a href="http://www.wearepixel8.com/demos/portfolio-animation/" title="View Demo">demo</a> to see the script in action. Also, if anyone has a better script for this type of animation, please share in the comments.</p>
<p><a class="viewdemo" title="View the Demo" href="http://www.wearepixel8.com/demos/portfolio-animation/">View Demo</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.wearepixel8.com/blog/change-opacity-hover-jquery/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
		<item>
		<title>Behind the Design &amp; Development of the Six11Ink Website</title>
		<link>http://www.wearepixel8.com/blog/news/six11ink-website-creation/</link>
		<comments>http://www.wearepixel8.com/blog/news/six11ink-website-creation/#comments</comments>
		<pubDate>Thu, 27 May 2010 00:43:38 +0000</pubDate>
		<dc:creator>Erik Ford</dc:creator>
				<category><![CDATA[Blog]]></category>
		<category><![CDATA[News]]></category>
		<category><![CDATA[pixel8 Project]]></category>
		<category><![CDATA[pixel8 Related]]></category>

		<guid isPermaLink="false">http://www.wearepixel8.com/?p=1659</guid>
		<description><![CDATA[We have proudly launched a website for one of our strategic partners, Six11Ink. I thought it might be fun to share some of the inspiration that went behind the design.]]></description>
			<content:encoded><![CDATA[<p>Yesterday, <em>we are pixel8</em> were happy to launch a website for one of our strategic partners, <a title="Launch the Six11Ink website" href="http://www.six11ink.com">Six11Ink</a>. Now that the site is live and in the wild, I thought it would be interesting, if not cathartic, to share some of the design inspiration and processes that went into this project. I hope you enjoy this post as I will try to write at least one about each of the projects we work on.</p>
<h2>The design mantra? Retro &amp; Vintage.</h2>
<p>Having already designed the logo for the client, I had a clear understanding of what I visually wanted to achieve with the website. The keywords I was working with were retro, clean and vintage. Since the client’s services center around copy writing and content strategies, it really didn’t make sense to design an image heavy website that would distract from the content.</p>
<p style="text-align: center;"><a title="Launch Six11Ink website" href="http://www.six11ink.com"><img class="aligncenter size-full wp-image-1686" title="Six11Ink Home Page Screenshot" src="http://www.wearepixel8.com/wp-content/uploads/2010/05/six11ink-screenshot.jpg" alt="Six11Ink Home Page Screenshot" width="540" height="540" /></a></p>
<p>Obviously retro and vintage is something that is quite trendy these days and I didn&#8217;t want to over do it. The site needed to remain tasteful and speak in the owner&#8217;s voice and not my own. And, though I steered the direction the site would eventually take, each and every part of the site defines and personality trait of the owner, down to the raven as <code>favicon</code>.</p>
<h3>My sources of Inspiration</h3>
<p>During a particular conversation with the client, I started talking about the usage of hand drawn graphic ornaments that were prevalent in printed materials during the 19th and early 20th century. I wanted to experiment with some of these elements and bring them into the site somehow. The graphics, which would be kept to a minimum, would compliment the paper texture (mimicking the paper stock that was used during this time period) created for the tiling background.</p>
<p>I found endless inspiration in old text books, encyclopedias and first edition novels printed between 1800 and 1920. I started to collect all of these images and made a “mood board” that would assist me during sketching and mocking up. I loved the hand drawn etchings, the use of typography to create contrasts between type and the beautiful ornaments to dress it all up.</p>
<h4>Hand drawn etchings</h4>
<p>The hand drawn etchings I found in first edition novels were key points of inspiration that would lead me to the scans used as icons to differentiate each page.</p>
<p><img class="aligncenter size-full wp-image-1661" title="First edition book printing as source of visual inspiration" src="http://www.wearepixel8.com/wp-content/uploads/2010/05/publicationinspiration.jpg" alt="First edition book printing as source of visual inspiration" width="540" height="422" /></p>
<h4>Inspiration from vintage textbooks</h4>
<p>I liked the idea of not only using these etchings, but putting them into context on the site. This would afford me the chance to have some fun with <code>jQuery</code> during development.</p>
<p><img class="aligncenter size-full wp-image-1666" title="Visual inspiration from vintage biology textbooks" src="http://www.wearepixel8.com/wp-content/uploads/2010/05/textbookinspiration.jpg" alt="Visual inspiration from vintage biology textbooks" width="540" height="387" /></p>
<h4>Graphic Ornaments &amp; Typographical Variations</h4>
<p>The use of graphic ornaments during this period were commonplace and generally used as dividers between text elements on a page or simply as ornaments in the header/footer area of a page. Also characteristic of this era in print was how typography was used to separate different areas of a page and create a hierarchy of information. This was sometimes achieved with the use of all capital letters, increasing the spacing between characters evenly with tracking or a combination of the two. I replicated the effect using the <code>text-transform</code> declaration and changing the <code>letter-spacing</code> in the <code>CSS</code>.</p>
<p><img class="aligncenter size-full wp-image-1669" title="The use of graphic ornaments as inspiration" src="http://www.wearepixel8.com/wp-content/uploads/2010/05/ornamentinpiration.jpg" alt="The use of graphic ornaments as inspiration" width="540" height="527" /></p>
<h4>Inspiration from those who came before me</h4>
<p>I am definitely not the first to “have at it” with this style of design. There are a slew of talented designers who have been drawn to these elements and have incorporated a variation, if not all, of these components in their own website designs in the past. In my travels for research and inspiration I also found these to be influential and my hat is tipped to all of these designers.</p>
<p style="text-align: center;"><a class="grande" href="http://www.wearepixel8.com/wp-content/uploads/2010/05/onlineinspiration.jpg"><img class="aligncenter size-full wp-image-1677" title="Retro Website Design Inspiration" src="http://www.wearepixel8.com/wp-content/uploads/2010/05/onlineinspiration-thumb.jpg" alt="Retro Website Design Inspiration" width="540" height="338" /></a></p>
<ol>
<li><a title="Simon Collison" href="http://colly.com/">Simon Collison</a></li>
<li><a title="The New York Moon" href="http://radio.nymoon.com/">The New York Moon</a></li>
<li><a title="The Dollar Dreadful Family Library" href="http://dollardreadful.com/">The Dollar Dreadful Family Library</a></li>
<li><a title="The Blizzards" href="http://theblizzards.ie/">The Blizzards</a></li>
<li><a title="Bearskinrug" href="http://www.bearskinrug.co.uk/">Bearskinrug</a></li>
<li><a title="The Ernest Hemingway Collection" href="http://www.ernesthemingwaycollection.com/">The Ernest Hemingway Collection</a></li>
</ol>
<h2>Development</h2>
<p>The Six11Ink website is more of a brochure site than a portfolio of services.</p>
<h3>Having fun with @font-face</h3>
<p>I have been looking for a chance to use the <code>@font-face</code> declaration for some time now. The fact that it is a cross browser solution for adding rich typography to a web design has always piqued my interest. The impediment, for me, has always been the limited amount of typefaces that are freely available to use with the declaration and I never wanted to use the technique to show how “cool” I am (which I definitely am not). I needed a beautiful font and the implementation needed to make sense for the overall design.</p>
<p><img class="aligncenter size-full wp-image-1672" title="@font-face used for headings" src="http://www.wearepixel8.com/wp-content/uploads/2010/05/fontface.jpg" alt="@font-face used for headings" width="540" height="250" /></p>
<p>The Six11Ink website afforded me the opportunity to finally get my hands dirty with the technique. The mock ups contained the use of <a title="Download League Gothic from The League of Moveable Type" href="http://www.theleagueofmoveabletype.com/fonts/7-league-gothic">League Gothic</a>, made available by <a title="The League of Moveable Type" href="http://www.theleagueofmoveabletype.com/">The League of Moveable Type</a>, for the headers and page titles. This revival typeface was used in the logo and really played into the retro theme of the site. Plus, I wanted the visual contrast between a condensed, heavy sans-serif font for headlines and a serif font for body copy.</p>
<p>But, throughout the design process, I was wondering how I would preserve these elements once I moved into development. At first, I thought about using the image replacement technique. This would be excellent for a static website, but I couldn’t use this technique for blog posts where content is created dynamically. So, that solution was immediately abandoned with the exception of the home page heading.</p>
<p>Then, I was resigned to use either <a title="sIFR3" href="http://novemberborn.net/sifr3">sIFR</a> or <a title="Cufon" href="http://cufon.shoqolate.com/generate/">Cufon</a> as a solution. I have never worked with Cufon and wasn&#8217;t quite ready to have to learn how to on the fly. I’ve worked with sIFR before and it definitely doe the trick. But, what happens when the user is browsing with a browser that doesn’t support Flash or has <code>javascripts</code> disabled? All of my beautiful type will fall back to a browser safe font in the font stack. I definitely didn’t want that.</p>
<p>Then I wondered whether League Gothic, since it was a free download, would be available to use with the <code>@font-face</code> declaration? After a quick Google search I found that, not only is it available for use, but <a title="Font Squirrel" href="http://www.fontsquirrel.com/">Font Squirrel</a> even provides all of the necessary file types needed for the declaration to work in the major browsers!</p>
<p>Now that I have dipped my toe into the <code>@font-face</code> pool, I am addicted. It was not only very easy to put to use, but quite liberating. I honestly cannot wait for another project to use this declaration on in the future.</p>
<h2>A sprinkle of jQuery for personality</h2>
<p><img class="alignleft size-full wp-image-1682" title="jQuery Show &amp; Hide Tab" src="http://www.wearepixel8.com/wp-content/uploads/2010/05/jqueryfooter.jpg" alt="jQuery Show &amp; Hide Tab" width="269" height="210" />I will admit that the use of <code>jQuery</code> for the “Did you know?” tabs in the footer of each page was a bit grandiose on my part. I wanted to inject a little personality into the site and create a connection between the etchings and their usage and placement within the site itself. During my research, I found some interesting facts about the butterfly, quill, telephone and typewriter that I didn&#8217;t know about and thought it would be interesting to share with everyone else.</p>
<p>This wasn’t integral to the site itself, so I opted to turn this into a “show &amp; tell” element that would be hidden until the user chose to interact with the tab. I thought it would be entertaining but know that it is completely self serving in the end. I just hope others find it as charming as I did.</p>
<h2>Conclusion</h2>
<p>I have to thank the founder of Six11Ink, Jeanette Fernandez, for allowing me such freedoms in the design and development of her site. Her unwavering trust allowed me to experiment and play around with ideas and concepts that I would not normally with another client. Definitely give the site a spin and let me know what you think. I am proud of the outcome but am always interested in constructive criticism.</p>
<p><a class="livesite" title="Launch the Six11Ink website" href="http://www.six11ink.com">Launch Six11Ink</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.wearepixel8.com/blog/news/six11ink-website-creation/feed/</wfw:commentRss>
		<slash:comments>9</slash:comments>
		</item>
		<item>
		<title>Our Name is now “we are pixel8”</title>
		<link>http://www.wearepixel8.com/blog/news/we-are-pixel8/</link>
		<comments>http://www.wearepixel8.com/blog/news/we-are-pixel8/#comments</comments>
		<pubDate>Wed, 05 May 2010 20:44:39 +0000</pubDate>
		<dc:creator>Erik Ford</dc:creator>
				<category><![CDATA[Blog]]></category>
		<category><![CDATA[News]]></category>
		<category><![CDATA[Branding]]></category>
		<category><![CDATA[Logo Design]]></category>
		<category><![CDATA[pixel8 Related]]></category>

		<guid isPermaLink="false">http://www.wearepixel8.com/?p=1614</guid>
		<description><![CDATA[We are happy to announce that, as of February 2010, we have officially incorporated the name of the agency as we are pixel8, inc.]]></description>
			<content:encoded><![CDATA[<p>We are happy to announce that, as of February 2010, we have officially incorporated the name of the agency as <em>we are pixel8, inc.</em> It was always our goal to incorporate the agency but there were several self inflicted hurdles to cross beforehand that only I can take full responsibility for.</p>
<h2>Why did we call ourselves “pixel8” in the first place?</h2>
<p>In the Spring of 2009, when David and I began talking about this endeavor, one of the obvious topics was the name of the agency. We felt strongly about having a one word handle and  batted around a few ideas and concepts. But we kept gravitating towards “pixel8” as a name. The moniker succinctly affirmed that we are a creative agency and was perfectly playful by replacing the last syllable with the numeral “8”.</p>
<blockquote class="pullquoteleft left">I can be incredibly stubborn when it comes to something I really like.</blockquote>
<p>But, we weren&#8217;t the only ones with this ingenious idea. In fact, after a quick Google search, we came across a few entities using this label, both actively and inactively, and we were initially deflated. Does this mean we have to look at our other options? That didn&#8217;t feel right. I think I was even having an internal, childlike tantrum about the whole thing. I wanted what I wanted and, if you know me, I can be incredibly stubborn when it comes to something I really like. And I loved “pixel8” and was not readily prepared to let it go.</p>
<p>So, we forged forward and registered the domain, wearepixel8.com not knowing that it was going to play a role in naming the company. And, though I was insisting to everyone who would listen that our name was “pixel8”, I went as far as creating an animation for the logo on the site that said “we are pixel8”. And today, if you ask me why, I will not have a good answer for you other than I thought it was a cool idea, which is never a reason to do anything when it comes to branding!</p>
<p>Between the domain name and the animation, people automatically assumed our name was “we are pixel8”. And I couldn&#8217;t blame them. This was all my fault and was a direct result from me being both pig headed and not sending a consistent message through our branding.</p>
<h2>Time to make a decision</h2>
<p>If you have ever incorporated a company, a process that is both joyless and rewarding, you know that you must do a name search to make sure that you are not choosing something that is in use within your field of operation. Enter hurdle number one. We already knew that the name was in use, but had no idea whether the person(s) using it ever registered the company name. We could spend an unknown amount of time finding out, thus further delaying the process, or we could simply pick a new name. I was back that stubborn place again, but this time slightly more malleable in the process. So, after several discussions with our accountant and attorney, we made the decision to register ourselves as “we are pixel8, inc.” to avoid any further complications or confusion.</p>
<blockquote class="pullquote right">… we are pixel8 just felt right immediately</blockquote>
<p>And, I have to tell you, <em>we are pixel8</em> just felt right immediately. The name is positive, playful, forceful and slightly narcissistic and I liked that. More than that, it wouldn&#8217;t require us finding a new domain name, which I definitely did not want to do. I have to tell you that this is the ass-backwards way of choosing a name for a company that just happened to work in our favor.</p>
<h2>Our proper new name needed a proper new logo.</h2>
<p>We knew that the name change would require a new direction in our brand positioning. Though we loved our original logo mark, it no longer fit the name of the company and therefore would not function well as the brand identifier for the agency. Of course, this meant it was time to head back to the drawing board, deconstruct the original art and create a new logo that would better reflect, for lack of a better phrase, who we are.</p>
<p>We tasked ourselves with looking at the original mark with “fresh eyes” to discern what elements we felt were strong and, therefore, wanted to retain, and what elements fell short of the message we wanted to convey.</p>
<h3>The anatomy of our first logo.</h3>
<p>Our prototype logo was modern in feel (something we wanted to keep), complete with custom typography that created a nice linear shape. Since, at the time of its creation, our name was simply pixel8, there was no need for the additional verbiage of “we are” in the mark. But, as I mentioned before, we did incorporate the “we are” in the website logo with a talk balloon. But, again, this added to the inconsistency of what our name was and continued to confuse the user.</p>
<p>The “x” letter form loosely took the shape of a person when we placed a pixel shape on top of it. As for color treatment, we chose to use only two colors to exemplify our classic, uncomplicated approach to design.</p>
<p><img class="aligncenter size-full wp-image-1622" title="we are pixle8 Logo - Version 1" src="http://www.wearepixel8.com/wp-content/uploads/2010/05/wap8-logo-v1.jpg" alt="we are pixle8 Logo - Version 1" width="540" height="280" /></p>
<p>After examining the mark, we decided to keep the following:</p>
<ol>
<li>The modern, custom letter forms as they felt strong and commanding</li>
<li>The custom “x” with the pixel character as a brand identifier</li>
<li>Keep the logo color palette at two colors</li>
</ol>
<p>So, basically, we were keeping everything and figuring out a way to incorporate the additional verbiage.</p>
<h3>Version 2 is close but not a winner.</h3>
<p>We now knew the direction we wanted to take and I started creating sketches for a new logo. I came across a version that I liked and further developed out in Illustrator. David and I felt strongly that the “talk balloon” from the original website logo could work as our official logo so I wanted to play with that concept.</p>
<p>The letter forms stayed the same with the exception of a new “p” and a revised “8”. We also didn’t make any changes to the color palette but chose to only apply the Cyan to the pixel shapes above the “x” and as a stem for the “p” as well as the talk balloon.</p>
<p><img class="aligncenter size-full wp-image-1624" title="we are pixel8 Logo - Version 2" src="http://www.wearepixel8.com/wp-content/uploads/2010/05/wap8-logo-v2.jpg" alt="we are pixel8 Logo - Version 2" width="540" height="280" /></p>
<p>After spending some time with this iteration, we came away with the following thoughts:</p>
<ol>
<li>The pixel on the stem of the “p” would get lost when the logo was reduced in size and therefore would become difficult to read. That doesn’t help with clearly defining our name.</li>
<li>The linear shape of the first logo was starting to look very “box” like, constraining, cold and impersonal in this version. Though it is definitely modern, it felt like it was spit out by a computer program and I did not want that.</li>
<li>Though the talk balloon worked on the website, it doesn’t work her as a logo. To me, it read “pixel8 we are” as opposed to “we are pixel8”. I moved this element around to several locations, but nothing worked and it was time to file this version under unusable.</li>
</ol>
<h3>With version 3, I was going in the wrong direction.</h3>
<p>I thought that the problem was that the original letter forms needed to be reworked into less pixel like shapes. I redesigned all of the characters including the “x” to allow for better incorporation of the additional “we are” verbiage, using Helvetica Neue as the typeface. This would definitely give a nice contrast to the entire piece.</p>
<p>I also decided to be adventurous and opened up the color palette to include four new colors (Blue, Green, Yellow and Magenta). These shades felt more inviting than the previous Gray and Cyan.</p>
<p><img class="aligncenter size-full wp-image-1626" title="we are pixel8 Logo - Version 3" src="http://www.wearepixel8.com/wp-content/uploads/2010/05/wap8-logo-v3.jpg" alt="we are pixel8 Logo - Version 3" width="540" height="280" /></p>
<p>After stepping away from this iteration, I knew immediately that this was not the right version. It absolutely hated it and I felt frustrated.</p>
<ol>
<li>The new letter forms became even more box-like than the previous and no longer worked for what I was trying to achieve.</li>
<li>I needed to drop the “incorporated” from the logo as it was superfluous</li>
<li>The one aspect I liked was adding bright colors to the mark and dividing the pixel icon into four separate pixels. This felt like it should definitely be a part of the design as well as the “x” character</li>
</ol>
<p>I think the stubborn part of my personality did not want to let go of the custom letters I spent so much time creating. But, they just did not work. The logo was becoming more and more distant and I was nowhere near the message I was trying to put across.</p>
<h3>The fourth time was the charm</h3>
<p>So, I went back to the beginning. I tossed everything but the “x” mark and started sketching new concepts. This time, I would tackle the mark first because it was the only element I was feeling good about. As opposed to one pixel divided into four smaller pixels, I decided to create a 3-D pixel that would use only 3 colors (Ahh, back to simplicity. This was starting to feel really good.) But what to do about the letter forms?</p>
<p>As I was staring at print outs of the first 3 versions, my eyes kept coming back the the “we are” in version three. By far, one of my favorite typeface is Helvetica Neue. By itself, it is clean and modern with excellent x-height in the lowercase forms. And, I asked myself, why am I trying to reinvent the wheel? The letter forms for the name is staring you right in the face.</p>
<p>So, I launched Illustrator and starting playing with the kerning of the letters to give it the right amount of spacing. There was some slight customization of the stem of the “p” so that it would not extend beyond the baseline of the logo mark. I also changed the color and weight of the two words for contrast. The logo now read perfectly and there was no confusion about what our name was.</p>
<p><img class="aligncenter size-full wp-image-1627" title="we are pixel8 Logo - Version 4" src="http://www.wearepixel8.com/wp-content/uploads/2010/05/wap8-logo-v4.jpg" alt="we are pixel8 Logo - Version 4" width="540" height="280" /></p>
<ol>
<li>The letter forms were now set in Helvetica Neue with kerning between the letters, slight modification of the “p” character and set in varying weights for contrast</li>
<li>I kept the shape created in version 3 as this was the best of that version</li>
<li>The pixel icon now took on a 3-D look and feel and was reduced to the 3 strongest colors from version 3</li>
</ol>
<p>Though it took several drafts to get where we are, I had finally reached a version that I was completely happy with. The logo was still modern and linear, as in the first version, but no longer felt cold and box-like. Recognizing that I was not going to find the emotion I wanted with my custom letters also went a long way. Once I stop pursuing that concept, I found the right combination of letters to perfectly represent our name and leave no room for confusion.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.wearepixel8.com/blog/news/we-are-pixel8/feed/</wfw:commentRss>
		<slash:comments>10</slash:comments>
		</item>
		<item>
		<title>TV Commercials… Can you Hear me Now?</title>
		<link>http://www.wearepixel8.com/blog/tv-commercials-too-loud/</link>
		<comments>http://www.wearepixel8.com/blog/tv-commercials-too-loud/#comments</comments>
		<pubDate>Sat, 06 Mar 2010 08:40:41 +0000</pubDate>
		<dc:creator>David Belgrave</dc:creator>
				<category><![CDATA[Blog]]></category>
		<category><![CDATA[Marketing]]></category>
		<category><![CDATA[Marketing Practices]]></category>
		<category><![CDATA[Opinion]]></category>
		<category><![CDATA[TV Commercial]]></category>

		<guid isPermaLink="false">http://www.wearepixel8.com/?p=1385</guid>
		<description><![CDATA[What is going on with the volume of TV commercials? And no, I'm not asking why there are so many commercials on television, but why are they so damn loud?]]></description>
			<content:encoded><![CDATA[<p>What is going on with the volume of TV commercials?  And no, I&#8217;m not asking why there are so many commercials on television but <strong>why are they so damn loud</strong>????  I know I&#8217;m not the only one that notices this.  Many of you have been cozied up watching your favorite show and BOOM!! You are blasted off your couch by a deafening TV spot for ShamWow or some other product you probably don’t need.</p>
<p><img class="alignleft size-full wp-image-1405" title="ShamWow spokesperson" src="http://www.wearepixel8.com/wp-content/uploads/2010/03/shamwow-vince-punches-hooker.jpg" alt="ShamWow spokesperson" width="200" height="205" />I realize TV commercials have always been somewhat louder than programming but over the last few years it seems to have gotten worse&#8230; way worse, RIDICULOUSLY worse!  I must include this practice of spiking the volume of TV spots among the other forms of invasive marketing to which we are all constantly subjected.  There’s e-mail spam, pop-up ads, junk snail mail, marketing calls at home and on and on.</p>
<p>What is the thought process is behind this? Was there something wrong with the way we’ve been hearing commercials for the last 50 years? Is there any reason to think that even though we&#8217;ve been watching &amp; hearing our favorite program with no issues that we won&#8217;t be able to hear the commercials just as easily??</p>
<blockquote class="pullquote right">We are in the new millennium and there is a war going on for our  attention.</blockquote>
<p>Advertisers desperate to reach us must feel they need to come at us harder.  We are in the new millennium and there is a war going on for our attention. We used to be a captive audience.  We were easy to find. When I grew up all I had to watch, in New York, were channels 2, 4, 5, 7, 9, 11 &amp; 13.  There were a bunch of radio stations but, by the time you broke down the formats, you only had a few of each from which to choose. A few black music stations, a few rock stations, a few classical stations, a few all news stations, a few pop stations, etc.</p>
<p>Today there are endless places for our ears, eyes and minds to wander. We have hundreds of TV channels, countless satellite radio stations, video games, DVDs, books, blogs and websites. We not only have infinitely more choices, we also have almost total control of how and, most importantly, when we consume our media. We use TiVo, iPods, podcasts, Kindles, Netflix and HULU to exert our control.</p>
<p>I suppose the thinking is “let’s grab them… and sell to them… while we have them!”  The ironic thing about boosting the volume of commercials is that it doesn&#8217;t make me pay attention.  I get startled and aggravated.  I feel resentful and harassed.  It actually increases the chance that I won’t look at your commercial <strong>at all</strong>.  I’m sure to miss the first commercial of the break because I am scrambling for the remote to turn down the volume.</p>
<p>Two good friends of mine were recently blessed with a brand new baby daughter. We all know what a task it is to care of a newborn. After a hard day of work behind them, and a long night of tending to the often-crying baby ahead of them, they try to relax in front of the tube. They take special care to adjust the volume juuuuuust right. Low enough to not wake the baby, loud enough to be able to hear the TV without straining.  Then BOOM, here comes the commercial.  Wifey doesn’t see the commercial because she is running to hold the baby who is now crying.  Hubby doesn’t hear the commercial either because, like a starter pistol, the loud commercial sends him diving off the couch for the remote so he can turn down the sound.</p>
<p>By the time the household has re-settled they have missed ALL of the commercials and it is time for their program to resume. Baby or not, many people who have to dive for the remote simply turn down or mute the sound altogether until their program resumes.</p>
<p>When I go to bed I like to have the TV on.  Unless I&#8217;m dead tired, I can&#8217;t go to sleep in complete silence.  I need to have some level of sound. I use the channel guide in the cable box to program shows or movies that are good background white noise as I fade to black.  Like the happy couple I must have the volume juuuuuust right so the silence is broken but I can still go to sleep.  Unlike the happy couple, diving for the remote is not an option for me since I’m curled up in bed.  So what happens?  Not only do I not hear the commercials, I have decided not to select the offending channel at all.  Some nights I shut out the medium altogether and switch to the radio or, better yet, my iPod (no commercials)!!</p>
<p><img class="aligncenter size-full wp-image-1406" title="Mad Men on AMC" src="http://www.wearepixel8.com/wp-content/uploads/2010/03/madmen_poster.jpg" alt="Mad Men on AMC" width="525" height="420" /></p>
<p>By my experience, the hands-down worst offender is AMC.  In the ramp up to this year&#8217;s Oscars the channel is showing many of my favorite movies. So my cable box is often parked on AMC.  I was watching a Forrest Gump &amp; Philadelphia double feature the other night and it dawned on me that I was not putting the remote down on the coffee table.  I laid back on the couch with it resting on my chest because, at the start of each break, I would have to lower the volume and turn it up again when programming resumed.  It got so bad that I found myself poised like the Sundance Kid ready to quick draw the remote at the start of each commercial break.  Don’t take my word for it.  Check out AMC for yourself.  Bravo also gets dishonorable mention.</p>
<h2>I am not alone.</h2>
<p>To be honest, I didn’t realize how well documented this problem was until I surfed the web for some background to write this post.  I knew there was backlash in the privacy of people’s homes but I had no idea how much this issue is all over the web.  I found pages of articles and posts spanning the past few years.  Here are just a few.</p>
<ul>
<li><a title="Read “Television Commercials Are Too Loud declares Calif Politician”" href="http://http://news-briefs.ew.com/2009/06/14/television-commercials-are-too-loud-declares-california-politician/">“Television Commercials Are Too Loud declares Calif Politician”</a> — Entertainment Weekly</li>
<li><a title="Read “Why Are TV Commercials So Loud”" href="http://www.rd.com/living-healthy/why-are-tv-commercials-so-loud/article96931.html">“Why Are TV Commercials So Loud”</a> — Reader’s Digest</li>
<li><a title="Read “Are TV Ads Too Loud”" href="http://www.parade.com/news/intelligence-report/archive/090927-are-tv-ads-too-loud.html">“Are TV Ads Too Loud”</a> — Parade.com</li>
</ul>
<p>So they already KNOW this bugs the shit out of us?!?!… Which bugs the shit out of me all over again!!  I don’t know which ticks me off more, coming to my own boiling point with this issue or now realizing the full scope of the outcry that has been in the ether all this time. Isn&#8217;t it safe to assume that this backlash has been brought to the attention of the offending parties?</p>
<h2>Is this an issue worth legislating?</h2>
<p><img class="size-full wp-image-1400 alignright" title="US Representative Anna Eshoo" src="http://www.wearepixel8.com/wp-content/uploads/2010/03/rep_anna_g_eshoo.jpg" alt="US Representative Anna Eshoo" width="200" height="307" />Did you know that U.S. Rep. Anna Eshoo (D-Calif.) introduced the Commercial Advertisement Loudness Mitigation Act (the CALM Act) to Congress in 2008?   She’s now on my list of everyday-heroes!  The bill would require the FCC to &#8220;preclude commercials from being broadcast at louder volumes than the program material they accompany.&#8221;  The bill has passed in the House and went before the Senate on December 16, 2009.</p>
<p>The United Kingdom seems be on the right track with a few things.  I won&#8217;t EVEN get into the universal health care issue because this post is supposed to be about my marketing gripe.  Volume spiking has been made illegal across the pond.  The Broadcast Committee of Advertising Practice, the UK agency responsible for regulating the TV Advertising Code, decreed, “Advertisements must not be excessively noisy or strident.”  The code also says, “the maximum subjective loudness of advertisements must be consistent and in line with the maximum loudness of programmes and junction material.″</p>
<blockquote class="pullquoteleft left">I have a visceral reaction to getting bullied on my own couch.</blockquote>
<p>I’m happy the UK has outlawed the practice and that Representative Eshoo is fighting the good fight in Washington, but does it really have to come to that??  I must admit that I am particularly sensitive to being treated like this in my own living room.  Is nothing sacred?  At a time when so many of us are fodder for politicians, corporations, fast food chains, car companies and all types of entities that rely on us for their very existence but put our needs last on their list, I have a visceral reaction to getting bullied on my own couch.</p>
<p>The TV industry throws a technical smoke screen at us to explain the bullying practice.  I read quite a few articles saying that sound compression differences between programming and spots were responsible for the variance in “perceived” sound.  They cite the lack of uniformity amongst the varied production houses producing TV spots as the reason for the perceived sound variance.</p>
<p><img class="alignright size-full wp-image-1408" title="Real Housewives of New York" src="http://www.wearepixel8.com/wp-content/uploads/2010/03/RHNY.jpg" alt="Real Housewives of New York" width="200" height="296" />If this is the case, why are the promos for network related programming just as abusively loud as the TV spots from outside sources?? Many times the network promo is that first commercial of the break that blasts you off the couch. Why not just set a standard.  Outline some specs.  Wherever you make your commercials, if they don’t meet these specs they will not get on the air.</p>
<p>There are many different carmakers in America and around the world making all sorts of vehicles. But if they don’t meet the EPA standards, they will not be allowed to operate on the roads in this country.  Isn’t it that simple?  You mean we can make an atom smashing Super Collider to re-create the Big Bang but we don’t have the ability to apply a technical standard for Snuggie commercials??</p>
<h2>Technology to the rescue</h2>
<p>Here is the sick part.  Blasting us with commercials to get us to buy things we probably don’t want has bullied us into a new market of products to buy that will help us combat volume spiking in commercials. In other words we have to buy this new product we don’t want in order to insulate us from the loud commercials for the other products we didn’t want in the first place.  They get us either way!</p>
<p>There is SRS TruVolume technology that is designed to even out volume fluctuations. Fluctuations, yeah right!  I wish it were that subtle an experience!  SRS comes equipped in certain Samsung and Vizio televisions.  On Amazon.com the Vizio TVs with SRS TruVolume will cost you $1050 to $1200.</p>
<p>If that’s too rich for your blood you can purchase the MyVolume Volume Leveling Adaptor at the SRS store for a mere $100.  This box is supposed to attach and upgrade normal televisions so you can “stop the spikes” and “end the spikes” as it says on their website.   The HDMI version of the product won an Innovations Award at the Consumer Electronics Show.  To me that underscores the reality of volume spiking.  The problem is so pervasive that SRS got an award for coming up with technology that effectively deals with the abuse.</p>
<p><img class="aligncenter size-full wp-image-1403" title="SRS Lab MyVolume HDMI" src="http://www.wearepixel8.com/wp-content/uploads/2010/03/srslabshdmi.jpg" alt="SRS Lab MyVolume HDMI" width="525" height="394" /></p>
<p>According to The Gadgetress of The Orange County Register on her recent <a title="SRS Labs gadget to soften TV commercials now available" href="http://gadgetress.freedomblogging.com/2010/01/07/srs-labs-gadget-to-soften-tv-commercials-now-available/31801/">blog post</a>:</p>
<blockquote><p>SRS Labs’ TruVolume takes all audible signals, ignores the extreme lows and highs and focuses on the middle range volumes. Loud bursts in this middle range are typically TV commercials. Its technology can distinguish between talking levels of the announcer to the sudden crowd cheers in the game to the obnoxiously loud TV commercial.</p></blockquote>
<h2>Demo of SRS Labs Volume Leveler, TruVolume</h2>
<p><a href="http://www.wearepixel8.com/blog/tv-commercials-too-loud/"><em>Click here to view the embedded video.</em></a></p>
<div class="blognote"><em>By the way, I am now a fan of The Gadgetress!  I totally got sidetracked reading several of her stories and I now follow her on <a title="Follow The Gadgetress on Twitter" href="http://twitter.com/gadgetress">Twitter</a>. If you’re a gadget geek like me I suggest you do the same! Now back to our regularly scheduled tirade…</em></div>
<p>You know what’s funny?  I’ve never seen a TV commercial for the SRS Volume Regulator. This is the one product that SHOULD use volume spiking in its TV commercials.  In this case it would actually be good marketing.  Picture yourself late at night watching Terms of Endearment and all of a sudden… “ARE YOU TIRED OF LOUD TV COMMERCIALS THAT WAKE YOUR BABY OR SCARE YOUR PETS CAUSING EITHER TO HAVE MESSY ACCIDENTS IN YOUR HOME??”  Perfect, right?</p>
<p>There are cheaper TV Sound Regulator boxes for about $50 but these less expensive options apparently don’t work with TiVo and HD.  These are for people with older TV sets. You get what you pay for, except for these loud ass TV spots. Seems like you have to pay to NOT get those.</p>
<p>I confess that given the problem of volume spiking the SRS products do seem like the best passive defense.  Call me stubborn but I refuse to buy it on principle.  I will not buy an add-on for my TV that works just fine except for advertisers and networks trying to get in my face.  Can you imagine if 3D television was the normal broadcasting format?  The commercial for Exstenze would be loud AND probably have an all-naturally enhanced 3D penis extenze-ing at you from your TV screen.  Oye!   Besides, once we all get this box or souped up TV they will think of some other way to harass us in our living rooms. So let’s just move onto the next front in this battle without me plunking down $1200 for an SRS equipped TV or $100 for a Volume Leveler.</p>
<p>I’m going on offense!  I choose to continue the fight by exercising remote CONTROL.  I’m grabbing my TiVo remote in arms like William Wallace to fight for the sovereignty of my living room sofa!!  Rest in peace Billy Mays but your ghost will not force me to submit.  They are going to have to pry the remote from my cold dead hands!</p>
<p>As I survey the web I see the seeds of TV viewer revolt.  I take heart in the people who declared they would never watch live TV; only shows on DVR so they could ignore the commercials.  I loved the guy who said he has a DO NOT PATRONIZE list and he always writes down the names of products that use volume spiking in their spots.  Some say this is a good reason to cancel cable and pick up a book. Many have been moved to write their local representatives. There is even a <a title="CALM Facebook Group" href="http://www.facebook.com/group.php?v=info&amp;gid=42954735802#!/group.php?v=info&amp;gid=42954735802">Facebook group</a> supporting the CALM act.</p>
<h2>Couch Potatoes Unite!</h2>
<p>It may seem like a lot of emotion over loud TV spots but I feel them and support them.  In these days &amp; times I look at it this way…</p>
<ul>
<li>We can’t find jobs</li>
<li>We can’t afford to go on vacation</li>
<li>We can’t afford a night at the theater</li>
<li>We can no longer assume when we step on the brakes that our cars will stop</li>
<li>Credit cards are charging us interest rates that make the vig on a mob loan seem like a get-by loan from family</li>
<li>Banks are hitting us with $35 bounced check fees for a 50¢ overdraft</li>
<li>We can’t get healthcare</li>
<li>We don’t like the people we didn’t vote for and aren’t satisfied with the ones we did</li>
</ul>
<p>We’re getting beat down at every turn. Can’t we just sit at home (if you still own one) and watch some friggin television in peace??</p>
<h2>Conclusion</h2>
<p>Despite the aggravation many of us feel about volume spiking I’m sure there is some Ad man out there to tell us, “it ain’t pretty but it works.”  I haven’t seen any data and that’s not my experience but perhaps that is true.  The car salesman is generally not looked upon kindly and his sales rap is notoriously vilified but it hasn’t changed since the invention of the car dealer.  If you have to get a car, you have to deal with the car salesman.</p>
<p>Even though we have some means of defense, we have to deal with loud commercials in one way or another if we are going to continue to watch TV.  And we will continue to watch.  Any of my friends will tell you I’d rather turn off the gas than my cable.</p>
<p>My ultimate frustration is that all this is a bunch of noise and aggravation with nothing gained for the viewer OR the advertiser.  Much as I hate it, I would grudgingly concede the effectiveness of this practice if I saw that it actually worked.  The problem is not my being able to hear your commercial.  The problem is your product or the effectiveness of the spot you produced.  If your commercial isn’t working or your product isn’t selling then you should look at your message and your creative.</p>
<p>I saw your spot and I heard your sales pitch.  I either want your product or I don’t.  I try to put myself in the mind of the advertiser and I fail to see how making a commercial louder is going to make viewers like what they see any better.  It won’t change their estimation of the product.  The only thing they risk doing is turning people from neutral to hostile viewers and that can’t be good for business.</p>
<p>TV advertisers, <strong>do you hear US now</strong>??</p>
]]></content:encoded>
			<wfw:commentRss>http://www.wearepixel8.com/blog/tv-commercials-too-loud/feed/</wfw:commentRss>
		<slash:comments>7</slash:comments>
		</item>
		<item>
		<title>6 Free Seamless Paper Textures</title>
		<link>http://www.wearepixel8.com/blog/6-free-seamless-paper-textures/</link>
		<comments>http://www.wearepixel8.com/blog/6-free-seamless-paper-textures/#comments</comments>
		<pubDate>Tue, 23 Feb 2010 23:29:40 +0000</pubDate>
		<dc:creator>Erik Ford</dc:creator>
				<category><![CDATA[Blog]]></category>
		<category><![CDATA[Freebies]]></category>
		<category><![CDATA[Free Downloads]]></category>
		<category><![CDATA[Graphic Design Resources]]></category>
		<category><![CDATA[Textures]]></category>

		<guid isPermaLink="false">http://www.wearepixel8.com/?p=1357</guid>
		<description><![CDATA[pixel8 has released a set of 6 seamless paper textures for you to download and use immediately in your next website design project.]]></description>
			<content:encoded><![CDATA[<p>As a designer, I often like to add textures to my work when the project calls for it. Take a look around. You are hard pressed not to notice the endless applications textures have in both print and web design. Open up your favorite magazine or browse any of your adored CSS galleries to find evidence of what I am talking about. From grungy to sleek, earthy to fabrics, it is prudent for you to have an arsenal of textures at your fingertips.</p>
<p>Today we are releasing a set of seamless paper textures, in six different color flavors, for you to download and use immediately in your next website design project.</p>
<div class="blognote"><em>These are low resolution images and not intended for print use.</em></div>
<p><a class="grande" title="6 Free Seamless Paper Textures" href="http://www.wearepixel8.com/wp-content/uploads/2010/02/tiled-paper-textures.jpg"><img class="aligncenter size-large wp-image-1362" title="Seamless Paper Textures" src="http://www.wearepixel8.com/wp-content/uploads/2010/02/tiled-paper-textures-525x525.jpg" alt="Seamless Paper Textures" width="525" height="525" /></a></p>
<p>The zip archive has everything you need from individual jpg images to a Photoshop Pattern set containing all six patterns. Play with the <a title="Launch the demo to view all six textures in action" href="http://www.wearepixel8.com/demos/seamless-paper/">demo</a> and switch between the 6 different textures.</p>
<p><a class="viewdemo" title="Launch demo and view all textures" href="http://www.wearepixel8.com/demos/seamless-paper/">View Demo</a></p>
<h2>What you get in the download</h2>
<ul>
<li>one (1) jpg image &#8211; Purple</li>
<li>one (1) jpg image &#8211; Red</li>
<li>one (1) jpg image &#8211; Orange</li>
<li>one (1) jpg image &#8211; Blue</li>
<li>one (1) jpg image &#8211; Brown</li>
<li>one (1) jpg image &#8211; Green</li>
<li>1 Photoshop Pattern set containing all six colors</li>
</ul>
<p>You can use these openly and freely as well as redistribute as long as there is a credit and link back to this post. <strong>Please do not directly link to the download file.</strong></p>
<p><a class="downloadzip" title="Download the 6 Free Seamless Paper Textures" href="http://www.wearepixel8.com/wp-content/uploads/2010/02/pixel8_seamlesspaper.zip">Download File</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.wearepixel8.com/blog/6-free-seamless-paper-textures/feed/</wfw:commentRss>
		<slash:comments>6</slash:comments>
		</item>
		<item>
		<title>Win a Free License for the Time Tracking &amp; Billing Application, Fanurio</title>
		<link>http://www.wearepixel8.com/blog/win-free-license-for-fanurio/</link>
		<comments>http://www.wearepixel8.com/blog/win-free-license-for-fanurio/#comments</comments>
		<pubDate>Mon, 22 Feb 2010 04:42:36 +0000</pubDate>
		<dc:creator>Erik Ford</dc:creator>
				<category><![CDATA[Blog]]></category>
		<category><![CDATA[Freebies]]></category>
		<category><![CDATA[Contest]]></category>
		<category><![CDATA[Free Downloads]]></category>
		<category><![CDATA[Freelancing Advice]]></category>

		<guid isPermaLink="false">http://www.wearepixel8.com/?p=1338</guid>
		<description><![CDATA[pixel8 has partnered with the great developers of the time tracking application, Fanurio, to offer a free license to one lucky winner. Leave a comment on this post before March 1, 2010 for your chance to win.]]></description>
			<content:encoded><![CDATA[<p>Two of the more difficult things to do as a freelancer is to track your time working and, subsequently, bill your clients accurately. Are you one of those freelancers who are manually keeping track of your time? Are you using a word processing or spread sheet application to generate your invoices? Well, we think the <a title="Fanurio Time Tracking" href="http://www.fanuriotimetracking.com/" target="_blank">Fanurio Time Tracking</a> software is just what you need. And the fine developers behind this software have given us one free license to share with you!</p>
<h2>Track time with little effort.</h2>
<p>Fanurio allows you to track your time both manually and/or with a timer. Simply start the timer when you begin working on any project, pause the timer for those much needed coffee breaks and stop the timer when you have completed your task. And the software is intuitive enough to alert you when your machine has been idle and the timer is currently running.</p>
<p><img class="aligncenter size-full wp-image-1345" title="Fanurio Start Clock Reminder" src="http://www.wearepixel8.com/wp-content/uploads/2010/02/fanurio-macosx-start-reminder.png" alt="Fanurio Start Clock Reminder" width="477" height="135" /></p>
<h2>Make sure you get paid for all of your work.</h2>
<p>From the moment you land a new contract, Fanurio provides powerful tools at your fingertips to help you manage and bill all of your work. And you have the freedom to bill hourly or by project. The application also allows you to round time, apply discounts and include fees for work you have sub-contracted.</p>
<p style="text-align: center;"><a class="grande" href="http://www.wearepixel8.com/wp-content/uploads/2010/02/fanurio-macosx-projects.png"><img class="aligncenter size-large wp-image-1347" title="Fanurio Mac OS X Screenshot" src="http://www.wearepixel8.com/wp-content/uploads/2010/02/fanurio-macosx-projects-525x290.png" alt="Fanurio Screenshot" width="525" height="290" /></a></p>
<p>Your projects can be invoiced at any time and the numbering system is updated automatically. Fanurio empowers you to view which invoices are paid or past due as well as each project&#8217;s remaining balance.</p>
<p>Do you often work with foreign clients? No problem. Fanurio can handle multiple currencies from within the application!</p>
<h2>Multi-User capabilities</h2>
<p>Fanurio can import time recorded on multiple computers, making it useful for small teams and people using more than one computer. If you are part of a team, each member can install Fanurio on their own machine to track time. Members can export their time and send it to the team leader to prepare invoices for their clients.</p>
<h2>Built to be safe and reliable.</h2>
<p>Fanurio uses a SQL database to prevent any accidental loss of data. For greater security, you can backup your data manually or automatically when the application closes.</p>
<h2>Analyze your performance</h2>
<p>There are multiple reports that Fanurio can generate to help you analyze your performance over any given time period. Here are just a few questions you can quickly get answered by using this application:</p>
<ul>
<li>How much time have I logged so far for Client “X”?</li>
<li>How much time have I logged so far for Project “Y”?</li>
<li>How much money have I made this week?</li>
<li>Who was my best client this year?</li>
<li>How much have I invoiced this year?</li>
</ul>
<h2>Runs on multiple platforms.</h2>
<p>Fanurio is built using Java technology, which enables it to run on Mac OS X, Windows, Linux and other “flavors of Unix”. You don’t have to worry if you have multiple computers with different operating systems. Your time and investment in Fanurio is protected and portable between all of them.</p>
<p>For a full list of features, please visit the <a title="Full list of Fanurio features" href="http://www.fanuriotimetracking.com/features.html" target="_blank">features</a> page on the Fanurio website.</p>
<h2>How to win.</h2>
<p>Enter to win your own free license for Fanurio by leaving a comment on this post with the following:</p>
<ul>
<li>Your name</li>
<li>Your e-mail address (must be valid and only the winner&#8217;s email address will be shared with Fanurio to fulfill the promotion)</li>
<li>How do you think this application will benefit you as a freelancer?</li>
</ul>
<p>You may only enter once. This promotion will run until <strong>March 1, 2010 at 12:00am Eastern Standard Time</strong>. The winner will be randomly chosen, using <a title="Random.org: True Random Number Service" href="http://www.random.org/" target="_blank">random.org</a>, and notified within 48 hours of the closing of the promotion.</p>
<p>Good luck! If you would like to play with the application, you should <a title="Download the free trial version of Fanurio" href="http://www.fanuriotimetracking.com/download.html" target="_blank">download</a> the 30 day free trial version.</p>
<h2>Congratulations!</h2>
<p>Congratulations to Vassilis Mastorostergios for being the grand prize winner of this promotion. We would also like to thank the people at Fanurio for their help and support as well as all of the people who participated. Participants in this promotions can view details of the drawing by visiting the <a title="Read the drawing details for this promotion" href="http://www.random.org/draws/details/?draw=1625">drawing details</a> on <a title="Random.org: True Random Number Service" href="http://www.random.org/">random.org</a>. You must enter the valid email address you provided for the promotion.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.wearepixel8.com/blog/win-free-license-for-fanurio/feed/</wfw:commentRss>
		<slash:comments>7</slash:comments>
		</item>
		<item>
		<title>3 Simple Image Enhancements in Photoshop</title>
		<link>http://www.wearepixel8.com/blog/3-simple-image-enhancements-in-photoshop/</link>
		<comments>http://www.wearepixel8.com/blog/3-simple-image-enhancements-in-photoshop/#comments</comments>
		<pubDate>Fri, 22 Jan 2010 23:10:29 +0000</pubDate>
		<dc:creator>Erik Ford</dc:creator>
				<category><![CDATA[Blog]]></category>
		<category><![CDATA[Tips & Tutorials]]></category>
		<category><![CDATA[Photo Retouching]]></category>
		<category><![CDATA[Photoshop Tutorial]]></category>

		<guid isPermaLink="false">http://www.wearepixel8.com/?p=1305</guid>
		<description><![CDATA[Did you ever want to pull your hair out when clients deliver image assets that just won't do? Here are 3 really simple methods of sprucing up those drab images in Photoshop in less than 3 minutes.]]></description>
			<content:encoded><![CDATA[<p>Imagine this scenario. You have spent countless hours designing the perfect mock-up page for a client using placeholder images. Now it’s time to drop in the client’s assets to get that final approval so you can get down to coding. You extract the zip file that was just now delivered and your heart sinks. All of the photos were shot by a non-ace on a snap-shot digital camera! Some were out of focus (completely unusable) while the remaining photos were dull in color.</p>
<p>Let’s face it. It happens. Not every client can afford a professional photo shoot with a photographer that will deliver high quality images. And though you may have sternly recommended using a skilled individual for the task, it just may not be in their budget. And that is where you, as a designer, have to step in and work up some minor divination on those lifeless images.</p>
<p>I’m going to show you three very simple ways to enhance a digital photo in Photoshop. These are meant for screen use only and not intended for print production. Unless you are adept at photo retouching, I wouldn’t recommend using these methods on a document that is intended for print.</p>
<p>If you would like to follow along, download this <a title="Download stock image" href="http://www.sxc.hu/photo/1233860" target="_blank">“Country road” stock image</a> from stock.xchng, but feel free to use any image you like. I am using this image for demonstration purposes only and am not saying the image represents what was described in the imagined scenario.</p>
<h2>Method 1: Use blending modes to enhance the color.</h2>
<p>Of the three methods, this one is the simplest. Open your image in Photoshop. From your Layers Palette window, drag a copy of the “Background” layer over the “Create a new layer” icon at the bottom of the palette window. This will automatically create a “Background copy” layer above the “Background” layer.</p>
<p><img class="aligncenter size-full wp-image-1307" title="Make a layer copy" src="http://www.wearepixel8.com/wp-content/uploads/2010/01/makelayercopy.jpg" alt="Make a layer copy" width="525" height="416" /></p>
<p>Now, select your “Background copy” layer and change the Blend Mode to Overlay. You should see a dramatic change in the colors of your image. In fact, the image might now be over saturated. Simply reduce the Opacity to about 70%, or until you reach your desired effect.</p>
<p><img class="aligncenter size-full wp-image-1308" title="Change blend mode to overlay" src="http://www.wearepixel8.com/wp-content/uploads/2010/01/overlayblendmode.jpg" alt="Change blend mode to overlay" width="525" height="416" /></p>
<p>Now you can see the differences between the original source image and the end result. You can adjust the effect by increasing or decreasing the Opacity slider. You can also play with other Blend Modes like Soft Light to quickly add a color pop to a drab digital image. It all depends on how dramatic of an effect you want in the end.</p>
<p><img class="aligncenter size-full wp-image-1309" title="Overlay blend mode before &amp; after" src="http://www.wearepixel8.com/wp-content/uploads/2010/01/colorbeforeafter.jpg" alt="Overlay blend mode before &amp; after" width="524" height="393" /></p>
<h2>Method 2: Change the mood of an image with a Curves adjustment layer.</h2>
<p>Here is a method I just picked up from a photographer and master photo retoucher that is often used in fashion photography (but in a more detailed manner than what I am going to show you). We are going to drastically boost specific colors by using a Curves adjustment layer.</p>
<p>First, let’s boost up the saturation of the image by clicking on the “Create new fill or adjustment layer” icon and selecting “Hue/Saturation&#8230;” from the Layers Palette window. In the newly opened dialog window drag the Saturation slider to 25.</p>
<p><img class="aligncenter size-full wp-image-1311" title="Increase the saturation of colors in the image" src="http://www.wearepixel8.com/wp-content/uploads/2010/01/huesaturation.jpg" alt="Increase the saturation of colors in the image" width="525" height="378" /></p>
<p>Return to your Layers Palette window and click on the “Create new fill or adjustment layer” icon again and select “Curves&#8230;”. This will add another adjustment layer directly above your Hue/Saturation adjustment layer.</p>
<p>For this image, I want to enhance the blue colors in the photograph. To do so, I will select the Blue channel from the drop down menu and create an “s” shaped curve. Make sure you have your Preview option on. Once I am happy with the output, I will click “Ok” and I am done.</p>
<p><img class="aligncenter size-full wp-image-1312" title="Adjust the Curves on the blue channel" src="http://www.wearepixel8.com/wp-content/uploads/2010/01/curvesadjustlayer.jpg" alt="Adjust the Curves on the blue channel" width="525" height="510" /></p>
<p>The beauty of this method is that it is non destructive to your source image. If you don’t like the effect, simply delete the adjustment layers and begin again.</p>
<p><img class="aligncenter size-full wp-image-1313" title="Curves adjustment layer before &amp; after" src="http://www.wearepixel8.com/wp-content/uploads/2010/01/curvebeforeafter.jpg" alt="Curves adjustment layer before &amp; after" width="524" height="393" /></p>
<h2>Method 3: Use High Pass filter and Blending Modes to sharpen a black &amp; white photo.</h2>
<p>You can quickly sharpen a dull black &amp; white photo, in Photoshop, using the High Pass filter. I am going to first desaturate this image to convert it into a black &amp; white photo by choosing Image &gt; Adjustments &gt; Desaturate. And just as we did in the previous method, I will create a copy of the “Background” layer.</p>
<p>With the “Background copy” layer selected, I will choose Filter &gt; Other &gt; High Pass which will open a dialog window for this filter.</p>
<p><img class="aligncenter size-full wp-image-1315" title="Choose High Pass filter from Filter drop down menu" src="http://www.wearepixel8.com/wp-content/uploads/2010/01/highpass.jpg" alt="Choose High Pass filter from Filter drop down menu" width="525" height="565" /></p>
<p>Make sure you have your Preview option checked so you can see what you are doing. Depending on how dramatic of an effect you want, adjust the slider and hit “Ok”. I set mine to a Radius of 6 pixels because I want to really bring out the shadows and midtones.</p>
<p><img class="aligncenter size-full wp-image-1316" title="High Pass dialog window" src="http://www.wearepixel8.com/wp-content/uploads/2010/01/highpasswindow.jpg" alt="High Pass dialog window" width="525" height="415" /></p>
<p>Now, with your “Background copy” layer selected, change the Blend Mode to Soft Lift leaving the Opacity at 100%. Make another copy of this filtered layer and change the Blend Mode to Hard Light and reduce the Opacity to 15%.</p>
<p><img class="aligncenter size-full wp-image-1317" title="Black &amp; White image before &amp; after" src="http://www.wearepixel8.com/wp-content/uploads/2010/01/bwbeforeafter.jpg" alt="Black &amp; White image before &amp; after" width="524" height="393" /></p>
<h2>Conclusion</h2>
<p>There are other, more detailed methods of enhancing your digital images in Photoshop. These are some of my quicker methods that can result in desirable final images. Play around with them on your own and see what you come up with. I firmly believe that experimenting always produces the best accidents.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.wearepixel8.com/blog/3-simple-image-enhancements-in-photoshop/feed/</wfw:commentRss>
		<slash:comments>5</slash:comments>
		</item>
		<item>
		<title>Styling a Simple Form using CSS3</title>
		<link>http://www.wearepixel8.com/blog/style-form-using-css3/</link>
		<comments>http://www.wearepixel8.com/blog/style-form-using-css3/#comments</comments>
		<pubDate>Fri, 15 Jan 2010 19:06:36 +0000</pubDate>
		<dc:creator>Erik Ford</dc:creator>
				<category><![CDATA[Blog]]></category>
		<category><![CDATA[Tips & Tutorials]]></category>
		<category><![CDATA[code snippets]]></category>
		<category><![CDATA[css3]]></category>
		<category><![CDATA[Tutorials]]></category>
		<category><![CDATA[Web Development]]></category>

		<guid isPermaLink="false">http://www.wearepixel8.com/?p=1263</guid>
		<description><![CDATA[Though CSS3 properties are not yet widely supported, there is no harm in experimenting with what may eventually be the norm. In this tutorial, we style a web form with rounded corners, gradients and a shadow using only CSS.]]></description>
			<content:encoded><![CDATA[<p>Recently, I had a simple project of designing and developing a newsletter subscription form that was only going to be viewed on and iPhone or iPod Touch device. The form, and all of the inputs, would have nice rounded corners (which I am an admitted sucker for) and subtle gradients.</p>
<p><img class="aligncenter size-full wp-image-1267" title="CSS3 Form Screenshot" src="http://www.wearepixel8.com/wp-content/uploads/2010/01/formscreen.jpg" alt="CSS3 Form Screenshot" width="525" height="350" /></p>
<p>Normally, we would achieve all of these effects by slicing up our Photoshop mock-up into individual background images that would later be implemented using the CSS background property. But, since I knew this particular form would only been seen on the iPhone and iPod Touch Safari browser, I decided to have have some fun with CSS3 properties, via Webkit, and replicate the entire mock-up without using any images at all.</p>
<p>The end result came out quite nicely. If all current modern browsers supported CSS3 properties, we would have significantly quicker page loads and would need less images to do our presentational dirty work.</p>
<p>In this little tutorial, I will show you how I accomplished these effects and take it one step further to include the 3.6a version of Firefox.</p>
<p><a class="viewdemo" href="http://www.wearepixel8.com/demos/css3-webform/" title="View Demo">View Demo</a></p>
<h2>Step 1: Mark up your form</h2>
<p>There is nothing spectacular about the mark up for the page. In fact, it is a simple form with three inputs (two text fields and a Submit button). There is also a <code>&lt;h2&gt;</code> tag for the title of the form which is completely optionally. Open up your favorite code editor and add the following code to your page:</p>

<div class="wp_syntax"><div class="code"><pre class="html4strict" style="font-family:monospace;"><span style="color: #009900;">&lt;<span style="color: #000000; font-weight: bold;">div</span> <span style="color: #000066;">class</span><span style="color: #66cc66;">=</span><span style="color: #ff0000;">&quot;wrapper&quot;</span>&gt;</span>
	<span style="color: #009900;">&lt;<span style="color: #000000; font-weight: bold;">h2</span>&gt;</span>Sign up for our Newsletter<span style="color: #009900;">&lt;<span style="color: #66cc66;">/</span><span style="color: #000000; font-weight: bold;">h2</span>&gt;</span>
&nbsp;
	<span style="color: #009900;">&lt;<span style="color: #000000; font-weight: bold;">form</span> <span style="color: #000066;">id</span><span style="color: #66cc66;">=</span><span style="color: #ff0000;">&quot;simple-form&quot;</span> <span style="color: #000066;">action</span><span style="color: #66cc66;">=</span><span style="color: #ff0000;">&quot;&quot;</span> <span style="color: #000066;">method</span><span style="color: #66cc66;">=</span><span style="color: #ff0000;">&quot;&quot;</span> <span style="color: #000066;">name</span><span style="color: #66cc66;">=</span><span style="color: #ff0000;">&quot;&quot;</span>&gt;</span>
		<span style="color: #009900;">&lt;<span style="color: #000000; font-weight: bold;">label</span> <span style="color: #000066;">for</span><span style="color: #66cc66;">=</span><span style="color: #ff0000;">&quot;input-1&quot;</span>&gt;</span>Name<span style="color: #009900;">&lt;<span style="color: #66cc66;">/</span><span style="color: #000000; font-weight: bold;">label</span>&gt;</span>
		<span style="color: #009900;">&lt;<span style="color: #000000; font-weight: bold;">input</span> <span style="color: #000066;">type</span><span style="color: #66cc66;">=</span><span style="color: #ff0000;">&quot;text&quot;</span> <span style="color: #000066;">name</span><span style="color: #66cc66;">=</span><span style="color: #ff0000;">&quot;input-1&quot;</span> <span style="color: #000066;">id</span><span style="color: #66cc66;">=</span><span style="color: #ff0000;">&quot;input-1&quot;</span> <span style="color: #66cc66;">/</span>&gt;</span>
&nbsp;
		<span style="color: #009900;">&lt;<span style="color: #000000; font-weight: bold;">label</span> <span style="color: #000066;">for</span><span style="color: #66cc66;">=</span><span style="color: #ff0000;">&quot;input-2&quot;</span>&gt;</span>E-mail<span style="color: #009900;">&lt;<span style="color: #66cc66;">/</span><span style="color: #000000; font-weight: bold;">label</span>&gt;</span>
		<span style="color: #009900;">&lt;<span style="color: #000000; font-weight: bold;">input</span> <span style="color: #000066;">type</span><span style="color: #66cc66;">=</span><span style="color: #ff0000;">&quot;text&quot;</span> <span style="color: #000066;">name</span><span style="color: #66cc66;">=</span><span style="color: #ff0000;">&quot;input-2&quot;</span> <span style="color: #000066;">id</span><span style="color: #66cc66;">=</span><span style="color: #ff0000;">&quot;input-2&quot;</span> <span style="color: #66cc66;">/</span>&gt;</span>
&nbsp;
		<span style="color: #009900;">&lt;<span style="color: #000000; font-weight: bold;">input</span> <span style="color: #000066;">type</span><span style="color: #66cc66;">=</span><span style="color: #ff0000;">&quot;submit&quot;</span> <span style="color: #000066;">name</span><span style="color: #66cc66;">=</span><span style="color: #ff0000;">&quot;submit&quot;</span> <span style="color: #000066;">id</span><span style="color: #66cc66;">=</span><span style="color: #ff0000;">&quot;submit&quot;</span> <span style="color: #000066;">value</span><span style="color: #66cc66;">=</span><span style="color: #ff0000;">&quot;Submit&quot;</span>&gt;</span>
	<span style="color: #009900;">&lt;<span style="color: #66cc66;">/</span><span style="color: #000000; font-weight: bold;">form</span>&gt;</span>
<span style="color: #009900;">&lt;<span style="color: #66cc66;">/</span><span style="color: #000000; font-weight: bold;">div</span>&gt;</span></pre></div></div>

<p>As you can see, there is nothing new here. You have your form, which we are assigning an id of <code>#simple-form</code>, form labels and inputs with assigned id&#8217;s of <code>#input-1</code> and <code>#input-2</code>. We are going to target each of these id&#8217;s in our next steps to produce gradients, rounded corners and a shadow.</p>
<h2>Step 2: Add some basic styles to your page.</h2>
<p>I recommend using a CSS reset file so you are always starting with a clean slate. If you do not have a reset file of your own, <a href="http://www.wearepixel8.com/wp-content/uploads/2010/01/reset.zip" title="Download CSS reset file">download</a> ours and insert it into the head of your document <strong>before</strong> the call for your own stylesheet. Once you have done this, add the following to your own stylesheet:</p>

<div class="wp_syntax"><div class="code"><pre class="css" style="font-family:monospace;">body <span style="color: #00AA00;">&#123;</span>
	<span style="color: #000000; font-weight: bold;">background-color</span><span style="color: #00AA00;">:</span> <span style="color: #cc00cc;">#ececec</span><span style="color: #00AA00;">;</span>
	<span style="color: #000000; font-weight: bold;">color</span><span style="color: #00AA00;">:</span> <span style="color: #cc00cc;">#565656</span><span style="color: #00AA00;">;</span>
	<span style="color: #000000; font-weight: bold;">font</span><span style="color: #00AA00;">:</span> <span style="color: #933;"><span style="color: #cc66cc;">62.5</span>%</span> Helvetica<span style="color: #00AA00;">,</span> Arial<span style="color: #00AA00;">,</span> <span style="color: #993333;">sans-serif</span><span style="color: #00AA00;">;</span>
<span style="color: #00AA00;">&#125;</span>
&nbsp;
<span style="color: #6666ff;">.wrapper</span> <span style="color: #00AA00;">&#123;</span>
	<span style="color: #000000; font-weight: bold;">margin</span><span style="color: #00AA00;">:</span> <span style="color: #cc66cc;">0</span> <span style="color: #993333;">auto</span><span style="color: #00AA00;">;</span>
	<span style="color: #000000; font-weight: bold;">position</span><span style="color: #00AA00;">:</span> <span style="color: #993333;">relative</span><span style="color: #00AA00;">;</span>
	<span style="color: #000000; font-weight: bold;">width</span><span style="color: #00AA00;">:</span> <span style="color: #933;">320px</span><span style="color: #00AA00;">;</span>
<span style="color: #00AA00;">&#125;</span>
&nbsp;
h2 <span style="color: #00AA00;">&#123;</span>
	<span style="color: #000000; font-weight: bold;">font-size</span><span style="color: #00AA00;">:</span> <span style="color: #933;">2em</span><span style="color: #00AA00;">;</span>
	<span style="color: #000000; font-weight: bold;">margin</span><span style="color: #00AA00;">:</span> <span style="color: #933;">25px</span> <span style="color: #cc66cc;">0</span> <span style="color: #cc66cc;">0</span><span style="color: #00AA00;">;</span>
	<span style="color: #000000; font-weight: bold;">text-align</span><span style="color: #00AA00;">:</span> <span style="color: #993333;">center</span><span style="color: #00AA00;">;</span>
<span style="color: #00AA00;">&#125;</span></pre></div></div>

<p>You will notice that I&#8217;ve also given the page a background color of light gray and set the typography to a universal <code>font-size</code> of 62.5% using Arial, Helvetica or next available sans-serif font. I&#8217;ve also set a universal color of dark gray for the all of the type. The <code>.wrapper</code> is here for demo and the tutorial purposes only.</p>
<h2>Step 3: Add the CSS3 magic to your form.</h2>
<p>Here is where the fun begins. To create the rounded corners, gradients and shadows that are available to in CSS3, we have to use vendor specific extensions in conjunction with our original properties. Let&#8217;s add a background color of white to our form and a subtle shadow surrounding it. I am also going to give my form a <code>width</code>, <code>margin</code> and <code>padding</code> that is specific to this tutorial. What you want to pay attention to are the extensions that begin with <code>-webkit-</code> and <code>-moz-</code> targeting the Safari and Firefox browsers respectively.</p>

<div class="wp_syntax"><div class="code"><pre class="css" style="font-family:monospace;">form<span style="color: #cc00cc;">#simple-form</span> <span style="color: #00AA00;">&#123;</span>
	-moz-border-radius-bottomleft<span style="color: #00AA00;">:</span> <span style="color: #933;">20px</span><span style="color: #00AA00;">;</span>
	-moz-border-radius-bottomright<span style="color: #00AA00;">:</span> <span style="color: #933;">20px</span><span style="color: #00AA00;">;</span>
	-moz-border-radius-topleft<span style="color: #00AA00;">:</span> <span style="color: #933;">20px</span><span style="color: #00AA00;">;</span>
	-moz-border-radius-topright<span style="color: #00AA00;">:</span> <span style="color: #933;">20px</span><span style="color: #00AA00;">;</span>
	-moz-box-shadow<span style="color: #00AA00;">:</span> <span style="color: #933;">2px</span> <span style="color: #933;">2px</span> <span style="color: #933;">10px</span> <span style="color: #cc00cc;">#ccc</span><span style="color: #00AA00;">;</span>
	-webkit-border-bottom-left-radius<span style="color: #00AA00;">:</span> <span style="color: #933;">20px</span><span style="color: #00AA00;">;</span>
	-webkit-border-bottom-right-radius<span style="color: #00AA00;">:</span> <span style="color: #933;">20px</span><span style="color: #00AA00;">;</span>
	-webkit-border-top-left-radius<span style="color: #00AA00;">:</span> <span style="color: #933;">20px</span><span style="color: #00AA00;">;</span>
	-webkit-border-top-right-radius<span style="color: #00AA00;">:</span> <span style="color: #933;">20px</span><span style="color: #00AA00;">;</span>
	-webkit-box-shadow<span style="color: #00AA00;">:</span> <span style="color: #933;">2px</span> <span style="color: #933;">2px</span> <span style="color: #933;">10px</span> <span style="color: #cc00cc;">#ccc</span><span style="color: #00AA00;">;</span>
	<span style="color: #000000; font-weight: bold;">background-color</span><span style="color: #00AA00;">:</span> <span style="color: #cc00cc;">#fff</span><span style="color: #00AA00;">;</span>
	<span style="color: #000000; font-weight: bold;">margin</span><span style="color: #00AA00;">:</span> <span style="color: #933;">25px</span> <span style="color: #993333;">auto</span> <span style="color: #cc66cc;">0</span><span style="color: #00AA00;">;</span>
	<span style="color: #000000; font-weight: bold;">padding</span><span style="color: #00AA00;">:</span> <span style="color: #933;">25px</span> <span style="color: #933;">10px</span><span style="color: #00AA00;">;</span>
	<span style="color: #000000; font-weight: bold;">text-align</span><span style="color: #00AA00;">:</span> <span style="color: #993333;">center</span><span style="color: #00AA00;">;</span>
	<span style="color: #000000; font-weight: bold;">width</span><span style="color: #00AA00;">:</span> <span style="color: #933;">260px</span><span style="color: #00AA00;">;</span>
<span style="color: #00AA00;">&#125;</span></pre></div></div>

<p>What we&#8217;ve done here is set the <code>border-radius</code> of all four corners to 20 pixels which will give us a nice round edge. What may not be as obvious is the <code>box-shadow</code> property. The shorthand declaration takes four attributes:</p>
<ul>
<li>The distance of the shadow on the x-axis (2px).</li>
<li>The distance of the shadow on the y-axis (2px).</li>
<li>The amount of blur radius to apply to the shadow (10px) with 0 being sharp.</li>
<li>The color to apply to the shadow (very light gray).</li>
</ul>
<p>Now, let&#8217;s style the labels and inputs for the form. We are going to be using border-radius once again, but this time we are going to apply a gradient to the inputs as well.</p>

<div class="wp_syntax"><div class="code"><pre class="css" style="font-family:monospace;">form<span style="color: #cc00cc;">#simple-form</span> label <span style="color: #00AA00;">&#123;</span>
	<span style="color: #000000; font-weight: bold;">display</span><span style="color: #00AA00;">:</span> <span style="color: #993333;">block</span><span style="color: #00AA00;">;</span>
	<span style="color: #000000; font-weight: bold;">font-size</span><span style="color: #00AA00;">:</span> <span style="color: #933;">1.65em</span><span style="color: #00AA00;">;</span>
	<span style="color: #000000; font-weight: bold;">font-weight</span><span style="color: #00AA00;">:</span> <span style="color: #993333;">bold</span><span style="color: #00AA00;">;</span>
	<span style="color: #000000; font-weight: bold;">letter-spacing</span><span style="color: #00AA00;">:</span> <span style="color: #933;">-0.025em</span><span style="color: #00AA00;">;</span>
	<span style="color: #000000; font-weight: bold;">margin</span><span style="color: #00AA00;">:</span> <span style="color: #cc66cc;">0</span> <span style="color: #cc66cc;">0</span> <span style="color: #933;">5px</span> <span style="color: #933;">15px</span><span style="color: #00AA00;">;</span>
	<span style="color: #000000; font-weight: bold;">text-align</span><span style="color: #00AA00;">:</span> <span style="color: #000000; font-weight: bold;">left</span><span style="color: #00AA00;">;</span>
&nbsp;
<span style="color: #00AA00;">&#125;</span>
&nbsp;
form<span style="color: #cc00cc;">#simple-form</span> input<span style="color: #cc00cc;">#input-1</span><span style="color: #00AA00;">,</span> form<span style="color: #cc00cc;">#simple-form</span> input<span style="color: #cc00cc;">#input-2</span> <span style="color: #00AA00;">&#123;</span>
	-moz-border-radius-bottomleft<span style="color: #00AA00;">:</span> <span style="color: #933;">20px</span><span style="color: #00AA00;">;</span>
	-moz-border-radius-bottomright<span style="color: #00AA00;">:</span> <span style="color: #933;">20px</span><span style="color: #00AA00;">;</span>
	-moz-border-radius-topleft<span style="color: #00AA00;">:</span> <span style="color: #933;">20px</span><span style="color: #00AA00;">;</span>
	-moz-border-radius-topright<span style="color: #00AA00;">:</span> <span style="color: #933;">20px</span><span style="color: #00AA00;">;</span>
	-webkit-border-bottom-left-radius<span style="color: #00AA00;">:</span> <span style="color: #933;">20px</span><span style="color: #00AA00;">;</span>
	-webkit-border-bottom-right-radius<span style="color: #00AA00;">:</span> <span style="color: #933;">20px</span><span style="color: #00AA00;">;</span>
	-webkit-border-top-left-radius<span style="color: #00AA00;">:</span> <span style="color: #933;">20px</span><span style="color: #00AA00;">;</span>
	-webkit-border-top-right-radius<span style="color: #00AA00;">:</span> <span style="color: #933;">20px</span><span style="color: #00AA00;">;</span>
	<span style="color: #000000; font-weight: bold;">background-color</span><span style="color: #00AA00;">:</span> <span style="color: #cc00cc;">#eaeaea</span><span style="color: #00AA00;">;</span>
	<span style="color: #000000; font-weight: bold;">background</span><span style="color: #00AA00;">:</span> -moz-linear-gradient<span style="color: #00AA00;">&#40;</span><span style="color: #000000; font-weight: bold;">top</span><span style="color: #00AA00;">,</span> <span style="color: #cc00cc;">#ffffff</span><span style="color: #00AA00;">,</span> <span style="color: #cc00cc;">#eaeaea</span><span style="color: #00AA00;">&#41;</span><span style="color: #00AA00;">;</span>
	<span style="color: #000000; font-weight: bold;">background</span><span style="color: #00AA00;">:</span> -webkit-gradient<span style="color: #00AA00;">&#40;</span>linear<span style="color: #00AA00;">,</span> <span style="color: #000000; font-weight: bold;">left</span> <span style="color: #000000; font-weight: bold;">top</span><span style="color: #00AA00;">,</span> <span style="color: #000000; font-weight: bold;">left</span> <span style="color: #000000; font-weight: bold;">bottom</span><span style="color: #00AA00;">,</span> color-stop<span style="color: #00AA00;">&#40;</span><span style="color: #cc66cc;">0.0</span><span style="color: #00AA00;">,</span> <span style="color: #cc00cc;">#ffffff</span><span style="color: #00AA00;">&#41;</span><span style="color: #00AA00;">,</span> color-stop<span style="color: #00AA00;">&#40;</span><span style="color: #cc66cc;">1.0</span><span style="color: #00AA00;">,</span> <span style="color: #cc00cc;">#eaeaea</span><span style="color: #00AA00;">&#41;</span><span style="color: #00AA00;">&#41;</span><span style="color: #00AA00;">;</span>
	<span style="color: #000000; font-weight: bold;">border</span><span style="color: #00AA00;">:</span> <span style="color: #933;">1px</span> <span style="color: #993333;">solid</span> <span style="color: #cc00cc;">#cacaca</span><span style="color: #00AA00;">;</span>
	<span style="color: #000000; font-weight: bold;">color</span><span style="color: #00AA00;">:</span> <span style="color: #cc00cc;">#444</span><span style="color: #00AA00;">;</span>
	<span style="color: #000000; font-weight: bold;">font-size</span><span style="color: #00AA00;">:</span> <span style="color: #933;">1.4em</span><span style="color: #00AA00;">;</span>
	<span style="color: #000000; font-weight: bold;">margin</span><span style="color: #00AA00;">:</span> <span style="color: #cc66cc;">0</span> <span style="color: #cc66cc;">0</span> <span style="color: #933;">25px</span><span style="color: #00AA00;">;</span>
	<span style="color: #000000; font-weight: bold;">padding</span><span style="color: #00AA00;">:</span> <span style="color: #933;">8px</span> <span style="color: #933;">10px</span><span style="color: #00AA00;">;</span>
	<span style="color: #000000; font-weight: bold;">width</span><span style="color: #00AA00;">:</span> <span style="color: #933;">240px</span><span style="color: #00AA00;">;</span>
<span style="color: #00AA00;">&#125;</span>
&nbsp;
form<span style="color: #cc00cc;">#simple-form</span> input<span style="color: #cc00cc;">#submit</span> <span style="color: #00AA00;">&#123;</span>
	-moz-border-radius-bottomleft<span style="color: #00AA00;">:</span> <span style="color: #933;">32px</span><span style="color: #00AA00;">;</span>
	-moz-border-radius-bottomright<span style="color: #00AA00;">:</span> <span style="color: #933;">32px</span><span style="color: #00AA00;">;</span>
	-moz-border-radius-topleft<span style="color: #00AA00;">:</span> <span style="color: #933;">32px</span><span style="color: #00AA00;">;</span>
	-moz-border-radius-topright<span style="color: #00AA00;">:</span> <span style="color: #933;">32px</span><span style="color: #00AA00;">;</span>
	-webkit-border-bottom-left-radius<span style="color: #00AA00;">:</span> <span style="color: #933;">32px</span><span style="color: #00AA00;">;</span>
	-webkit-border-bottom-right-radius<span style="color: #00AA00;">:</span> <span style="color: #933;">32px</span><span style="color: #00AA00;">;</span>
	-webkit-border-top-left-radius<span style="color: #00AA00;">:</span> <span style="color: #933;">32px</span><span style="color: #00AA00;">;</span>
	-webkit-border-top-right-radius<span style="color: #00AA00;">:</span> <span style="color: #933;">32px</span><span style="color: #00AA00;">;</span>
	<span style="color: #000000; font-weight: bold;">background-color</span><span style="color: #00AA00;">:</span> <span style="color: #cc00cc;">#dedede</span><span style="color: #00AA00;">;</span>
	<span style="color: #000000; font-weight: bold;">background</span><span style="color: #00AA00;">:</span> -moz-linear-gradient<span style="color: #00AA00;">&#40;</span><span style="color: #000000; font-weight: bold;">top</span><span style="color: #00AA00;">,</span> <span style="color: #cc00cc;">#ffffff</span><span style="color: #00AA00;">,</span> <span style="color: #cc00cc;">#eaeaea</span><span style="color: #00AA00;">&#41;</span><span style="color: #00AA00;">;</span>
	<span style="color: #000000; font-weight: bold;">background</span><span style="color: #00AA00;">:</span> -webkit-gradient<span style="color: #00AA00;">&#40;</span>linear<span style="color: #00AA00;">,</span> <span style="color: #000000; font-weight: bold;">left</span> <span style="color: #000000; font-weight: bold;">top</span><span style="color: #00AA00;">,</span> <span style="color: #000000; font-weight: bold;">left</span> <span style="color: #000000; font-weight: bold;">bottom</span><span style="color: #00AA00;">,</span> color-stop<span style="color: #00AA00;">&#40;</span><span style="color: #cc66cc;">0.0</span><span style="color: #00AA00;">,</span> <span style="color: #cc00cc;">#ffffff</span><span style="color: #00AA00;">&#41;</span><span style="color: #00AA00;">,</span> color-stop<span style="color: #00AA00;">&#40;</span><span style="color: #cc66cc;">1.0</span><span style="color: #00AA00;">,</span> <span style="color: #cc00cc;">#dedede</span><span style="color: #00AA00;">&#41;</span><span style="color: #00AA00;">&#41;</span><span style="color: #00AA00;">;</span>
	<span style="color: #000000; font-weight: bold;">border</span><span style="color: #00AA00;">:</span> <span style="color: #933;">1px</span> <span style="color: #993333;">solid</span> <span style="color: #cc00cc;">#dedede</span><span style="color: #00AA00;">;</span>
	<span style="color: #000000; font-weight: bold;">color</span><span style="color: #00AA00;">:</span> <span style="color: #cc00cc;">#484848</span><span style="color: #00AA00;">;</span>
	<span style="color: #000000; font-weight: bold;">font-size</span><span style="color: #00AA00;">:</span> <span style="color: #933;">1.65em</span><span style="color: #00AA00;">;</span>
	<span style="color: #000000; font-weight: bold;">font-weight</span><span style="color: #00AA00;">:</span> <span style="color: #993333;">bold</span><span style="color: #00AA00;">;</span>
	<span style="color: #000000; font-weight: bold;">padding</span><span style="color: #00AA00;">:</span> <span style="color: #933;">10px</span> <span style="color: #933;">15px</span><span style="color: #00AA00;">;</span>
<span style="color: #00AA00;">&#125;</span></pre></div></div>

<p>With the <code>-moz-linear-gradient</code> and <code>-webkit-gradient</code> attributes, we can replicate the gradients created in Photoshop right in the browser without any images. The two are slightly different from one another on how you implement them, but the effect is exactly the same.</p>
<p>For webkit, you must establish the type of gradient (linear), the starting point (left top), the ending point (left bottom), the color-stop, color value and origin point of the first color (white starting at the very top), and the same the the second color (gray starting that the end). For moz, you can either use <code>-moz-linear-gradient</code> (in this case) or <code>-moz-radial-gradient</code>. For a simple gradient like this one, state the origin point and two colors and you are done.</p>
<h2>The Demo</h2>
<p>If you are browsing with either Safari 4 or Firefox 3.6a, you will be able to see CSS3 wizardry in action, which leads me to the caveat of this post. As of now, these properties are experimental and only a part of the CSS3 draft. Therefore, they are subject to change at any time. So, when you combine this with the lack of universal support, I recommend sticking to your tried and true methods for now or use them sparingly with a graceful degradation for unsupported browsers.</p>
<p><a class="viewdemo" href="http://www.wearepixel8.com/demos/css3-webform/" title="View Demo">View Demo</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.wearepixel8.com/blog/style-form-using-css3/feed/</wfw:commentRss>
		<slash:comments>9</slash:comments>
		</item>
		<item>
		<title>Automatically Update your Website Copyright Year with Javascript</title>
		<link>http://www.wearepixel8.com/blog/update-copyright-year/</link>
		<comments>http://www.wearepixel8.com/blog/update-copyright-year/#comments</comments>
		<pubDate>Thu, 14 Jan 2010 22:47:59 +0000</pubDate>
		<dc:creator>Erik Ford</dc:creator>
				<category><![CDATA[Blog]]></category>
		<category><![CDATA[Tips & Tutorials]]></category>
		<category><![CDATA[code snippets]]></category>
		<category><![CDATA[Javascripts]]></category>
		<category><![CDATA[PHP]]></category>
		<category><![CDATA[Web Development]]></category>
		<category><![CDATA[WordPress Theme Development]]></category>

		<guid isPermaLink="false">http://www.wearepixel8.com/?p=1256</guid>
		<description><![CDATA[At pixel8, we are all about simple solutions and today we would like to share one. Instead of manually updating your copyright year annually, why not use a bit of javascript code to complete the task for you?]]></description>
			<content:encoded><![CDATA[<p>Towards the end of 2009, there were several friendly reminders from the Twitter-verse to update the  copyright year on sites you&#8217;ve developed to reﬂect the current year. Depending on how many pages  a given website contains, this can be a proverbial pain in the you know what. Plus, one of  the last thing that will be on your mind during the holiday week will be whether your  copyright notice is up to date. Why not drop in a couple lines of javascript code that will  automatically update for you each and every year?</p>
<p>Add the following lines of code to your document before the closing <code>&lt;body&gt;</code> tag and  presumably in your footer area:</p>

<div class="wp_syntax"><div class="code"><pre class="javascript" style="font-family:monospace;"><span style="color: #339933;">&lt;</span>script language<span style="color: #339933;">=</span><span style="color: #3366CC;">&quot;JavaScript&quot;</span> type<span style="color: #339933;">=</span><span style="color: #3366CC;">&quot;text/javascript&quot;</span><span style="color: #339933;">&gt;</span> 
&nbsp;
 today<span style="color: #339933;">=</span><span style="color: #003366; font-weight: bold;">new</span> Date<span style="color: #009900;">&#40;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span> 
&nbsp;
 y0<span style="color: #339933;">=</span>today.<span style="color: #660066;">getFullYear</span><span style="color: #009900;">&#40;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span> 
<span style="color: #339933;">&lt;/</span>script<span style="color: #339933;">&gt;</span> 
<span style="color: #339933;">&lt;</span>p<span style="color: #339933;">&gt;</span>Copyright <span style="color: #339933;">&amp;</span>copy<span style="color: #339933;">;</span> <span style="color: #CC0000;">2007</span> <span style="color: #339933;">-</span> <span style="color: #339933;">&lt;</span>script language<span style="color: #339933;">=</span><span style="color: #3366CC;">&quot;JavaScript&quot;</span> type<span style="color: #339933;">=</span><span style="color: #3366CC;">&quot;text/ 
javascript&quot;</span><span style="color: #339933;">&gt;</span>document.<span style="color: #000066; font-weight: bold;">write</span><span style="color: #009900;">&#40;</span>y0<span style="color: #009900;">&#41;</span><span style="color: #339933;">;&lt;/</span>script<span style="color: #339933;">&gt;</span> Your site <span style="color: #000066;">name</span>. <span style="color: #660066;">All</span> Rights Reserved.<span style="color: #339933;">&lt;/</span>p<span style="color: #339933;">&gt;</span></pre></div></div>

<p>This is all you need to automatically update the copyright year on your website using a  smidgen of javascript. From here on, though appreciated, you wonʼt need to be  reminded to update that pesky date on January 1st.</p>
<h2>How do I update my copyright notice in WordPress?</h2>
<p>While this code will work ﬁne in your WordPress theme, I would recommend leveraging  the power of PHP to get the job done. You wonʼt have an inline javascript call and it is  less code (remember to keep that mark up clean and lean).</p>
<p>Place the following code in the footer.php ﬁle of your theme:</p>

<div class="wp_syntax"><div class="code"><pre class="php" style="font-family:monospace;">&lt;p&gt;Copyright &amp;copy; 2007 - <span style="color: #000000; font-weight: bold;">&lt;?php</span> <span style="color: #b1b100;">echo</span> <span style="color: #990000;">date</span><span style="color: #009900;">&#40;</span><span style="color: #0000ff;">'Y'</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span> <span style="color: #000000; font-weight: bold;">?&gt;</span> Your site name. All Rights 
Reserved.&lt;/p&gt;</pre></div></div>

<p>And, once again, you have a simple and worry free method of updating that copyright  notice. I hope you found this helpful and Happy New Year to you all.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.wearepixel8.com/blog/update-copyright-year/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Our Goals for pixel8 in 2010</title>
		<link>http://www.wearepixel8.com/blog/news/2010-pixel8-goals/</link>
		<comments>http://www.wearepixel8.com/blog/news/2010-pixel8-goals/#comments</comments>
		<pubDate>Sun, 03 Jan 2010 23:30:28 +0000</pubDate>
		<dc:creator>Erik Ford</dc:creator>
				<category><![CDATA[Blog]]></category>
		<category><![CDATA[News]]></category>
		<category><![CDATA[pixel8 Related]]></category>

		<guid isPermaLink="false">http://www.wearepixel8.com/?p=1228</guid>
		<description><![CDATA[Now that the new year is less than one week old, it is time for David and I to look back at our first 4 months and start to establish concrete goals for the company in 2010.]]></description>
			<content:encoded><![CDATA[<p><img class="aligncenter size-full wp-image-1248" title="Objectives &amp; Goals for 2010" src="http://www.wearepixel8.com/wp-content/uploads/2010/01/objectives.jpg" alt="" width="525" height="300" /></p>
<p>2009 was interesting year for me professionally. After spending a few years as freelancers, I, along with my partner, decided to start our own design studio and marketing agency.</p>
<p>For me, this was born out of the frustration I felt from working alone as well as the quality of projects I was taking on as a freelancers. From our initial conversations, we knew that, with our combined talents, we could create something that would benefit not only ourselves personally, but anyone we decided to work with.</p>
<p>Well, after opening our “doors” in September 2009, it is time for us to look back at our first 4 months and start to establish concrete goals for ourselves in 2010.</p>
<h2>Reduce the amount of freelancing work.</h2>
<blockquote class="pullquote right">Taking on freelance projects in 2009 gave us much needed financial security but left us with what I perceived to be a catch 22.</blockquote>
<p>As David and I began laying the foundations for pixel8, it was necessary for us to continue to take on small freelancing projects from time to time. This gave us much needed financial security but left us with what I perceived to be a catch 22. While this allowed for a continuation of capital inflow, as well as an opportunity to stay sharp, it also took valuable time away from focusing on our company. I tend to work 70-80 hours a week and it becomes detrimental to our brand if half of that time is spent working on anything other than pixel8.</p>
<p>In 2010, it has become imperative to remove the safety net and almost focus exclusively on pixel8. As frightening as this seems to me now, I know this is the only way to completely remove the freelancing title from my name and make the full segue to pixel8 being a design studio.</p>
<p>And trust me, I would love to be able to “rip this bandage off” immediately. But, realistically, I know that this is a gradual goal over the course of the next 12 months. For starters, I have already begun to only consider freelance projects from existing past clients. And this will be on a case by case basis. This will force David and I to spend the necessary time, energy and effort to find projects that benefit the company and not simply us personally.</p>
<h2>Establish pixel8 as a company and not simply two freelancers.</h2>
<blockquote class="pullquote right">David and I are now the co-owners of a company and have to deal with issues that were not pertinent to us as freelancers.</blockquote>
<p>This goal goes hand in hand with the previous one. One of the bigger differences between being a freelancer and a company is the amount of administrative work involved. David and I are now the co-owners of a company and have to deal with issues that were not pertinent to us as freelancers: accountants and corporate taxes just to name two.</p>
<p>I will be the first to admit that this is not where my strengths lie. I prefer to sequester myself to the creative corner of our business, but no longer have that luxury. Beginning now, we have to spend the necessary time to establish how this business will run and eventually become a profitable entity. This will mean establishing quarterly budgets and projections (yawn!) as well as trademarking our brand. None of which I find to be particularly sexy, but imperative for our long term goals.</p>
<h2>Take on more challenging and diverse projects.</h2>
<blockquote class="pullquote right">The temptation, when starting a new company, is to take on every project that comes your way.</blockquote>
<p>We conceived pixel8 as a place for small and start up businesses to come with their large ideas. We then take these large ideas and bring them to life whether on or offline. In 2010, I want us to take on more challenging projects that involve all aspects of the services we offer: from design to development to marketing.</p>
<p>The temptation, when starting a new company, is to take on every project that comes your way. But, if we are to achieve this particular goal, David and I will have to be more selective about the projects we take on; weighing the balances between our company’s gross projections against how the project builds our brand (can you see how the corporate side of my brain is starting to infringe on the creative side?). I believe this will become critical to establishing a multifarious portfolio for pixel8 which will benefit the brand as a whole in the long run.</p>
<h2>Be more consistent with blogging.</h2>
<blockquote class="pullquote right">More than improving our consistency, I want to expand on the topics we cover in the blog.</blockquote>
<p>Our blog is more of an online journal of our thoughts, news, tutorials as well as anything we find inspirational. When we opened the doors on September 9, 2009, I set a personal goal for myself to post at least once a week. I fell well short of this goal in 2009 averaging less than 2 posts per month. Even worse than me is my partner, David (sorry, I have to call you out here). He has yet to write a single post though I know he has some great ideas brewing!</p>
<p>More than improving our consistency, I want to expand on the topics we cover in the blog. This area of the site was also meant to be a place for people to get to know the principle members of the studio, as well as interact with us. And though I enjoy writing design and web related tutorials, I like to think of myself as an individual whose interests run the gamut from sports to movies to music to social issues. This will be more reflected in what David and I write in 2010.</p>
<h2>Write more guest blog posts.</h2>
<p>This is more of an individual goal than one for pixel8. As I reduce the amount of tutorial related posts on our site, I want to start writing more guest blog posts for other design and development related blogs. I had the privilege of doing so for <a title="How To Design And Print A Christmas Greeting Card In Illustrator" href="http://www.littleboxofideas.com/blog/tutorials/design-and-print-christmas-greeting-cards-illustrator" target="_blank">Little Box of Ideas</a> in 2009 and have already delivered a couple of posts for the new design blog, <a title="Design Informer" href="http://designinformer.com/" target="_blank">Design Informer</a> which will be published over the next couple of weeks.</p>
<p>This gives me the ability to share some of my knowledge as well as network with other designers and developers on a global basis. Obviously, pixel8 will benefit from the added exposure, but this goal is more for me to become an interactive part of the community.</p>
<h2>Improve the usability experience of the pixel8 website.</h2>
<p>Anyone who knows me is well aware that I am always looking to improve on my work. This becomes more evident in the work I’ve done on our website. In fact, though I would love to do so right now, I made a promise to myself that this version of our website will exist for a minimum of one year before I think about a redesign.</p>
<p>With that said, as I begin to focus on user experience as much as visual presentation, there are some upgrades I have already implemented since our launch in September 2009. This is most evident on our <a title="Work" href="http://www.wearepixel8.com/work/">portfolio page</a>. I intend on making more of these types of improvements over the course of this year as we continue to grow and I learn more about how our site is being used. I am hoping this will make the redesign process in the Fall of 2010 a bit more seamless.</p>
<h2>Conclusion</h2>
<p>It is imperative for any company to establish short and long term objectives to measure their success by. If we are able to meet these benchmarks over the course of 2010, I think this will set us up for some of our far reaching goals of finding office space and expanding the team. Right now, we are very excited about the new year with all of the possibilities at our fingertips. Stay tuned and we will keep you posted on our progress as the year goes on.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.wearepixel8.com/blog/news/2010-pixel8-goals/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
	</channel>
</rss>
