<?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>Beyond Caffeine &#187; Layout</title>
	<atom:link href="http://blog.websitestyle.com/index.php/category/layout/feed/" rel="self" type="application/rss+xml" />
	<link>http://blog.websitestyle.com</link>
	<description>Various Epiphanies of a Technical Mind</description>
	<lastBuildDate>Wed, 03 Nov 2010 22:27:22 +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>Automatic Post Thumbnails Without Plugins</title>
		<link>http://blog.websitestyle.com/index.php/2009/08/21/automatic-post-thumbnails-without-plugins/</link>
		<comments>http://blog.websitestyle.com/index.php/2009/08/21/automatic-post-thumbnails-without-plugins/#comments</comments>
		<pubDate>Fri, 21 Aug 2009 16:20:08 +0000</pubDate>
		<dc:creator>Nicole</dc:creator>
				<category><![CDATA[Blogging]]></category>
		<category><![CDATA[Code]]></category>
		<category><![CDATA[Design]]></category>
		<category><![CDATA[Layout]]></category>
		<category><![CDATA[Templates]]></category>
		<category><![CDATA[Tutorials]]></category>
		<category><![CDATA[Wordpress]]></category>
		<category><![CDATA[automatic]]></category>
		<category><![CDATA[post]]></category>
		<category><![CDATA[thumbnail]]></category>
		<category><![CDATA[thumbnails]]></category>

		<guid isPermaLink="false">http://blog.websitestyle.com/?p=648</guid>
		<description><![CDATA[Recently I had to make a WordPress theme for someone who is very uncomfortable with the technical process of downloading pictures and uploading them, so asking this person to resize or crop photos to make thumbnails was out of the question. Regardless, she needs to have a unique picture on each post of her new [...]]]></description>
			<content:encoded><![CDATA[<p>Recently I had to make a WordPress theme for someone who is very uncomfortable with the technical process of downloading pictures and uploading them, so asking this person to resize or crop photos to make thumbnails was out of the question. Regardless, she needs to have a unique picture on each post of her new site &#8211; so my challenge was how to make that as easy as possible.</p>
<p>Now certainly, I could have used one of the php bits to create thumbnails on the fly like TimThumb &#8211; but I really dislike using plugins for things I can do without them. She also gets totally confused using custom fields, so that&#8217;s out as well.</p>
<p>What I needed to do:<br />
1. Determine a standard size for thumbnails and post images that would work well for her theme.<br />
2. Create a post thumbnail using the first image attached to a post.<br />
3. Display the post thumbnails on the blog main page listing of recent posts.<br />
4. Create a standard image that would be displayed if she forgot to add any images to a post.</p>
<p>Since I&#8217;m a big fan of reusing code, I decided I wanted to use the built in sizing options of WordPress to get this done. I remembered recently reading an article with a chunk of code, so I found it again and reused that. <a href="http://webdeveloperplus.com/wordpress/how-to-use-thumbnails-generated-by-wordpress-in-your-theme/">The code process can be found on Web Developer Plus</a>.</p>
<h3>Setting The Image Sizes</h3>
<p>Go to your WordPress backend and then Settings -> Media and configure the sizes that work well for your theme.</p>
<p>The thumbnail size is the most important. I set this one to 150px by 150px and selected the option to crop the thumbnails to that size. The reason I selected the crop is in the likely case the photo she&#8217;s using isn&#8217;t a perfect square, the image won&#8217;t look out of proportion when it&#8217;s sized down to 150&#215;150.</p>
<h3>Creating a Thumbnail From The First Image</h3>
<p>This is where we get the <a href="http://webdeveloperplus.com/wordpress/how-to-use-thumbnails-generated-by-wordpress-in-your-theme/">code bit from Web Developer Plus</a> and with a couple of minor changes end up with this:</p>
<p><code>&lt;?php<br />
// Get images attached to the post<br />
$img = null;<br />
$args = array(<br />
'post_type' =&gt; 'attachment',<br />
'post_mime_type' =&gt; 'image',<br />
'numberposts' =&gt; -1,<br />
'order' =&gt; 'ASC',<br />
'post_status' =&gt; null,<br />
'post_parent' =&gt; $post-&gt;ID<br />
);<br />
$attachments = get_posts($args);<br />
if ($attachments) {<br />
foreach ($attachments as $attachment) {<br />
$img = wp_get_attachment_thumb_url( $attachment-&gt;ID );<br />
break;<br />
} ?&gt;<br />
&lt;!-- Display the image in here --&gt;<br />
&lt;?php }<br />
?&gt;</code></p>
<p>The code, at this point, doesn&#8217;t do much but it will in the next steps. I do want to stop and explain the terminology a bit. You&#8217;ll notice the use of the word &#8216;attachment&#8217; in the code above. That&#8217;s how WordPress identifies the image associated with the post. Think of sending an email and attaching photos to it. The code finds the images attached to the post and selects the first one. It puts the information about that image in the $img variable we&#8217;ll use later.</p>
<p>It is important to note that this only works for attached photos because that is what WordPress it set up to handle. That means that if you host your photos elsewhere and just link to them &#8211; it&#8217;s not going to work. You have to actually upload them into WordPress using the media uploader.</p>
<h3>Deciding Where To Put The Thumbnail Code</h3>
<p>Since I want the thumbnails to show up on the main page of the site in the list of recent posts down the content section, I need to edit the index.php that displays the content. Your site may use the_content() but in this example the site is using the_excerpt(). It doesn&#8217;t really matter, so long as this stuff goes inside the loop but before the spot you want to show your photo.</p>
<p><code>&lt;div class=&quot;thecontent&quot;&gt;<br />
&lt;?php the_excerpt(); ?&gt;<br />
&lt;span&gt;&lt;a href=&quot;&lt;?php the_permalink() ?&gt;&quot; rel=&quot;bookmark&quot; title=&quot;&lt;?php the_title(); ?&gt;&quot; class=&quot;readon&quot;&gt;Read the rest of '&lt;?php the_title(); ?&gt;'&lt;/a&gt;&lt;/span&gt;<br />
&lt;/div&gt; &lt;!-- end thecontent --&gt;<br />
</code></p>
<p>I&#8217;m going to add the bit of code right above the call to the_excerpt() because that&#8217;s easiest at this point.</p>
<p><code><span style="font-weight:bold; color:red;">&lt;div class=&quot;thecontent&quot;&gt;<br />
&lt;!-- get the thumbnail --&gt;<br /></span><br />
&lt;?php<br />
// Get images attached to the post<br />
$img = null;<br />
$args = array(<br />
'post_type' =&gt; 'attachment',<br />
'post_mime_type' =&gt; 'image',<br />
'numberposts' =&gt; -1,<br />
'order' =&gt; 'ASC',<br />
'post_status' =&gt; null,<br />
'post_parent' =&gt; $post-&gt;ID<br />
);<br />
$attachments = get_posts($args);<br />
if ($attachments) {<br />
foreach ($attachments as $attachment) {<br />
$img = wp_get_attachment_thumb_url( $attachment-&gt;ID );<br />
break;<br />
} ?&gt;<br />
&lt;!-- Display the image in here --&gt;<br />
&lt;?php }<br />
?&gt;<br /><span style="font-weight:bold; color:red;"><br />
&lt;!-- end get the thumbnail --&gt;<br />
&lt;?php the_excerpt(); ?&gt;<br /></span><br />
</code></p>
<h3>Display the Thumbnails on the Main Page</h3>
<p>Now the code is actually in the area it should be, but it&#8217;s still not going to show anything until we put something in place of the &#8216;&lt;!&#8211; Display the image in here &#8211;&gt;&#8217; placeholder. What the code HAS done is created the $img variable we can call. So let&#8217;s get that working by putting in some code that will call the image.</p>
<p><code>&lt;div class=&quot;thecontent&quot;&gt;<br />
&lt;!-- get the thumbnail --&gt;<br />
&lt;?php<br />
//Get images attached to the post<br />
$img = null;<br />
$args = array(<br />
'post_type' =&gt; 'attachment',<br />
'post_mime_type' =&gt; 'image',<br />
'numberposts' =&gt; -1,<br />
'order' =&gt; 'ASC',<br />
'post_status' =&gt; null,<br />
'post_parent' =&gt; $post-&gt;ID<br />
);<br />
$attachments = get_posts($args);<br />
if ($attachments) {<br />
foreach ($attachments as $attachment) {<br />
$img = wp_get_attachment_thumb_url( $attachment-&gt;ID );<br />
break;<br />
} ?&gt;<br /><span style="font-weight:bold; color:red;"><br />
&lt;!-- ***** THE ACTUAL IMAGE ***** --&gt;<br />
&lt;span class=&quot;the-thumbnail&quot;&gt;<br />
&nbsp;&nbsp;&lt;a href=&quot;&lt;?php the_permalink(); ?&gt;&quot;&gt;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&lt;img src=&quot;&lt;?php echo $img; ?&gt;&quot; /&gt;<br />
&nbsp;&nbsp;&lt;/a&gt;<br />
&lt;/span&gt;<br />
&lt;!-- ***** END THE ACTUAL IMAGE ***** --&gt;<br /></span><br />
&lt;?php }<br />
?&gt;<br />
&lt;!-- end get the thumbnail --&gt;<br />
&lt;?php the_excerpt(); ?&gt;<br />
</code></p>
<p>What the above code has done is take the placeholder and replace it with a call to the image.</p>
<p>Then since this is for a front page thumbnail, we want people to go to the main article so we create a link around the image that points to the article.</p>
<p>Finally, for CSS styling I wrapped it in a span called the-thumbnail (you can wrap it in something other than a span, name the class anything you like, and style it any which way you can think of).</p>
<h3>But What If&#8230; There&#8217;s No Image?</h3>
<p>But wait&#8230; what if my client forgets to add an image to a post? That one article will look strange on the main page without an image when most of the others have one.</p>
<p>I want to create a fail-safe for dealing with an instance where she might forget to put in a photo for the post. What to do first is create some kind of dummy image (maybe just a large square with the site logo / branding or whatever you want). Upload that image somewhere.</p>
<p><code>&lt;!-- ***** THE ACTUAL IMAGE ***** --&gt;<br />
&nbsp;<br />
&lt;!-- # if post has an image # --&gt;<br />
&lt;span class=&quot;the-thumbnail&quot;&gt;<br />
&nbsp;&nbsp;&lt;a href=&quot;&lt;?php the_permalink(); ?&gt;&quot;&gt;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&lt;img src=&quot;&lt;?php echo $img; ?&gt;&quot; /&gt;<br />
&nbsp;&nbsp;&lt;/a&gt;<br />
&lt;/span&gt;<br />
&lt;!-- # END if post has an image # --&gt;<br />
<span style="font-weight:bold; color:red;"><br />
&lt;!-- # if post doesn't have an image --&gt;<br />
&lt;?php  } else { ?&gt;<br />
&lt;span class=&quot;the-thumbnail&quot;&gt;<br />
  &lt;a href=&quot;&lt;?php the_permalink(); ?&gt;&quot;&gt;<br />
    &lt;img src=&quot;http://thedomain.com/fallback-thumb.jpg&quot; /&gt;<br />
  &lt;/a&gt;<br />
&lt;/span&gt;<br />
&lt;!-- # END if post doesn't have an image --&gt;<br /></span><br />
&lt;!-- ***** END THE ACTUAL IMAGE ***** --&gt;</code></p>
<p>The most important line in that new section is &lt;?php  } else { ?&gt; &#8212; that tells it to do something if there is no photo.</p>
<p>You&#8217;ll see that you can just as easily change the url of the image to be any image location you upload the fall-back image to.</p>
<h3>Putting It All Together</h3>
<p>So here&#8217;s what we came up with after that. I&#8217;ll highlight the sections of my template code so you can see where I put it inside the template. Remember, your index page may not use the_excerpt() &#8211; it may use the_content(). That&#8217;s perfectly ok so long as:</p>
<p>1. You put the code that generates the thumbnail somewhere inside the loop &#8211; the loop beginning looks like this: <code>&lt;?php if (have_posts()) : while (have_posts()) : the_post(); ?&gt;</code><br />
2. You put the image display code where you want it to be.</p>
<p>So here&#8217;s the final code I used on my clients site:</p>
<p><code><span style="font-weight:bold; color:red;">&lt;div class=&quot;thecontent&quot;&gt;<br /></span><br />
&lt;!-- get the thumbnail --&gt;<br />
&lt;?php<br />
//Get images attached to the post<br />
$img = null;<br />
$args = array(<br />
'post_type' =&gt; 'attachment',<br />
'post_mime_type' =&gt; 'image',<br />
'numberposts' =&gt; -1,<br />
'order' =&gt; 'ASC',<br />
'post_status' =&gt; null,<br />
'post_parent' =&gt; $post-&gt;ID<br />
);<br />
$attachments = get_posts($args);<br />
if ($attachments) {<br />
foreach ($attachments as $attachment) {<br />
$img = wp_get_attachment_thumb_url( $attachment-&gt;ID );<br />
break;<br />
} ?&gt;<br />
&lt;!-- ***** THE ACTUAL IMAGE ***** --&gt;<br />
&nbsp;<br />
&lt;!-- # if post has an image # --&gt;<br />
&lt;span class=&quot;the-thumbnail&quot;&gt;<br />
&nbsp;&nbsp;&lt;a href=&quot;&lt;?php the_permalink(); ?&gt;&quot;&gt;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&lt;img src=&quot;&lt;?php echo $img; ?&gt;&quot; /&gt;<br />
&nbsp;&nbsp;&lt;/a&gt;<br />
&lt;/span&gt;<br />
&lt;!-- # END if post has an image # --&gt;<br />
&nbsp;<br />
&lt;!-- # if post doesn't have an image --&gt;<br />
&lt;?php  } else { ?&gt;<br />
&lt;span class=&quot;the-thumbnail&quot;&gt;<br />
  &lt;a href=&quot;&lt;?php the_permalink(); ?&gt;&quot;&gt;<br />
    &lt;img src=&quot;http://thedomain.com/fallback-thumb.jpg&quot; /&gt;<br />
  &lt;/a&gt;<br />
&lt;/span&gt;<br />
&lt;!-- # END if post doesn't have an image --&gt;<br />
&nbsp;<br />
&lt;!-- ***** END THE ACTUAL IMAGE ***** --&gt;<br />
&lt;?php }<br />
?&gt;<br />
&lt;!-- end get the thumbnail --&gt;<br /><span style="font-weight:bold; color:red;"><br />
&lt;?php the_excerpt(); ?&gt;</span></code></p>
<p>Oh, and remember &#8212; if you don&#8217;t like the size your thumbnails are coming out as &#8212; change it in Settings -> Media.</p>
<p>I hope you found that useful <img src='http://blog.websitestyle.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' />  </p>
<p>~Nicole</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.websitestyle.com/index.php/2009/08/21/automatic-post-thumbnails-without-plugins/feed/</wfw:commentRss>
		<slash:comments>11</slash:comments>
		</item>
		<item>
		<title>Do Product Reviews Kill Business?</title>
		<link>http://blog.websitestyle.com/index.php/2009/03/19/are-product-reviews-bad-business/</link>
		<comments>http://blog.websitestyle.com/index.php/2009/03/19/are-product-reviews-bad-business/#comments</comments>
		<pubDate>Fri, 20 Mar 2009 00:49:02 +0000</pubDate>
		<dc:creator>Nicole</dc:creator>
				<category><![CDATA[Blogging]]></category>
		<category><![CDATA[Layout]]></category>
		<category><![CDATA[Usability]]></category>
		<category><![CDATA[adding reviews]]></category>
		<category><![CDATA[business]]></category>
		<category><![CDATA[ratings]]></category>
		<category><![CDATA[Reviews]]></category>

		<guid isPermaLink="false">http://blog.websitestyle.com/?p=380</guid>
		<description><![CDATA[Have you ever questioned the sanity of adding user reviews to your business website? Is this dangerous, will they kill your business? Let's talk about it.]]></description>
			<content:encoded><![CDATA[<p>I recently designed a site for a relative who was skeptical about adding the option of user reviews into the site. Her concern was simple and a common one traditional business owners think about. To paraphrase, her response was something like this:</p>
<blockquote><p>Her: What if they said something negative? People won&#8217;t buy if someone comments in a negative way, and people who like something aren&#8217;t going to bother to come post comments, only angry people do that.</p>
<p>Me: Of course implementing something like this opens the door for negative comments, but also positive reviews. Most people look online for reviews before a major purchase these days.</p>
<p>Her: I don&#8217;t. If I don&#8217;t, lots of people don&#8217;t. Lots of people don&#8217;t even use the Internet.</p>
<p>Me: That&#8217;s true, but you&#8217;re starting an Internet business &#8211; your target market has become people who DO use the Internet to look up information on businesses.</p>
<p>Her: Well then I&#8217;ll just market it offline and I definitely do not want comments on there.</p></blockquote>
<p>Right then, so, she doesn&#8217;t have comments. We went back and forth on it for a while, but the overall issue was not one of just simple difference, but of significant business perspective differences. She thinks in terms of the brick-and-mortar business even when creating an online business, and I think of the online perspective almost exclusively. In my opinion, she&#8217;s thinking like a relic and she thinks I&#8217;m an insane evangelist to believe in the web so much. Ah, the joys of family <img src='http://blog.websitestyle.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<p>I happened across a set of slides on SlideShare that I&#8217;m going to email to her, just for fun &#8211; even though the argument has passed.</p>
<div style="text-align:center" id="__ss_832334"><a style="font:14px Helvetica,Arial,Sans-serif;display:block;margin:12px 0 3px 0;text-decoration:underline;" href="http://www.slideshare.net/MolecularInc/your-users-trust-each-other-not-you-why-and-how-to-implement-ratings-and-reviews-presentation?type=powerpoint" title="Your Users Trust Each Other, Not You: Why and How to Implement Ratings and Reviews">Your Users Trust Each Other, Not You: Why and How to Implement Ratings and Reviews</a><object style="margin:0px" width="425" height="355"><param name="movie" value="http://static.slideshare.net/swf/ssplayer2.swf?doc=ratingsreviews-1228830418934651-8&#038;stripped_title=your-users-trust-each-other-not-you-why-and-how-to-implement-ratings-and-reviews-presentation" /><param name="allowFullScreen" value="true"/><param name="allowScriptAccess" value="always"/><embed src="http://static.slideshare.net/swf/ssplayer2.swf?doc=ratingsreviews-1228830418934651-8&#038;stripped_title=your-users-trust-each-other-not-you-why-and-how-to-implement-ratings-and-reviews-presentation" type="application/x-shockwave-flash" allowscriptaccess="always" allowfullscreen="true" width="425" height="355"></embed></object>
<div style="font-size:11px;font-family:tahoma,arial;height:26px;padding-top:2px;">View more <a style="text-decoration:underline;" href="http://www.slideshare.net/">presentations</a> from <a style="text-decoration:underline;" href="http://www.slideshare.net/MolecularInc">Molecular Inc</a>.</div>
</div>
<p>If you know anyone who thinks the same way&#8230; maybe you might have better results from your argument if you share this with them early on <img src='http://blog.websitestyle.com/wp-includes/images/smilies/icon_wink.gif' alt=';)' class='wp-smiley' /> </p>
<p>Where do you stand on this argument?</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.websitestyle.com/index.php/2009/03/19/are-product-reviews-bad-business/feed/</wfw:commentRss>
		<slash:comments>5</slash:comments>
		</item>
		<item>
		<title>Photoshop How To Resize Animated Gifs</title>
		<link>http://blog.websitestyle.com/index.php/2009/03/15/ps-resizing-gifs/</link>
		<comments>http://blog.websitestyle.com/index.php/2009/03/15/ps-resizing-gifs/#comments</comments>
		<pubDate>Sun, 15 Mar 2009 23:26:56 +0000</pubDate>
		<dc:creator>Nicole</dc:creator>
				<category><![CDATA[Accessibility]]></category>
		<category><![CDATA[Design]]></category>
		<category><![CDATA[Layout]]></category>
		<category><![CDATA[animated]]></category>
		<category><![CDATA[animation]]></category>
		<category><![CDATA[gif]]></category>
		<category><![CDATA[gifs]]></category>
		<category><![CDATA[images]]></category>
		<category><![CDATA[photoshop]]></category>
		<category><![CDATA[shrink]]></category>

		<guid isPermaLink="false">http://blog.websitestyle.com/?p=360</guid>
		<description><![CDATA[If you've ever wondered how to resize an animated gif using Photoshop and not having the original graphic files for the gif ... read how to do it.]]></description>
			<content:encoded><![CDATA[<p>I hate animated gifs. I really really do. For a million accessibility reasons. But I also love HostGator. They&#8217;re an awesome web host, and I use them for my other websites and will be moving the files for this blog onto my hosting over there soon so they can have a happier home.</p>
<p>In any event, I wanted to promote a special they have just for WordPress users and put the ad for that in my blog sidebar. Unfortunately, none of the graphics for the special were of a size to fit neatly into my sidebar, and they moved too fast (timed around 2-3 seconds before the text change). Thankfully, I was able to find a compromise between what I want in keeping my site accessible, and what I had as options from the premade HostGator advertising images for the WordPress special.</p>
<p>I decided that I could not possibly be the only person to have this problem, so here&#8217;s how I managed it.</p>
<h3>The Problem</h3>
<p>Since I avoid animated gifs like the plague normally, but was limited to being able to use HostGator images only, I needed to find an easy solution that did not involve me having the files they used to make it. I needed to be able to resize the animated gif to fit in my sidebar better, and while I was at it, I wanted to see if it was possible to slow down the animation speed to be more accessible.</p>
<h3>The Solution</h3>
<p>I started off doing it the easy way. The image had two views only where text was different, so I took a screenshot of each version of the graphic as it changed text, and cropped them down to just the ad image. I put both in Photoshop as two separate layers on a project, and followed these instructions on <a href="http://rdhacker.blogspot.com/2009/01/create-animated-gifs-using-photoshop.html" target="_blank"> how to resize animated gifs</a> from there. Voila! I have a resized gif that now changes in 5 second intervals instead.</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.websitestyle.com/index.php/2009/03/15/ps-resizing-gifs/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>The New Client &#8211; Age 5</title>
		<link>http://blog.websitestyle.com/index.php/2008/03/14/the-new-client-age-5/</link>
		<comments>http://blog.websitestyle.com/index.php/2008/03/14/the-new-client-age-5/#comments</comments>
		<pubDate>Fri, 14 Mar 2008 16:13:27 +0000</pubDate>
		<dc:creator>Nicole</dc:creator>
				<category><![CDATA[Code]]></category>
		<category><![CDATA[Design]]></category>
		<category><![CDATA[Layout]]></category>
		<category><![CDATA[Tech News]]></category>
		<category><![CDATA[]]></category>
		<category><![CDATA[children]]></category>
		<category><![CDATA[development]]></category>
		<category><![CDATA[kids]]></category>
		<category><![CDATA[new generation]]></category>
		<category><![CDATA[new tech]]></category>
		<category><![CDATA[next generation]]></category>
		<category><![CDATA[tech development]]></category>
		<category><![CDATA[technology]]></category>

		<guid isPermaLink="false">http://blog.websitestyle.com/index.php/2008/03/14/the-new-client-age-5/</guid>
		<description><![CDATA[<img src="http://img372.imageshack.us/img372/7835/975839418b31286b45dpb9.jpg" alt="Child seated in front of a computer." title="Child seated in front of a computer." />
<p class="photo-attrib"><a href="http://www.flickr.com/photos/tanyaryno/">Photographer.</a></p>

The next generation is alive and well. They are blogging, emailing, carrying mobile phones, text messaging, listening on iPods, networking and chatting with friends through social apps and messenger programs, and playing complex massive multi-player games online. 

<strong>They are about 5 years old.

They are your target customer if you are in new technology development.
</strong>]]></description>
			<content:encoded><![CDATA[<p><img src="http://img372.imageshack.us/img372/7835/975839418b31286b45dpb9.jpg" alt="Child seated in front of a computer." title="Child seated in front of a computer." /></p>
<p class="photo-attrib"><a href="http://www.flickr.com/photos/tanyaryno/">Photographer.</a></p>
<p>The next generation is alive and well. They are blogging, emailing, carrying mobile phones, text messaging, listening on iPods, networking and chatting with friends through social apps and messenger programs, and playing complex massive multi-player games online. </p>
<p><strong>They are about 5 years old.</p>
<p>They are your target customer if you are in new technology development.<br />
</strong><br />
While there are some out there who still balk at the idea of focusing advertising and development toward kids &#8211; they need a refresher class in basic business. Solidifying brand recognition is a lengthy process, and if kids grow up using something, they will continue to use it as adults.</p>
<p>More than that obvious statement of focusing on the next generation now&#8230; the question on the minds of people who prospect ideas in new development is more tricky. What will these kids expect as adults? Or more specifically&#8230; what will we do NOW to affect what their expectation becomes later?</p>
<p>Observation of the new generation client starts now. As the people who create new technology, we need to know what functionality appeals from the start.</p>
<p>Here are a few of my observations, developed from watching my own kids as well as their friends:</p>
<dl>
<dt>Computers are for gaming and internet access.</dt>
<dd>As long as the computer has a browser installed, and whatever computer games they play accessible &#8211; that&#8217;s all they need. Kids expect to be able to do everything, aside from gaming, through their browser. The sheer idea of having to install a program to do something else is, literally, enough to make them giggle. <span class="h">Developers, that means that if you aren&#8217;t building web applications, or working on the types of software that make these things possible&#8230; start now.</span></dd>
<dt>Massive multi-player gaming will continue to grow by leaps and bounds.</dt>
<dd>My 8 year old has been playing WoW for the last year, and I recently posed the idea of buying her a game that doesn&#8217;t have other people connected. That got a blank confused stare from her. Her hesitant response was something akin to &#8216;Are they fixing it soon?&#8217; Make a mental note of that&#8230; if you can&#8217;t currently connect to people, they assume it&#8217;s broken and needs fixing. Kids are fine with family/friend gaming on with Wii or Playstation etc&#8230; but the idea of having no ability to play with someone else? Get real. <span class="h">Developers: Listen in on that one &#8211; kids expect to be socially connected through technology. Period.</span></dd>
<dt>Operating system doesn&#8217;t matter.</dt>
<dd>Again, the use of a computer has changed. As long as it can play their games and connect them using a browser &#8211; that&#8217;s all they need. My 5 year old son has been using a Ubuntu Linux laptop since he was 3 and can use both that and a Windows computer very proficiently. My 8 year old daughter can use both of those, plus a Mac. <span class="h">Developers: All operating systems have an equal chance in the market with this generation.</span></dd>
<dt>Browsers matter alot.</dt>
<dd>I have been conducting a mini experiment on my 5 year old sons use of browsers over the last year or so. On the Windows computer I installed Opera, Firefox, Safari (for Win), and IE. The same for the Linux one (without Safari and using multiple-IE&#8217;s to have IE on there). On each browser I set up the same bookmark quick links to get to his favorite sites. He eventually tried them all, and I would occasionally watch how he interacted with them. Occasionally a site would pop up saying it needed a particular plugin &#8211; this response ticked him off. His typical response was to either change the page immediately to something &#8216;not broken&#8217; or close the browser and open a different one. If I watch him now &#8211; I can tell you this: On Windows, he uses Firefox. On Linux, he uses Opera (likely because a few Firefox plugins don&#8217;t have a version for Linux). However &#8211; he can, and has, used them all. The defining criteria in how he uses them is simple: If stuff breaks or errors often when he uses it, he stops using it. Common sense I think. <span class="h">Developers: If you make plugins, make them for all operating systems. If you make websites or web apps &#8211; use common cross-os supporting plugins to ensure they work.</span></dd>
<dt>Web apps for chat and email.</dt>
<dd>My daughter will sometimes chat with relatives and friends using various networks &#8211; but she never uses an installed chat program even though we have them. Again, it&#8217;s about using the browser for it. She uses Meebo.com because she logs into them all at once and can talk to everyone in the same screen WHILE she&#8217;s in another tab doing something else. For email, she has a Gmail account which she uses through the browser only &#8211; big surprise. Downloaded email is ridiculous to kids when they have gigs of space to keep their email online and get it anywhere. <span class="h">Developers: Keep improving online apps for communication &#8211; they&#8217;re gold.</span></dd>
<dt>Wireless everywhere.</dt>
<dd>We vacationed in a cabin at a state park &#8211; my daughter checked email via wireless and played WoW on a laptop, my son played his web games. We went to the coast and stayed in a condo with no wireless and no internet in the condo lobby, they complained like the biggest junkies in withdrawal and wanted to go home the entire week. For my sanity, we&#8217;re never going there again. <span class="h">Developers: More and better wireless devices and connectivity. Businesses: Please God have wireless.</span></dd>
<dt>Mobile is King.</dt>
<dd>I doubt I even have to explain this one &#8211; but anyone who has been living under a rock needs to get out and go walk around some kids so that you can see the rapid clicking on phones. Texting will probably become an Olympic speed sport. Taking video and pictures with a phone is the new artistry. Schools are giving in to having cell phones in class for emergencies as long as they are &#8216;off&#8217; &#8211; but I doubt they stay that way. I&#8217;d take a guess that when my daughter was in kindergarten about 4 of the kids in a class of 20 or so had cell phones with them. That number has grown each year as she moves up in grades. <span class="h">Developers: Make everything you can do with your web applications in a browser doable via a cell phone or handheld browser. The world is mobile &#8211; develop for it.</span></dd>
<dt>Movies on the Computer.</dt>
<dd>If the TV&#8217;s in the house are being used, it&#8217;s pretty normal for either of my kids to grab a DVD, head to their respective computers, and pop it in. Bringing a way to play DVD&#8217;s on long trips is just as important as having a way for EACH of them to watch their own thing in the van on a drive. Someone got wise to that since I&#8217;ve seen more and more family vans with multiple independent DVD drop-down screens for watching 2 things at once. But where I REALLY think this is going to continue to grow is with being able to &#8216;rent and watch&#8217; movies from the computer. Netflix.com is getting there with the ability to rent and watch on the computer &#8211; but it&#8217;s not a perfect system because it requires Windows. Beyond that&#8230; I don&#8217;t think it&#8217;s enough. I think the next generation of kids is going to grow up wanting to be able to watch a movie using any device that can connect &#8211; and that means it has to be device and OS independent&#8230; AKA: through a browser. <span class="h">Developers: This is the age of YouTube folks &#8211; work on perfecting being able to watch movies through the browser.</span></dd>
<dt>No Desktop Gadgets.</dt>
<dd>In fact, this goes for all things that auto-load on startup. This may surprise some of the folks who are hard at work creating all sorts of new gadgets for the desktop &#8211; but most kids I&#8217;ve watched use a computer shut them off. Why? I&#8217;ve asked and heard: &#8216;They make the computer slow.&#8217; and &#8216;I don&#8217;t use them.&#8217; and &#8216;I keep accidentally clicking on them.&#8217; On Windows Vista, with the little default gadget bar &#8211; my daughter set it to not load at all. Why? They make the computer slow when she plays WoW &#8211; in fact, everything that loads on startup that&#8217;s not-essential is turned off. Again, as I pointed out before, kids use the computer to play games and use a browser. Why would kids want desktop widgets slowing the computer down when they have a Google homepage that has them, or Netvibes or Pageflakes? <span class="h">Developers: Work on improving portals that provide gadgets/widgets instead of something that is a glorified link on the desktop that takes up processing speed.</span></dd>
<dt>Kids Are Speed Demons.</dt>
<dd>They have even less patience for using websites and web apps than the average adult &#8211; which means it&#8217;s practically non-existent. If you make a website for kids &#8211; it had better be fast loading and processing. They will tolerate a slow loading site for their very favorite characters only, because the reward is significant. But if you aren&#8217;t Disney.com &#8211; you can&#8217;t afford to have a site as slow as they do. Keep in mind, this is what kids want now. These kids will grow up and still want it on an adult oriented site &#8211; learn how to speed up everything. <span class="h">Developers: Minify all your code. Don&#8217;t use tables for layout &#8211; they load slower. Optimize images to death. Reuse images. Don&#8217;t have music or movies play on startup &#8211; kids know how to push the play button and they will.</dd>
<dt>Kids Love Bright Centered Minimalism.</dt>
<dd>Adults tend to prefer monochromatic minimalism &#8211; kids like bright color. No big surprise there. But if you watch kids use a computer, you&#8217;ll notice that alot of times they tend to have tunnel vision and just look at the center of the page (though plenty of adults too also, I see it much more in kids whereas many adults start at the top left corner). Develop with that in mind. Take a look at PBSKids.com and you&#8217;ll see someone who has successfully done that. The design is minimal in content, yet colorful and very much center screen. Another element of that is that kids work extremely well with image representations. You ever seen a kid use a iPhone? It&#8217;s enough to make you dizzy! They combined the already amazing finger dexterity of kids (we&#8217;ve seen this for years with game controllers) and added picture representations and a minimalistic design. <span class="h">Developers: Take out the junk on your sites and apps on devices. Minimize. Use picture representations (but don&#8217;t forget to make it accessible!). Add TONS of bright color.</span></dd>
<dt>Free is No Longer an Option.</dt>
<dd>Kids nowadays are growing up with a million free to use web apps, games, research sites, etc.. Something being FREE is no longer a surprise &#8211; it&#8217;s expected. If something isn&#8217;t free, they find something that is. If you don&#8217;t think they can &#8211; just ask a kid to find you a website on a topic, and most often they&#8217;ll have Google loaded up faster than you can blink sorting through search results (btw &#8211; Google is centered, minimal, and often has a changing logo kids like). <span class="h">Business Developers: Find ways to use the &#8216;free&#8217; business model (often supplemented with advertising or a premium service) or you will find yourself out in the cold with this generation.</span></dd>
<dt>Tech Savvy Input.</dt>
<dd>If people thought my generation was tech oriented &#8211; this one is VERY technologically savvy and can sniff out bugs and errors with their eyes shut. More than that &#8211; they EXPECT to be able to report bugs so they can be immediately fixed. My daughter knows how to report broken websites in Firefox, to report errors in the browser, and (even though I don&#8217;t) she knows how to file bug reports with the companies that run the games she plays. The flip side of that user input is that she also EXPECTS that those bug reports are easy to do, will be immediately appreciated and resolved. <span class="h">Developers: Prepare yourself for a whole generation that&#8217;s growing up on open-source, user driven technology. Plan ahead and get yourself ready with a bug reporting system, and a plan to implement fixes regularly.</dd>
</dl>
<p><strong>In Total: Instant Gratification.</strong></p>
<p>The current breed of technology developers mostly come from my generation &#8211; in which we were/are considered spoiled and selfish in our desire for things faster/better &#8230; the &#8216;I want it NOW&#8217; generation. Because our generation went out and made technology to solve our need for speed &#8211; the new generation is even more focused on immediately being able to access what they want. That&#8217;s the technology they are growing up on.</p>
<p>Plan for it.</p>
<p>~Nicole</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.websitestyle.com/index.php/2008/03/14/the-new-client-age-5/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
		<item>
		<title>A New Day in Design</title>
		<link>http://blog.websitestyle.com/index.php/2008/03/11/a-new-day-in-design/</link>
		<comments>http://blog.websitestyle.com/index.php/2008/03/11/a-new-day-in-design/#comments</comments>
		<pubDate>Tue, 11 Mar 2008 06:35:33 +0000</pubDate>
		<dc:creator>Nicole</dc:creator>
				<category><![CDATA[Design]]></category>
		<category><![CDATA[Layout]]></category>
		<category><![CDATA[Tech News]]></category>
		<category><![CDATA[blog]]></category>
		<category><![CDATA[change]]></category>
		<category><![CDATA[new]]></category>
		<category><![CDATA[theme]]></category>
		<category><![CDATA[update]]></category>

		<guid isPermaLink="false">http://blog.websitestyle.com/index.php/2008/03/11/a-new-day-in-design/</guid>
		<description><![CDATA[<img src="http://img363.imageshack.us/img363/1456/941451312b5e98413b3wh5.jpg" alt="Sunrise by snappED_up." title="Sunrise by snappED_up." /><p class="photo-attrib"><a href="http://www.flickr.com/photos/snapped_up/">Photographer.</a></p>

Today is a new day in design for Beyond Caffeine. I am finally moving on from the old 'Cleaker' theme that has run this site for a good while now. I need something fresh and clean, and I found what I was looking for in a new theme called 'Amazing Grace' by <a href="http://www.prelovac.com/vladimir/">Vladimir Prelovac</a>. Amazing Grace is now the default theme for the blog.]]></description>
			<content:encoded><![CDATA[<p><img src="http://img363.imageshack.us/img363/1456/941451312b5e98413b3wh5.jpg" alt="Sunrise by snappED_up." title="Sunrise by snappED_up." />
<p class="photo-attrib"><a href="http://www.flickr.com/photos/snapped_up/">Photographer.</a></p>
<p>Today is a new day in design for Beyond Caffeine. I am finally moving on from the old &#8216;Cleaker&#8217; theme that has run this site for a good while now. I need something fresh and clean, and I found what I was looking for in a new theme called &#8216;Amazing Grace&#8217; by <a href="http://www.prelovac.com/vladimir/">Vladimir Prelovac</a>. Amazing Grace is now the default theme for the blog.</p>
<p>I was really drawn to the colors of the theme, as well as the design. The colors are (for the most part) from a soothing palette and I am quite happy with it. It has a lovely spot in the top right corner that is used purely to showcase photos I have found. They serve no practical purpose, but are very lovely and reflect the tone of the site. The photo that is shown is chosen at random, so hit &#8216;reload&#8217; a few times, or click on the <a href="http://www.sxc.hu/browse.phtml?f=lightboxes&amp;lid=145934">photo credits link</a> to see all the photos in the list.</p>
<p>If you are not seeing the new theme, you may have a cookie set for a different theme on this site. You can view the theme by navigating over to the sidebar where you will see a link to the available site themes. This theme switcher is active on ALL the themes I use on this site (and will continue to be there in the foreseeable future). You can easily switch between the new theme or go back to using Cleaker if you would like.</p>
<p>As a side note, in future, if you see any theme that is flagged &#8216;dev&#8217; in the theme switcher &#8211; be warned. That means it is currently something I&#8217;m tinkering around with to make work for my site &#8211; expect it to be quirky.</p>
<p>I hope you enjoy the new theme as much as I am, and remember that you can always use the theme switcher if you don&#8217;t like it.</p>
<p>~Nicole</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.websitestyle.com/index.php/2008/03/11/a-new-day-in-design/feed/</wfw:commentRss>
		<slash:comments>9</slash:comments>
		</item>
		<item>
		<title>Website Style &#8211; Restyled</title>
		<link>http://blog.websitestyle.com/index.php/2007/11/01/website-style-restyled/</link>
		<comments>http://blog.websitestyle.com/index.php/2007/11/01/website-style-restyled/#comments</comments>
		<pubDate>Thu, 01 Nov 2007 15:33:59 +0000</pubDate>
		<dc:creator>Nicole</dc:creator>
				<category><![CDATA[Code]]></category>
		<category><![CDATA[Design]]></category>
		<category><![CDATA[Layout]]></category>
		<category><![CDATA[Tech News]]></category>
		<category><![CDATA[Wordpress]]></category>

		<guid isPermaLink="false">http://blog.websitestyle.com/index.php/2007/11/01/website-style-restyled/</guid>
		<description><![CDATA[After months of tossing around ideas on how I wanted to redesign my main site, WebsiteStyle.com, I finally came up with what I&#8217;m calling Version 1.0 of the redesign. It was not intended to take quite so long, but ah well. Not only was it done in my sparse free time between client work, I [...]]]></description>
			<content:encoded><![CDATA[<p>After months of tossing around ideas on how I wanted to redesign my main site, <a href="http://www.websitestyle.com">WebsiteStyle.com</a>, I finally came up with what I&#8217;m calling Version 1.0 of the redesign.</p>
<p>It was not intended to take quite so long, but ah well. Not only was it done in my sparse free time between client work, I had a few other personal things come up that took me out of commission for a bit (a death in the family, a major case of the flu I&#8217;m still getting over, lots of school stuff with the kids, etc..). In the end, I think it came out good for a first version of a re-design.</p>
<p>Part of the problem of designing for yourself, as a designer, is that it&#8217;s never perfect enough, and I have the feeling that this will be a case of always feeling the need to tweak and adjust and modify <em>ad infinitum</em>.</p>
<p>The old main site looked like this for the last couple of years:<br />
<a href="http://img148.imageshack.us/img148/671/oldindexlgvl0.gif" title="View full size screenshot."><br />
<img src="http://img148.imageshack.us/img148/1764/oldindexaf7.gif" alt="The old version of the Website Style main site." /></a></p>
<p>The new version is much more reflective of my likes in color and design:</p>
<p><a href="http://img476.imageshack.us/img476/8623/newindexih4.gif" title="View full size screenshot."><img src="http://img476.imageshack.us/img476/8329/newindexsmnr3.gif" alt="The new version of the Website Style main site." /></a></p>
<p>I&#8217;d say it came out to be a pretty major overhaul of the design. </p>
<p>Granted, it wasn&#8217;t without issues, which is why I&#8217;m calling it Version 1.0 of the new design. A few things glitched at the last minute, like the jQuery effects suddenly not working (I haven&#8217;t tried yet to see exactly what caused this &#8211; whether it was a new version change or if I just added a typo somewhere.), and having some lovely issues with Google reading my sitemap/robots files (or not reading them for that matter) so that my the 5-6 Page rank is suddenly coming up &#8216;not available&#8217;. </p>
<p>On a design scale, it&#8217;s going to need an alternate color version and I realize that. Not everyone is a fan of dark colors like I am (even if all my testing tools say I used enough contrast to make it readable). It&#8217;s a priority on my to-do list for the next version. In fact, in an ideal world I&#8217;d like to offer several swappable design themes that are entirely different. That should be easy enough considering that the new site design is one I converted to a WordPress theme. Yes, that does mean that I&#8217;m using WordPress as a content management system on my main site now. I figured that since I&#8217;ve been suggesting WordPress as a CMS for my clients, I might as well &#8216;practice what I preach&#8217; so to speak.</p>
<p>In the end, this is what it has consisted of, and been built with, on a technical level:</p>
<ul>
<li>Photoshop for the design.</li>
<li>Plain text hand-coding to XHTML.</li>
<li>Converting the XHTML to a custom WordPress theme.</li>
<li>Custom coding for <a href="http://blog.websitestyle.com/index.php/2007/09/14/wordpress-how-to-show-child-pages-only/">child pages on WordPress</a>.</li>
<li><a href="http://rawlinson.us/blog/articles/feedlist-plugin/">FeedList plugin</a> for secondary content links from this blog.</li>
<li><a href="http://dancameron.org/wordpress/wordpress-plugins/search-everything-wordpress-plugin">SearchEverything plugin</a> for full search &#8211; it uses lots of WP pages.</li>
<li><a href="http://green-beast.com/blog/?page_id=136">Contact form plugin</a> from Green Beast with custom CSS mods.</li>
<li><a href="http://wordpress.org/extend/plugins/stats/">WordPress.com stats plugin</a> for .. well, stats.</li>
<li><a href="http://www.arnebrachhold.de/projects/wordpress-plugins/google-xml-sitemaps-generator/">Google XML Sitemap Generator plugin</a>.</li>
<li><a href="http://www.4mj.it/slimbox-wordpress-plugin/">Slimbox with Mootools for WP</a> &#8211; Deactivated as a plugin and just pulling files from the plugin directory &#8211; it&#8217;s a long story.</li>
<li><a href="http://www.mikeindustries.com/sifr">sIFR</a> for special font headings.</li>
<li><a href="http://jquery.com/">jQuery</a> for effects &#8211; still needs tweaking.</li>
</ul>
<p>For now, that&#8217;s what&#8217;s been involved in the CMS&#8217;ification of WordPress for this design. There is quite alot still on the agenda, and I&#8217;ll document as I go how I continue to evolve the site &#8211; just in case anyone aside from me finds it as fun and interesting.</p>
<p>~Nicole</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.websitestyle.com/index.php/2007/11/01/website-style-restyled/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>13 Eyecatching WordPress Header Designs</title>
		<link>http://blog.websitestyle.com/index.php/2007/09/27/13-eyecatching-wordpress-header-designs/</link>
		<comments>http://blog.websitestyle.com/index.php/2007/09/27/13-eyecatching-wordpress-header-designs/#comments</comments>
		<pubDate>Thu, 27 Sep 2007 17:49:17 +0000</pubDate>
		<dc:creator>Nicole</dc:creator>
				<category><![CDATA[Blogging]]></category>
		<category><![CDATA[Color]]></category>
		<category><![CDATA[Design]]></category>
		<category><![CDATA[Layout]]></category>
		<category><![CDATA[Wordpress]]></category>

		<guid isPermaLink="false">http://blog.websitestyle.com/index.php/2007/09/27/13-eyecatching-wordpress-header-designs/</guid>
		<description><![CDATA[( Note: If you read the article, it will give the massive amount of images time to load for you. Unless I&#8217;m really boring the life out of you, in which case, please feel free to scroll down. ) So I was browsing around looking at WordPress themes (again) and I decided to conduct an [...]]]></description>
			<content:encoded><![CDATA[<p><strong>( Note: If you read the article, it will give the massive amount of images time to load for you. Unless I&#8217;m really boring the life out of you, in which case, please feel free to scroll down. )</strong></p>
<p>So I was browsing around looking at WordPress themes (again) and I decided to conduct an experiment on my &#8216;reaction&#8217; to the themes. I ended up collecting a list the 13 most eye-catching, reaction causing (good and bad), non-traditional theme headers I saw yesterday.</p>
<p>Consider this &#8216;inspiration&#8217; for the non-advertising specialist. Or just use the images as ideas of what you could possibly do with your own site. As a web designer I&#8217;m often expected to know what kind of images and text are best for marketing and advertising etc.. Well, I don&#8217;t know about you, but my knowledge of that is fairly limited. That&#8217;s what advertising and marketing people are for. I know people who work in advertising &#8211; they practically have an encyclopedia of &quot;what images cause what reactions in people&quot; and &quot;what works get people to do certain things&quot; and probably lots more I&#8217;m unaware of.</p>
<p>However, even with my limited knowledge, I think most people have heard about the &#8216;above the fold&#8217; importance. That need to grab people and make them at least move their eyes around and possibly stay a bit longer. Attention getting top areas of your site. Something that makes the speed-browser in all of us slow down. All the screen-shots are above the fold for me &#8211; only what I could see immediately. For reference, I&#8217;m on a wide screen monitor with high resolution, but I also have 7 Firefox toolbars (don&#8217;t ask) taking up space at the top.</p>
<p>I look at theme houses (sites that are mega-lists of themes) ALOT, and I realize there are actually a couple of stages you have to go through to get someone to actually look at your theme:</p>
<p>1. The first is that you have to get them to take notice of your design from a little screenshot.<br />
2. Part two is to get them to click that all-important &#8216;demo&#8217; link so they look closer at it.<br />
3. Part three is getting them not to hit the back button because they hate what is above the fold on site. </p>
<p>If you can keep them there a few seconds, you might actually get them to like the entire theme and consider downloading it.</p>
<p>So, back to the experiment.</p>
<p>I decided to write down what I thought about as I was browsing. I wanted to see which ones got the most reaction out of me based on the header section. Obviously the themes I&#8217;m going to show you got me to click on the little thumbnail, but I&#8217;m going to share my first impression of some of the themes I looked at yesterday.</p>
<p>Now, hopefully by the time you&#8217;ve gotten here, all the images have loaded. So have fun, and feel free to try out the demo links so you can see if your &#8216;up close&#8217; reaction was anything like mine.</p>
<p><strong>Disclaimer: </strong>I am not advocating these themes as great themes. In fact, I don&#8217;t like most of them as entire themes. Some are actually just plain broken beyond the header. These are just examples of eye-catching header designs, nothing more.</p>
<p><strong>Odd Note: </strong>Some of these themes actually ended up having the same author. This was not intended, I merely bookmarked the designs that got the most reaction and then when I was writing this up I discovered some had the same designer.</p>
<h3>#1 &#8211; Forbidden Forest</h3>
<p><img src="http://img228.imageshack.us/img228/51/forbiddenforestsmlm8.gif" alt="Forbidden Forest screenshot." /></p>
<p><strong>Thoughts:</strong> &quot;Wow. That&#8217;s really cool looking.&quot;<br />
<strong>Links:</strong> <a href="http://www.wpthemesfree.com/view.php?theme_id=1015">Theme page.</a> <a href="http://test.wpthemesfree.com/?preview_theme=forbidden-forest-10">Online Demo</a>. <a href="http://www.makequick.com/">Designer</a>.</p>
<h3>#2 &#8211; A Good Catch</h3>
<p><img src="http://img231.imageshack.us/img231/2466/agoodcatchsmba7.gif" alt="A good catch screenshot." /></p>
<p><strong>Thoughts:</strong> &quot;People just LOVE to use animals to make people go &#8216;awww.&#8217; Cute sketches.&quot;<br />
<strong>Links:</strong> <a href="http://www.wpthemesfree.com/view.php?theme_id=979">Theme page.</a> <a href="http://test.wpthemesfree.com/?preview_theme=a-good-catch">Demo page</a>. <a href="http://www.zazzafooky.com/blog/">Designer</a>.</p>
<h3>#3 &#8211; Cherry Swirls</h3>
<p><img src="http://img162.imageshack.us/img162/8598/cherryswirlssmkp7.gif" alt="Cherry Swirls screenshot." /></p>
<p><strong>Thoughs:</strong>&quot;Whew, that&#8217;s alot of color. I like the sweeping curves. Cutesy and summery but that bright yellow is evil.&quot;<br />
<strong>Links:</strong> <a href="http://wp-themes.erikgyepes.com/2007/08/06/cherry-swirls/">Theme page</a>. <a href="http://wp-themes.erikgyepes.com/download-manager.php?id=33">Demo page</a>.</p>
<h3>#4 &#8211; City Slicker</h3>
<p><img src="http://img515.imageshack.us/img515/6719/cityslickeraa4.gif" alt="City Slicker screenshot." /></p>
<p><strong>Thoughts:</strong> &quot;Now that&#8217;s neat. I like all the graphics at the top&#8230; but why so teeny?&quot;<br />
<strong>Links:</strong> <a href="http://www.wpthemesfree.com/view.php?theme_id=805">Theme page</a>. <a href="http://www.wpthemesfree.com/test.php?theme_id=805">Demo page</a>. <a href="http://grabatheme.com/">Designer</a>.</p>
<h3>#5 &#8211; Desktop</h3>
<p><img src="http://img258.imageshack.us/img258/4873/desktopeg0.gif" alt="Desktop screenshot." /></p>
<p><strong>Thoughts:</strong> &quot;I love the collage headers. Always makes me stop and look at all the individual stuff.&quot;<br />
<strong>Links:</strong> <a href="http://www.wpthemesfree.com/view.php?theme_id=677">Theme page</a>. <a href="http://test.wpthemesfree.com/?preview_theme=desktop-10">Demo page</a>. <a href="http://news-blog.in/">Designer</a>.</p>
<h3>#6 &#8211; Dreaming Off</h3>
<p><img src="http://img249.imageshack.us/img249/6669/dreamingoffnv7.gif" alt="Dreaming Off screenshot." /></p>
<p><strong>Thoughts:</strong> &quot;Lots of color, but I like how it is hanging on the sides like that. It makes a major impression above the fold, but its actually not the &#8216;header&#8217; that does it but everything that&#8217;s around it.<br />
<strong>Links:</strong> <a href="http://wp-themes.erikgyepes.com/2007/07/26/dreaming-off/">Theme page</a>. <a href="http://wp-themes.erikgyepes.com/download-manager.php?id=23">Demo page</a>.</p>
<h3>#7 &#8211; Fleur</h3>
<p><img src="http://img146.imageshack.us/img146/3076/fleurxw9.gif" alt="Fleur screenshot." /></p>
<p><strong>Thoughts:</strong> &quot;Gorgeous. Finally, the only one I like the whole page of. Very minimal.&quot;<br />
<strong>Links:</strong> <a href="http://www.grabatheme.com/grab/fleur/">Theme page</a>. <a href="http://www.grabatheme.com/fleur/index.html">Demo page</a>.</p>
<h3>#8 &#8211; Kukufall</h3>
<p><img src="http://img400.imageshack.us/img400/6578/kukufalldw2.gif" alt="Kukufall screenshot." /><br />
<strong>Thoughts:</strong> &quot;Interesting illustration. Really grabs your attention.&quot;<br />
<strong>Links:</strong> <a href="http://grabatheme.com/kukufall/index.html">Demo page</a>. <a href="http://kukuthebird.blogspot.com/">Designer</a>. </p>
<h3>#9 &#8211; Lover Paradise</h3>
<p><img src="http://img408.imageshack.us/img408/1300/loverparadiserh0.gif" alt="Lover paradise screenshot." /><br />
<strong>Thoughts:</strong> &quot; Color! Wow. Lots of it. Very neat looking.&quot;<br />
<strong>Links:</strong> <a href="http://wp-themes.erikgyepes.com/2007/07/27/lover-paradise/">Theme page</a>. <a href="http://wp-themes.erikgyepes.com/download-manager.php?id=25">Demo page</a>.</p>
<h3>#10 &#8211; Orange Kitten</h3>
<p><img src="http://img166.imageshack.us/img166/3412/orangekittentb4.gif" alt="Orange kitten screenshot." /><br />
<strong>Thoughts:</strong> &quot;Awww. Again, we know about the animals, but now we also have the protective reaction and it looks like the darn kitten is about to fall off.&quot;<br />
<strong>Links:</strong> <a href="http://www.wpthemesfree.com/view.php?theme_id=775">Theme page</a>. <a href="http://www.wpthemesfree.com/test.php?theme_id=775">Demo page</a>. <a href="http://www.ongate.eu/">Designer.</a></p>
<h3>#11 &#8211; My Gerbil</h3>
<p><img src="http://img442.imageshack.us/img442/2373/mygerbilrl1.gif" alt="My gerbil screenshot." /><br />
<strong>Thoughts:</strong> &quot;Eep! What a way to freak out your viewers and get their attention. I literally leaned back when this loaded up. Just the thing&#8230; a rodent with beady eyes staring at you!&quot;<br />
<strong>Links:</strong> <a href="http://www.wpthemesfree.com/view.php?theme_id=845">Theme page</a>. <a href="http://www.wpthemesfree.com/test.php?theme_id=845">Demo page</a>. <a href="http://www.ongate.eu/">Designer</a>.</p>
<h3>#12 &#8211; She&#8217;s Got Style</h3>
<p><img src="http://img443.imageshack.us/img443/3928/shesgotstyleju8.gif" alt="She's got style screenshot." /><br />
<strong>Thoughts:</strong> &quot;Ooooh&#8230; I love that drawing! I wish I could illustrate like that.. I need to find that artist.&quot;<br />
<strong>Links:</strong> <a href="http://www.grabatheme.com/grab/shes-got-style/">Theme page</a>. <a href="http://www.grabatheme.com/shes-got-style/index.html">Demo page</a>. <a href="http://blogskins.com/me/sweet-melancholy">Designer</a>.<br />
(Note: There is a separate artist of the graphic. She has a deviantART page here <a href="http://vikifloki.deviantart.com/">http://vikifloki.deviantart.com/</a> and has a great looking gallery of other illustrations.)</p>
<h3>#13 &#8211; Summer Holidays</h3>
<p><img src="http://img407.imageshack.us/img407/9941/summerholidaysqw7.gif" alt="Summer holidays screenshot." /></p>
<p><strong>Thoughts:</strong> &quot;When all else fails&#8230; just put the site on the wrong side and scribble all over it.&quot;<br />
<strong>Links:</strong> <a href="http://www.grabatheme.com/grab/summer-holidays/">Theme page</a>. <a href="http://grabatheme.com/summerholidays/index.html">Demo page</a>. <a href="http://www.blogskins.com/me/paperlove">Designer</a>.</p>
<p>That&#8217;s all folks! Hope you were inspired, and at least not too creeped out by the rodent <img src='http://blog.websitestyle.com/wp-includes/images/smilies/icon_biggrin.gif' alt=':D' class='wp-smiley' /> </p>
<p>~Nicole</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.websitestyle.com/index.php/2007/09/27/13-eyecatching-wordpress-header-designs/feed/</wfw:commentRss>
		<slash:comments>74</slash:comments>
		</item>
		<item>
		<title>Speed Up Your Site &#8211; Faster Gradients</title>
		<link>http://blog.websitestyle.com/index.php/2007/09/23/speed-up-your-site-faster-gradients/</link>
		<comments>http://blog.websitestyle.com/index.php/2007/09/23/speed-up-your-site-faster-gradients/#comments</comments>
		<pubDate>Sun, 23 Sep 2007 19:10:03 +0000</pubDate>
		<dc:creator>Nicole</dc:creator>
				<category><![CDATA[Design]]></category>
		<category><![CDATA[Layout]]></category>
		<category><![CDATA[Usability]]></category>

		<guid isPermaLink="false">http://blog.websitestyle.com/index.php/2007/09/23/speed-up-your-site-faster-gradients/</guid>
		<description><![CDATA[This is a &#8216;Back to Basics&#8217; sort of article, talking about techniques that we know are good to use, but sometimes forget to implement. I browse the web on a very fast connection. One might assume that sites load super fast for me. Not really. The amount of times I hit a website that takes [...]]]></description>
			<content:encoded><![CDATA[<p>This is a &#8216;Back to Basics&#8217; sort of article, talking about techniques that we know are good to use, but sometimes forget to implement.</p>
<p>I browse the web on a very fast connection. One might assume that sites load super fast for me. Not really. The amount of times I hit a website that takes forever to load is just ridiculous considering my connection. When you think about the fact that the majority of the world is still on dial-up, I can&#8217;t imagine how slow it is for them. (I remember my dial-up days, with much happiness that they are gone.)</p>
<p>One of the biggest culprits I see is the slice-n-dice. You know what I mean, the people who design in Photoshop, and make big chunky slices. Don&#8217;t get me wrong, people who are true graphic artists can create beautiful sites, but sometimes those fall in the category I call &#8216;the prettiest site you never saw.&#8217; Why? Cause it took too long to load and your visitor moved on.</p>
<p>I&#8217;m not entirely certain why gradient/logo headers are such a culprit for extra loading time, but they seem to be. I work in web, so within 1 minute on your site I&#8217;ve probably checked the code already. It&#8217;s just a habit. Anyway, I find ALOT of people who have these big header images that are built of a linear gradient background with a pretty title text. Usually the title text is some sort of unique font, with drop shadows and other stuff.</p>
<p>I see a couple of things happen a lot of the time. Either people just chunk everything in one graphic and save it like that, or they are too afraid of the crop tool to really slim down the gradient. Seriously folks, learn to be merciless with the crop tool, it&#8217;s not gonna bite you. Linear gradients are the easiest to crop and the most common on the web.</p>
<p>Let me give you a working example of something I&#8217;ve seen a million times.</p>
<p><img src="http://img232.imageshack.us/img232/3884/minilogotogetherpj0.jpg" alt="A gradient logo with non-standard font." /></p>
<p>That&#8217;s a sized down version of a 800px (wide) by 200px (high) site header. It has a unique font for the title, with drop shadow and a mild stroke effect. In original form that header is just tossed into the HTML as an image, and has 9.64k chunk of the loading time.</p>
<p>For this very simple header, there is no reason for it to take that much of the load time.</p>
<p>So then, I&#8217;ve seen people do the following as an alternative:</p>
<p>They decide to use CSS for the background and cut out the title and put it on top. So they get two images&#8230;</p>
<p>A gradient (1.22K) :</p>
<p><img src="http://img503.imageshack.us/img503/4848/biggradienthv8.jpg" alt="Big gradient." /></p>
<p>And the logo (5.63K) :</p>
<p><img src="http://img178.imageshack.us/img178/6782/colorlogowe7.jpg" alt="The logo with the background color." /></p>
<p>They use some HTML like:<br />
<code>&lt;div id=&quot;header&quot;&gt;<br />
&lt;h1&gt;&lt;img src=&quot;color-logo.jpg&quot; alt=&quot;Website Title.&quot; /&gt;&lt;/h1&gt;<br />
&lt;/div&gt;</code></p>
<p>And some CSS like:<br />
<code><br />
body {margin:0 auto; width:800px;}<br />
div#header {background: rgb(19,75,123) url(gradient-bg.jpg) top left repeat-x; height:200px; text-align:center;}<br />
div#header h1 {padding-top: 90px;}<br />
</code></p>
<p>Which works fine really, as long as:</p>
<p>a) You measure the distance from the top of the logo to the top of the gradient to know how far down the logo needs to be to match the gradient (in this case, note the 90px top padding) &#8230; and </p>
<p>b) You don&#8217;t mind reworking your title image if you ever change the background. To be honest, I&#8217;m a PNG fan, but in this case, using a PNG instead of a color JPG like this would actually create a title graphic double the size.</p>
<p>Okay, so, those two combined take up 6.85K, which is better. But here is where I get on people about not cropping the gradients enough. Why does it need to be that wide? It just repeats. We know this, you are repeating it to make it go the full 800px wide.. so why not make it smaller to start. I see this all the time, and I&#8217;m not entirely sure why.</p>
<p>Do not be afraid to crop, and crop some more. Wring every bit of load time out of those images as you can.</p>
<p>Keep the title image made, and then crop your gradient down to 1px on the repeating direction:</p>
<p><img src="http://img221.imageshack.us/img221/1545/minigradientnl6.jpg" alt="Thin gradient." /></p>
<p>If you have a gradient that repeats vertically instead of horizontally &#8211; make it 1px high and the full width. There is no reason for it to be any bigger.</p>
<p>So here&#8217;s comparison of the how they look in the browser (the top is the full image graphic, the second is the big gradient and separate image title, and the bottom one is the skinny gradient and the separate image title). Remember that this is a scaled down (for the article) version of the actual headers at 800x200px :</p>
<p><img src="http://img515.imageshack.us/img515/7241/all3nomarksih1.jpg" alt="All three together." /></p>
<p>For a loading time comparison:</p>
<p><img src="http://img210.imageshack.us/img210/1664/all3withmarksho8.jpg" alt="Loading time comparison." /></p>
<p>The difference from the 9.64K original all image to the 5.99K mini gradient and logo combo is a savings of 3.65K. Now that may not SEEM like alot, but it&#8217;s 1/3 the loading time of the original. If you could decrease all your instances of your gradient use by at least 1/3, wouldn&#8217;t it be worth the loading time savings?</p>
<p>So, in a nutshell, my parting words to you are: Crop and Crop Some More! </p>
<p>~Nicole</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.websitestyle.com/index.php/2007/09/23/speed-up-your-site-faster-gradients/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>New WordPress Themes</title>
		<link>http://blog.websitestyle.com/index.php/2007/09/12/new-wordpress-themes-3/</link>
		<comments>http://blog.websitestyle.com/index.php/2007/09/12/new-wordpress-themes-3/#comments</comments>
		<pubDate>Thu, 13 Sep 2007 03:26:23 +0000</pubDate>
		<dc:creator>Nicole</dc:creator>
				<category><![CDATA[Design]]></category>
		<category><![CDATA[Layout]]></category>
		<category><![CDATA[Templates]]></category>
		<category><![CDATA[Wordpress]]></category>

		<guid isPermaLink="false">http://blog.websitestyle.com/index.php/2007/09/12/new-wordpress-themes-3/</guid>
		<description><![CDATA[There are two new WordPress themes that I like online today, each one definitely in a different category. Todays winner in the minimal category, sporting a very Web2.0 color scheme, goes to Prisa from NofieIman.com. The only thing lacking in this one is an online demo link &#8211; otherwise it&#8217;s a great looking screenshot. The [...]]]></description>
			<content:encoded><![CDATA[<p>There are two new WordPress themes that I like online today, each one definitely in a different category.</p>
<p>Todays winner in the minimal category, sporting a very Web2.0 color scheme, goes to <a href="http://nofieiman.com/2007/09/prisa-wordpress-theme/">Prisa</a> from NofieIman.com.</p>
<p><img src="http://img507.imageshack.us/img507/3385/prisawordpressthemetq1.jpg" alt="Prisa WordPress theme screenshot." /></p>
<p>The only thing lacking in this one is an online demo link &#8211; otherwise it&#8217;s a great looking screenshot.</p>
<p>The second theme is my winner for the &#8216;nicest use of lime on a business looking blog I&#8217;ve seen in a while&#8217; category. It&#8217;s called <a href="http://www.romow.com/blog/3-column-wordpress-theme-greenwave/">Greenwave</a> (though it really looks lime to me) and is done by Romow.com. </p>
<p><img src="http://img483.imageshack.us/img483/7272/greenwavejv2.jpg" alt="Greenwave WordPress Theme Screenshot." /></p>
<p>Greenwave thankfully has a <a href="http://www.romow.com/demo/index.php?wptheme=GreenWave">demo</a> online for you to peek at too.</p>
<p>Try &#8216;em out!</p>
<p>~Nicole</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.websitestyle.com/index.php/2007/09/12/new-wordpress-themes-3/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>The Designer Perspective Remixed</title>
		<link>http://blog.websitestyle.com/index.php/2007/08/30/the-designer-perspective-remixed/</link>
		<comments>http://blog.websitestyle.com/index.php/2007/08/30/the-designer-perspective-remixed/#comments</comments>
		<pubDate>Thu, 30 Aug 2007 07:23:20 +0000</pubDate>
		<dc:creator>Nicole</dc:creator>
				<category><![CDATA[Color]]></category>
		<category><![CDATA[Design]]></category>
		<category><![CDATA[Layout]]></category>
		<category><![CDATA[Random Stuff]]></category>

		<guid isPermaLink="false">http://blog.websitestyle.com/index.php/2007/08/30/the-designer-perspective-remixed/</guid>
		<description><![CDATA[A couple of weeks ago I wrote about how I have no problem conceptualizing site designs for my clients, but when it comes to my own sites, I tend to let design take a backseat and just leave them functional. It&#8217;s kind of like the cook who cooks all day at work and when they [...]]]></description>
			<content:encoded><![CDATA[<p>A couple of weeks ago I wrote about how I have no problem conceptualizing site designs for my clients, but when it comes to my own sites, I tend to let design take a backseat and just leave them functional. It&#8217;s kind of like the cook who cooks all day at work and when they come home want to order takeout because they are sick of cooking. That&#8217;s pretty much the way it&#8217;s been with my personal websites for a while &#8211; &#8216;takeout&#8217; design.</p>
<p>Of course, the problem with that is that I do great designs for my clients and I realize that I&#8217;m not showcasing my abilities on my own business site. My current site doesn&#8217;t exactly tell a potential client that I am quite skilled with graphics, nor does it scream that I am decent with creating enhancements on a site with Javascript and DOM in a nice accessible way. It doesn&#8217;t even yell out loud that I&#8217;m strong with CMS and blogging software, nor does it give a great indication of my ability to use PHP since I never bothered to take my main site code out of SSI. This is what procrastination causes. Anyway, point being &#8211; I am trying to put together a nice &#8216;portfolio&#8217; site. Something that I actually really put some effort in and use all of my skills in some way.</p>
<p>So I had been talking to a artist who was going to take an outside point of view on my site and try to help me conceive an idea for it and design it for me. Well, a few weeks later and that plan has changed. Unfortunately, my artist and myself haven&#8217;t been able to find a &#8216;meet in the middle&#8217; point. My design preference is very minimal, where she is the kind of artist who wants to cover any white space because its &#8216;being wasted.&#8217; So&#8230; it just wasn&#8217;t going to work to have her conceive of a design that I could use.</p>
<p>We did, however, realize quickly that she&#8217;s great at coming up with unique ideas for -other- designs, just not for my site. So we&#8217;ll implement some of those in the future. However, in all that creativity she had, I still was lacking a good design. So, I did the only thing I could do &#8211; I cracked open my Adobe Photoshop CS3 and started tinkering with ideas. And tinkering. And scrapping. And tinkering, and tossing. But then! Suddenly, I had the beginnings of an idea.</p>
<p>I knew already that I wanted my colors to stay at least similar to what they were already. In an ideal world, I would keep the exact colors and just use them in different ratios. When you change a site design entirely, it&#8217;s rather important for the site to still have some elements that are recognizable so your viewers don&#8217;t think they mistyped the url. With that said, I just also didn&#8217;t want to suddenly take my rich earthy toned website and make it look like a cotton-candy explosion.</p>
<p>My current color scheme involves the use of a deep burgundy, a rich chocolate color, some soft beige, a little white, and hints of gray. My design now uses the white the most, but right after that is burgundy, beige, then the chocolate and gray. I wasn&#8217;t terribly happy with that proportion, because I like the richness of the browns and really wanted to work with them more. I used one particular brown color for my skiplink menu at the top and really love it &#8211; so I decided I wanted to try with that color as a background.</p>
<p>Another thing I have been thinking about is my title font and little flower image in my current design.</p>
<p><img src="http://img206.imageshack.us/img206/6739/wsoldrm6.png" alt="Little flower and title of old design." /></p>
<p>To put it simply &#8211; I hate them. I have for a while, but I&#8217;ve just been too busy (or maybe too uninspired?) to change it.</p>
<p>I decided that since I hate them so much, I would focus on creating a title and flower design that I really loved. It took me a while to work that out, but I finally nailed the font I loved in Trajan Pro. It&#8217;s exactly what I was looking for in a traditional style print. So I&#8217;m going along, tinkering with brushes, and I used this great flower brush that really fit what I was going for and took the scale completely to another level from the old little ugly flower.</p>
<p>So I played with the title and flower, and played some more. Suddenly I realized what I was doing. I was having a design &#8216;moment&#8217; and really creating what I like personally. I decorate at home in heavy traditional styles. Not modern traditional, but traditional as in antique, heavy, inlaid, carved (preferably all of the above) sort of furniture. I like dark, rich colors, with a heavy impact. This new design is definitely heavy. But you know what? It&#8217;s perfect for me for it to look like that. It is a personal site and if it&#8217;s going to reflect who I am, then it needs to be a heavy design because I&#8217;m just not a light and airy person. So&#8230; I decided to step out of my minimalism hat for a bit and went for the rich and dark sort of look.</p>
<p>If you want a sneak peek, here&#8217;s a look at that header, flower, and rectangle loving design remixed:</p>
<p><img src="http://img214.imageshack.us/img214/1355/newheaderwh6.jpg" alt="New site header." /></p>
<p>Before anyone starts thinking.. ew.. &#8216;I hate dark designs!&#8217; let me say first that I don&#8217;t. I love dark designs. It&#8217;s also my website, and I want it to reflect what I like. However! Since I am going to use this as a showcase of what I can do, I will be adding in an alternate (at least one) switchable style that is completely and totally different &#8211; when I figure it out, that is. I am thinking, currently, of a chocolate, white, and pink deconstructed sort of look, but I&#8217;m not entirely certain what the alternative style will end up being. The only thing I do know is that the alternative style will be as light as this design is dark.</p>
<p>I had some great success working on this design today. I&#8217;m not going to be implementing it tomorrow. I probably won&#8217;t even implement it this next month. The design needs finishing, a few details, and then&#8230; I&#8217;m going to re-write some content, re-organize some of the pages and how they are laid out, and then I have to take it from being a rather complex Photoshop design to a completely flexible website design. Once it&#8217;s actually coded &#8211; then I can start creating some enhancement effects with Javascript and toying around with adding nifty features.</p>
<p>So.. it&#8217;s been productive. I am glad I decided to attempt getting outside input on it, but in the end, I finally ended up figuring out what I wanted and deciding to simply design for me.</p>
<p>~Nicole</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.websitestyle.com/index.php/2007/08/30/the-designer-perspective-remixed/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

