<?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; Design</title>
	<atom:link href="http://blog.websitestyle.com/index.php/category/design/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>Site Review: Lou Riley Live</title>
		<link>http://blog.websitestyle.com/index.php/2009/07/18/site-review-lou-riley-live/</link>
		<comments>http://blog.websitestyle.com/index.php/2009/07/18/site-review-lou-riley-live/#comments</comments>
		<pubDate>Sun, 19 Jul 2009 01:36:42 +0000</pubDate>
		<dc:creator>Nicole</dc:creator>
				<category><![CDATA[Design]]></category>
		<category><![CDATA[Reviews]]></category>
		<category><![CDATA[lou riley live]]></category>
		<category><![CDATA[video blog]]></category>
		<category><![CDATA[weight loss]]></category>

		<guid isPermaLink="false">http://blog.websitestyle.com/?p=590</guid>
		<description><![CDATA[I was contacted by a friend on Facebook, Lou Riley ( FB ) and asked to review his blog called Lou Riley Live. The Site &#8211; Lou Riley Live The current website is a blog which serves as a living record of the weight loss journey Lou is undertaking. I asked Lou the typical pre-review [...]]]></description>
			<content:encoded><![CDATA[<p>I was contacted by a friend on Facebook, Lou Riley ( <a href="http://www.facebook.com/lou.riley">FB</a> ) and asked to review his blog called <a href="http://lourileylive.com/">Lou Riley Live</a>.</p>
<h3>The Site &#8211; Lou Riley Live</h3>
<p>The current website is a blog which serves as a living record of the <strong>weight loss journey</strong> Lou is undertaking.</p>
<p>I asked Lou the typical pre-review questions, and here are his answers about his blog:</p>
<p><strong>Q: What is your primary goal for this site?</strong><br />
A: My primary goal is to create a movement in the health and wellness industry based on my personal journey as captured on video.  So I guess I am building the &#8220;Lou Riley Live&#8221; brand.  I want to draw people into my story and have them subscribe to my blog.  Once I establish a &#8220;fan&#8221; base, I want to convert them into customers for the health and wellness product I am affiliated with. </p>
<p><strong>Q: What do you feel is the biggest weakness of the site at this point?</strong><br />
A:  Biggest weakness?  A lack of visitors.  I also need to improve the process for converting visitors to sales. So far in the videos, I haven&#8217;t sold anything.  I think that creating this &#8220;movement&#8221; will make selling easier as visitors will be able to connect with me and not a product.  I like the design, but I think some color adjustments can make it better.</p>
<p>Overall, it looks like the goal is going to be to <strong>solidify the Lou Riley brand</strong> and to bring in more <strong>new and repeat visitors</strong>. Once he&#8217;s got those things, the sales will start coming.</p>
<h3>Current State of Affairs</h3>
<p>Let&#8217;s take a peek at the current Lou Riley Live site:</p>
<div id="attachment_592" class="wp-caption alignleft" style="width: 155px"><a href="http://blog.websitestyle.com/wp-content/uploads/2009/07/home.jpg"><img src="http://blog.websitestyle.com/wp-content/uploads/2009/07/home-145x300.jpg" alt="Lou Riley Live - Home" title="Lou Riley Live - Home" width="145" height="300" class="size-medium wp-image-592" /></a><p class="wp-caption-text">Lou Riley Live - Home</p></div>
<p>Sometimes a long screenshot of a website can really tell the story at a glance, and I think we&#8217;re seeing that here as well. We&#8217;ve got a <strong>really big white space</strong> in the main content area that&#8217;s throwing things off balance, but there are quite a few other things as well.</p>
<h3>Let&#8217;s Talk Branding</h3>
<p>The very first thing we need to talk about is how to make the Lou Riley brand so integral to this site that there is no mistaking what this site is and who it&#8217;s by. To do that we need to take two initial steps:<br />
<strong><br />
1. Focus on the brand.<br />
2. Remove everything irrelevant.</strong></p>
<div id="attachment_595" class="wp-caption centered" style="width: 456px"><a href="http://blog.websitestyle.com/wp-content/uploads/2009/07/lou-riley-branding-old.gif"><img src="http://blog.websitestyle.com/wp-content/uploads/2009/07/lou-riley-branding-old.gif" alt="Old Branding." title="Old Branding." width="446" height="186" class="size-full aligncenter wp-image-595" /></a><p class="wp-caption-text">Old Branding.</p></div>
<p>Start building the brand from the very beginning. <strong>Put your name at the top</strong>, and I&#8217;d love to see <strong>a photo</strong> up there too, something to really push who you are.</p>
<p><strong>Be reachable</strong>. People may want to contact you &#8211; but more importantly, they want to know that they CAN if they want to.<br />
<div id="attachment_613" class="wp-caption alignleft" style="width: 366px"><img src="http://blog.websitestyle.com/wp-content/uploads/2009/07/add-contact-page.gif" alt="Add Contact Page." title="Add Contact Page." width="356" height="24" class="size-full wp-image-613" /><p class="wp-caption-text">Add Contact Page.</p></div></p>
<p>The second thing about branding, is emphasizing that this site is a video blog. People will go there to see videos. I see <strong>the pagination of the videos</strong> on the front page as a problem.</p>
<div id="attachment_597" class="wp-caption alignleft" style="width: 510px"><a href="http://blog.websitestyle.com/wp-content/uploads/2009/07/video-pagination-problem.gif"><img src="http://blog.websitestyle.com/wp-content/uploads/2009/07/video-pagination-problem.gif" alt="Video Pagination Problem" title="Video Pagination Problem" width="500" height="151" class="size-full wp-image-597" /></a><p class="wp-caption-text">Video Pagination Problem</p></div>
<p>The videos stop there, and if I want to scroll through them, I use the navigation there. I have <strong>no incentive to keep scrolling down</strong>. BUT there&#8217;s a lot of stuff in the sidebar further down that I won&#8217;t see by stopping there! We need to do that in a different way that doesn&#8217;t leave a large empty space in the content area.</p>
<h3>Removing The Excess</h3>
<p>Let&#8217;s just talk about what to take out.</p>
<p>Ditch the entire <strong>blogroll</strong> section for now.<br />
<div id="attachment_599" class="wp-caption alignleft" style="width: 510px"><a href="http://blog.websitestyle.com/wp-content/uploads/2009/07/remove-blogroll.gif"><img src="http://blog.websitestyle.com/wp-content/uploads/2009/07/remove-blogroll.gif" alt="Remove blogroll." title="Remove blogroll." width="500" height="164" class="size-full wp-image-599" /></a><p class="wp-caption-text">Remove blogroll.</p></div></p>
<p>Remove the <strong>login box</strong>. You&#8217;re the only writer on the blog &#8211; and as far as I can tell there&#8217;s no members-only material, so this is just taking up space for now. Bookmark the link to login and write posts, no one else really needs this.<br />
<div id="attachment_601" class="wp-caption alignleft" style="width: 241px"><a href="http://blog.websitestyle.com/wp-content/uploads/2009/07/remove-login.gif"><img src="http://blog.websitestyle.com/wp-content/uploads/2009/07/remove-login.gif" alt="Remove login." title="Remove login." width="231" height="132" class="size-full wp-image-601" /></a><p class="wp-caption-text">Remove login.</p></div></p>
<p>Take the <strong>Twitter out of your products</strong> &#8211; this should be in with your social bookmarking links.<br />
<div id="attachment_602" class="wp-caption alignleft" style="width: 233px"><a href="http://blog.websitestyle.com/wp-content/uploads/2009/07/remove-twitter.gif"><img src="http://blog.websitestyle.com/wp-content/uploads/2009/07/remove-twitter.gif" alt="Remove Twitter." title="Remove Twitter." width="223" height="220" class="size-full wp-image-602" /></a><p class="wp-caption-text">Remove Twitter.</p></div></p>
<p>We also want to <strong>remove the duplicates</strong>. I see that video with the veggies 3 times on the front page of the site. That makes people think there&#8217;s very little content &#8211; which isn&#8217;t true in your case. The recent videos in the sidebar should only show for internal pages (like when I&#8217;m on a single post page watching a single video) because then I don&#8217;t have to go back to the homepage to see what else you&#8217;ve done recently. The featured video should stick at the top, without repeating underneath itself on the homepage.<br />
<div id="attachment_604" class="wp-caption alignleft" style="width: 510px"><a href="http://blog.websitestyle.com/wp-content/uploads/2009/07/remove-duplicates.gif"><img src="http://blog.websitestyle.com/wp-content/uploads/2009/07/remove-duplicates.gif" alt="Remove duplicates." title="Remove duplicates." width="500" height="192" class="size-full wp-image-604" /></a><p class="wp-caption-text">Remove duplicates.</p></div></p>
<h3>Personal Product Recommendations</h3>
<p>Right now you have two major product selling sections on your site. One in a box like ad section and one in a vertical format down the sidebar.<br />
<div id="attachment_605" class="wp-caption alignleft" style="width: 273px"><a href="http://blog.websitestyle.com/wp-content/uploads/2009/07/drinking-ads.gif"><img src="http://blog.websitestyle.com/wp-content/uploads/2009/07/drinking-ads.gif" alt="Drink Ads." title="Drink Ads." width="263" height="545" class="size-full wp-image-605" /></a><p class="wp-caption-text">Drink Ads.</p></div></p>
<div id="attachment_606" class="wp-caption alignright" style="width: 246px"><a href="http://blog.websitestyle.com/wp-content/uploads/2009/07/nutrition-ads.gif"><img src="http://blog.websitestyle.com/wp-content/uploads/2009/07/nutrition-ads.gif" alt="Nutrition Ads." title="Nutrition Ads." width="236" height="235" class="size-full wp-image-606" /></a><p class="wp-caption-text">Nutrition Ads.</p></div>
<p>The nutrition ads are okay, they&#8217;re small and consolidated (once you remove Twitter you can add a 4th also). The drink ads are a bit of an issue though. They&#8217;re too separate, take up too much space, and have a big blank space to the right. Additionally, the first drink is the only one you can see doesn&#8217;t show up below the point where the videos stop and people quit scrolling.</p>
<p>I&#8217;d like to see you put those <strong>drink ads in a similar configuration</strong> to your nutrition ads.</p>
<p>Also &#8211; <strong>give us a reason to trust those products</strong>. Rename the sections to personalize it! Maybe instead of calling it &#8216;Sports Nutrition Products&#8217; you can call it &#8216;Stuff Lou Is Eating &#8211; Certified by Lou to Not Taste Like Powdery Health Food.&#8217;</p>
<p>Ok, so maybe you won&#8217;t go that far, but we&#8217;ll trust your products more if they&#8217;re personal recommendations. People who want to lose weight often try to copy a process that was successful for someone else. If you tell them <strong>what you recommend</strong> &#8211; they&#8217;ll trust it more (even if you&#8217;re not actually using it &#8211; although it&#8217;s best if you are).</p>
<h3>Build Your Fan Base</h3>
<p>One of the biggest parts of building a brand is getting people to recognize it through exposure. To do that, you need to <strong>build a following.</strong></p>
<div id="attachment_610" class="wp-caption alignright" style="width: 436px"><a href="http://blog.websitestyle.com/wp-content/uploads/2009/07/subscribe-connect.gif"><img src="http://blog.websitestyle.com/wp-content/uploads/2009/07/subscribe-connect.gif" alt="Subscribe &amp; Connect." title="Subscribe &amp; Connect." width="426" height="83" class="size-full wp-image-610" /></a><p class="wp-caption-text">Subscribe &#038; Connect.</p></div>
<p>Your <strong>social networking and subscription button</strong>s need to be way up at the top of your page so it&#8217;s always being pushed. And hey Lou &#8211; we connected on Facebook: You have no <strong>Facebook button</strong> anywhere on there!</p>
<p>One final note on subscriptions. I&#8217;m going to strongly suggest pushing email subscriptions to your blog via Feedburner. I would go with an <strong>email subscription textbox signup</strong> right in the sidebar. </p>
<p>The reason is &#8211; your audience isn&#8217;t specifically high-tech users and many people out there are still uncomfortable with feed readers. Email, now that is familiar to most people. Since your site is something that can reach out to many many different kinds of people &#8211; I would go with the most universally known way to get updates: email &#8211; and push that hard.</p>
<h3>Prominent Navigation</h3>
<p>I see that you&#8217;re <strong>using tags for navigation</strong> through your video posts. That&#8217;s fine &#8211; but they&#8217;re located too far down. We need to move stuff around on that sidebar to make sure that the primary site navigation is always located high enough that people don&#8217;t have to scroll to see it.</p>
<div id="attachment_611" class="wp-caption alignleft" style="width: 510px"><img src="http://blog.websitestyle.com/wp-content/uploads/2009/07/tag-navigation.gif" alt="Tag Navigation." title="Tag Navigation." width="500" height="492" class="size-full wp-image-611" /><p class="wp-caption-text">Tag Navigation.</p></div>
<p>Another note on tags &#8212; <strong>rename </strong>that section to not be called &#8216;tags.&#8217; I know they&#8217;re tags, you know they&#8217;re tags, but an inexperienced web user doesn&#8217;t know they&#8217;re tags. Doesn&#8217;t know what they are really. <strong>Make it dead simple</strong> for people, something like: &#8216;Topics of the Videos&#8217; and put a little text in there that says something like, &#8216;Click to see videos on this topic.&#8217;</p>
<h3>Improve The Look</h3>
<p>I really think your site could be better served by a different WordPress theme. I found one online called <a href="http://www.zoomstart.com/videographer-wordpress-theme/">Videographer</a> that I think you could tweak to really push your brand more. Simple is best, adding is easier than taking away. </p>
<p>The theme looks like this in its bare basics form:<br />
<div id="attachment_615" class="wp-caption alignleft" style="width: 206px"><a href="http://blog.websitestyle.com/wp-content/uploads/2009/07/a-different-layout.gif"><img src="http://blog.websitestyle.com/wp-content/uploads/2009/07/a-different-layout-196x300.gif" alt="Basic Videographer." title="Basic Videographer." width="196" height="300" class="size-medium wp-image-615" /></a><p class="wp-caption-text">Basic Videographer.</p></div></p>
<p>What I really like about this is the way the videos are organized to <strong>scroll down in a list</strong> that keeps the eye moving and the user scrolling. This allows your sidebar to grow a bit because there is still content in the main section.</p>
<p>The other reason I like this theme is because it is so <strong>minimal and open to tweaking</strong>.</p>
<h3>Playing With Changes</h3>
<p>Let me show you what I did in a bit of playing around with this new blank slate.</p>
<div id="attachment_616" class="wp-caption alignleft" style="width: 188px"><a href="http://blog.websitestyle.com/wp-content/uploads/2009/07/a-different-layout2.jpg"><img src="http://blog.websitestyle.com/wp-content/uploads/2009/07/a-different-layout2-178x300.jpg" alt="Lou Videographer." title="Lou Videographer." width="178" height="300" class="size-medium wp-image-616" /></a><p class="wp-caption-text">Lou Videographer.</p></div>
<p>I stole the picture for the header from Lou&#8217;s Facebook (great sketch image by the way), and threw it up on top. People like personality and <strong>a face to go with a name</strong>. Then the name, brand yourself by using a <strong>unique font</strong> and look for your name.</p>
<p>Don&#8217;t consider what I did in the header as a refined or complete &#8212; it&#8217;s more a sketch of what you <strong>could</strong> do.</p>
<p>I do think it&#8217;s important to <strong>add a tagline</strong> or quick summary of what this site is about in the header. Also, you&#8217;ll see that I&#8217;ve moved the <strong>social connect buttons</strong> up to the top header. This visually associates you with being reachable and real &#8211; that&#8217;s a good thing.</p>
<p>Now don&#8217;t get me wrong, I&#8217;m not saying the site needs to stay plain vanilla white and this minimal forever &#8212; add a fun background that doesn&#8217;t detract from the videos. Add flavor to it in small places, but even if you put out this design on without changing the background or colors: it would put more focus on what the site is about = You, and Your Journey.</p>
<p>However &#8211; if you&#8217;re really in love with your current theme: ditch the pagination so the page is filled with videos instead of broken down into little bits.</p>
<h3>Getting Visitors</h3>
<p>The site is doing pretty good on general tech tests. If you want to run your own on your site regularly to see how you are doing, check out <a href="http://www.websitegrader.com">Website Grader</a>. I think the biggest thing is going to be promotion.</p>
<p>Digg and bookmark your videos. Maybe write a bit more text about your videos so the search engines have more text to parse for relevance. Keep up the networking. Write some articles on what you suggest to position yourself as an expert and submit them to online article submission sites like Ezine Articles and GoArticles. Make sure your videos are uploaded onto every single video site in existence that will take them and work on building community within those sites. <strong>In other words &#8212; you&#8217;re doing good, just keep trying to get the word out.</strong></p>
<h3>Last Thoughts</h3>
<p>Lou&#8230; I love what you&#8217;re doing. I think you are a charismatic man on a mission, and a truly beautiful person for how strong you&#8217;re being through this journey of yours.</p>
<p>I think that many people out there will connect with you on so many levels. You could be a symbol of living hope to people who are struggling with the same problem, who have the same desires for a healthier life, and I sincerely hope you keep doing what you&#8217;re doing.</p>
<p>Heck, even if you never sell a dime worth of products &#8211; I hope you never stop giving the world the opportunity to share in your experiences.</p>
<p>I want you to always feel free to ask any technical web programming or design questions you may have, and I hope that you&#8217;ll come back by here from time to time and let us know how it&#8217;s going.</p>
<p>My best and most sincere wishes that you succeed in all ways.</p>
<p>~Nicole</p>
<h3>Interested in a Site Analysis?</h3>
<p>Would you like to have your site reviewed on Beyond Caffeine? <a href="http://blog.websitestyle.com/index.php/contact/">Drop me a line</a> and let me know all about it! Do you have a site that you think needs a redesign? Head over to <a href="http://www.websitestyle.com/">my business site</a> and get your free consultation.</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.websitestyle.com/index.php/2009/07/18/site-review-lou-riley-live/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
		<item>
		<title>Site Review: Nothing But Costumes</title>
		<link>http://blog.websitestyle.com/index.php/2009/07/07/site-review-nothing-but-costumes/</link>
		<comments>http://blog.websitestyle.com/index.php/2009/07/07/site-review-nothing-but-costumes/#comments</comments>
		<pubDate>Tue, 07 Jul 2009 21:25:35 +0000</pubDate>
		<dc:creator>Nicole</dc:creator>
				<category><![CDATA[Design]]></category>
		<category><![CDATA[Reviews]]></category>
		<category><![CDATA[costume]]></category>
		<category><![CDATA[costumes]]></category>
		<category><![CDATA[site review]]></category>

		<guid isPermaLink="false">http://blog.websitestyle.com/?p=545</guid>
		<description><![CDATA[UPDATED: I DO NOT RECOMMEND THIS COMPANY. Since posting this article there have been many reviews by people who have had problems with this company. Below is the original article. I was contacted by a friend on Facebook, Mark Rones ( FB ) and asked to review his online costume store called Nothing But Costumes. [...]]]></description>
			<content:encoded><![CDATA[<style type="font-weight:bold; font-size: larger; color:red">UPDATED: I DO NOT RECOMMEND THIS COMPANY. Since posting this article there have been many reviews by people who have had problems with this company. Below is the original article.</style>
<p>I was contacted by a friend on Facebook, Mark Rones ( <a rel="nofollow" href="http://www.facebook.com/mrones">FB</a> ) and asked to review his online costume store called <a href="http://www.nothingbutcostumes.com/">Nothing But Costumes</a>.</p>
<h3>The Site &#8211; Nothing But Costumes</h3>
<p>The current site is an online web store that sells a wide variety of costumes for all occasions.</p>
<p>I also asked Mark the same two typical pre-review questions, so that I could understand his business needs a bit.</p>
<p><strong>Q: What is your primary goal for this site?</strong><br />
A: We are looking for an office, so we eventually want to be a Brick and Mortar. There is always like a .05-1% visitor to sales ratio. So getting more customers AND a better sales ratio is important.</p>
<p><strong>Q: What do you feel is the biggest weakness of the site at this point?</strong><br />
A: NothingButCostumes.com Explodes in Sept-Oct and then falls off the cliff. I have thought about a face design yet my customers tell me how much they like the site.</p>
<p>So in a nutshell, we need to figure out how to <strong>get more visitors and improve sales conversion</strong> by looking at the existing problems with the site. Additionally, to offset the problem of lackluster sales for the rest of the non-Halloween time of year &#8211; we need to figure out how to <strong>make the site be more year-round</strong>.</p>
<h3>Current State of Affairs</h3>
<p>Let&#8217;s begin by taking a look at the current Nothing But Costumes (N.B.C.) store.</p>
<div id="attachment_547" class="wp-caption aligncenter" style="width: 214px"><a href="http://blog.websitestyle.com/wp-content/uploads/2009/07/homepage-before.gif"><img src="http://blog.websitestyle.com/wp-content/uploads/2009/07/homepage-before-204x300.gif" alt="Nothing But Costumes - Home" title="Nothing But Costumes - Home" width="204" height="300" class="size-medium wp-image-547" /></a><p class="wp-caption-text">N.B.C. - Home</p></div>
<p>While Mark mentioned the design as a minor note &#8211; <strong>I think the design is a HUGE problem</strong>. At first glance the site is <strong>overwhelming, cluttered, and unfinished</strong> looking.</p>
<p><strong>Image is important</strong>, and as a consumer I know I would be very hesitant to buy from a site that looks like it isn&#8217;t complete. Thoughts that would run through my head range from <em>&#8220;Is this a reflection of how they do business?&#8221;</em> to <em>&#8220;Am I safe entering my credit card information here?&#8221;</em></p>
<p><strong>Building visitor trust is essential</strong> when selling products online. They have to be willing to take a leap of faith that the site will keep their payment information safe, that they will actually get their product in the mail, and that the business will keep theit promise of providing it on time.</p>
<p>From a web design standpoint &#8211; <strong>this site isn&#8217;t finished</strong>, not by any stretch of the imagination. To that end, I&#8217;m not even going to address the visual design of this site because it doesn&#8217;t have one yet. I know this is a bit harsh, but I think an honest professional opinion is needed &#8211; if the customers are saying they like the design&#8230; frankly, they&#8217;re just trying to be nice.</p>
<p>I&#8217;m going to strongly suggest either heading over to Template Monster and buying a <a href="http://store.templatemonster.com/zencart-templates.php?aff=datasolutions">pre-made ZenCart template</a> or think about getting a custom design for this site <a href="http://websitestyle.com">from me</a> or anyone else.</p>
<p>That said, there&#8217;s plenty of functional aspects that can go wrong even with a great design &#8211; so I want to touch on several of those.</p>
<h3>Rebrand To Be Year-Round</h3>
<p>One of the elements that is a big problem for this site is the peak at Halloween time and lackluster site performance for the rest of the year.</p>
<p>First things first &#8211; <strong>remove the elements that scream Halloween</strong>.</p>
<div id="attachment_551" class="wp-caption alignleft" style="width: 506px"><a href="http://blog.websitestyle.com/wp-content/uploads/2009/07/halloween-elements-problem.gif"><img src="http://blog.websitestyle.com/wp-content/uploads/2009/07/halloween-elements-problem.gif" alt="Halloween Elements" title="Halloween Elements" width="496" height="257" class="size-full wp-image-551" /></a><p class="wp-caption-text">Halloween Elements</p></div>
<h3>Keeping Up With The News</h3>
<p>Perhaps it&#8217;s only because my daughter, her dad, and I are all planning to go to the midnight opening of the new Harry Potter movie, but I started wondering whether or not they have Harry Potter costumes. I&#8217;m sure Mark knows this, but for anyone who isn&#8217;t aware &#8211; going to a midnight <strong>movie opening in costume</strong> is very common.</p>
<div id="attachment_553" class="wp-caption aligncenter" style="width: 310px"><a href="http://blog.websitestyle.com/wp-content/uploads/2009/07/need-to-showcase-movies.gif"><img src="http://blog.websitestyle.com/wp-content/uploads/2009/07/need-to-showcase-movies.gif" alt="Showcase Trends" title="Showcase Trends" width="300" height="190" class="size-full wp-image-553" /></a><p class="wp-caption-text">Showcase Trends</p></div>
<p>Turns out, there they are, buried waaay far down on the list.  Look, see that? Transformers too! If you haven&#8217;t been to a movie theater recently, go to one. You don&#8217;t have to watch a movie if you don&#8217;t want to. <strong>Go look around inside a movie theater.</strong> See what posters are hanging up. That&#8217;s what ALL those movie-goers are seeing anytime they go to see a movie. It&#8217;s pre-selling, early branding, conditioning. I can promise you that Harry Potter posters have been hanging up for months at my theater and I&#8217;ve got a note on my desk reminding me to reserve midnight showing tickets. If you can, stay and check out a movie &#8211; watch the trailer previews. It&#8217;ll show you what will be soon hanging on the walls.</p>
<p><strong>Keep an eye on TV people also.</strong> Did you know that Miley Cyrus started filming a new movie this summer? She&#8217;s talking about it all over the place, including @mileycyrus on Twitter. That news is sparking an even bigger interest in what is associated with her name &#8212; Hannah Montana. NothingButCostumes has Hannah Montana costumes, and they&#8217;ll probably be extra popular this year.</p>
<p><strong>How about the news?</strong> Michael Jackson died recently. I&#8217;ll wager a guess there are quite a few people who will want to dress up as MJ for Halloween this year, but even more than that&#8230; some people may have wanted to get the costumes out of a nostalgic tendency. I&#8217;m not sure if the site sells those, but the idea is simple: <strong>Sales always spike after catastrophe and death. It&#8217;s the well known morbidity factor.</strong> Look at how the sales spiked for the Batman movies when Heath Ledger died.</p>
<p>The point I&#8217;m getting at is simple. If you know what&#8217;s happening now, just happened, and is happening soon &#8211; you can <strong>tailor the things showcased on your site</strong> to grab those hot buyers.</p>
<h3>Know Your Competition</h3>
<p>I headed over to Google and typed in the one keyword phrase that should bring in the most &#8216;ready-to-buy&#8217; visitors for this site: &#8220;<strong>buy costumes</strong>&#8221;</p>
<div id="attachment_560" class="wp-caption aligncenter" style="width: 208px"><a href="http://blog.websitestyle.com/wp-content/uploads/2009/07/buycostumes-com.gif"><img src="http://blog.websitestyle.com/wp-content/uploads/2009/07/buycostumes-com-198x300.gif" alt="The Competition" title="The Competition" width="198" height="300" class="size-medium wp-image-560" /></a><p class="wp-caption-text">The Competition</p></div>
<p>The very first site that popped up was BuyCostumes.com so I decided to <strong>check out the competition</strong>. That site is actually quite nice, although it does suffer from some clutter issues.</p>
<p>Since I just finished talking about keeping up with the news, I found it amusing that I landed on BuyCostumes.com and saw a showcase of all the hot new movies people might want costumes for front and center on the site.</p>
<div id="attachment_557" class="wp-caption aligncenter" style="width: 310px"><a href="http://blog.websitestyle.com/wp-content/uploads/2009/07/compare-movie-showcase.gif"><img src="http://blog.websitestyle.com/wp-content/uploads/2009/07/compare-movie-showcase.gif" alt="Movie showcase" title="Movie showcase" width="300" height="330" class="size-full wp-image-557" /></a><p class="wp-caption-text">Movie showcase</p></div>
<p><strong>Keep an eye on the competition.</strong> They may catch something before you do. If they do, see it, jump on it. Don&#8217;t let them have an advantage over you. How else does your business compete with them? <strong>With a strong brand people remember, trust, and recommend.</strong></p>
<h3>Rebrand to Be Memorable</h3>
<p>Every business wants their customers and visitors to remember their name. They want them to talk about how great their business is, and return to it later. Branding is very very important and developing a strong brand takes time, effort, and skill.</p>
<div id="attachment_562" class="wp-caption aligncenter" style="width: 259px"><a href="http://blog.websitestyle.com/wp-content/uploads/2009/07/compare-logo.gif"><img src="http://blog.websitestyle.com/wp-content/uploads/2009/07/compare-logo.gif" alt="Logo Comparison" title="Logo Comparison" width="249" height="159" class="size-full wp-image-562" /></a><p class="wp-caption-text">Logo Comparison</p></div>
<p>One thing to begin with is to <strong>have the primary site branding done professionally</strong>. The Nothing But Costumes site needs a stronger brand that has nothing to do with Halloween, and an image that can go on every single piece of marketing material it has.</p>
<h3>Keep The Focus</h3>
<p>On any business site, it is important to <strong>maintain the overall focus</strong> of that site. I see a couple of things on N.B.C. that I would suggest keeping out of any new design.</p>
<div id="attachment_564" class="wp-caption aligncenter" style="width: 510px"><a href="http://blog.websitestyle.com/wp-content/uploads/2009/07/horoscope-question.gif"><img src="http://blog.websitestyle.com/wp-content/uploads/2009/07/horoscope-question.gif" alt="Your fortune is.." title="Your fortune is.." width="500" height="332" class="size-full wp-image-564" /></a><p class="wp-caption-text">Your fortune is..</p></div>
<p>I have no idea why there is a daily horoscope front and center on this site. It needs to go. So does the animated rotation of costumes. If there are photos of costumes on the front of the site in the new look (which there should be) &#8211; the rotating carousel is unnecessary. </p>
<div id="attachment_565" class="wp-caption aligncenter" style="width: 510px"><a href="http://blog.websitestyle.com/wp-content/uploads/2009/07/offsite-links-removal.gif"><img src="http://blog.websitestyle.com/wp-content/uploads/2009/07/offsite-links-removal.gif" alt="Linking Out" title="Linking Out" width="500" height="456" class="size-full wp-image-565" /></a><p class="wp-caption-text">Linking Out</p></div>
<p>If a business store MUST link out to another site, it&#8217;s <strong>vital that offsite links open in a new window</strong> and are not given prominence over anything that is important to the business.</p>
<div id="attachment_569" class="wp-caption aligncenter" style="width: 435px"><a href="http://blog.websitestyle.com/wp-content/uploads/2009/07/specials-featured-problem.gif"><img src="http://blog.websitestyle.com/wp-content/uploads/2009/07/specials-featured-problem.gif" alt="Don&#039;t hide the gems" title="Don&#039;t hide the gems" width="425" height="342" class="size-full wp-image-569" /></a><p class="wp-caption-text">Don't hide the gems</p></div>
<p>Keep the <strong>focus on converting visitors to customers</strong>. People love <strong>specials</strong> and like to browse what&#8217;s &#8216;<strong>featured</strong>&#8216;. This should be prominent, because those things are a <strong>huge lure</strong> to buyers. They should be a big focus. From a marketing standpoint, those things should also be things that are currently very hot right now.</p>
<p>A minor note. On the sidebar there is &#8216;Other Stuff We Sell&#8217;. For a site that says &#8216;Nothing But Costumes&#8217; I think that&#8217;s going to have to go. It seems strange to go to a site that only sells costumes and find candle holder sets. The Mardi Gras masks? Can&#8217;t those just go in accessories &#8211; there are only 2 of them. I&#8217;m not sure why there are 2008 links there, but I don&#8217;t see those as necessary. Rarely does a shopper say.. hey, I want to go shop for something old. Just mix those in among all the rest and they&#8217;ll never know <img src='http://blog.websitestyle.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<h3>Don&#8217;t Overwhelm</h3>
<p>Online stores are usually a de-cluttering challenge. They have a lot to say, a lot to sell, and they want everyone to see it at once. For the visitor, however, with too much stuff crammed onto a page, their eye doesn&#8217;t know where to look.. so it goes everywhere. They&#8217;re overwhelmed. Watch someone using a store site they&#8217;ve never seen before.<strong> People need to be SHOWN where to look, and what to look at.</strong></p>
<p>When the site is redesigned &#8211; that ENTIRE list of things down the center needs to go. <strong>Hand select a few items</strong> that are REALLY strong and have great selling potential based on current trends, and put those on the front page.</p>
<p><strong>Break things into chunks </strong>for people. Pagination is where you break content apart on to separate pages that they move through using a numbering system. Any site that has 87 items on one page in the boys costume section needs pagination. Break that list up into no more than 12 items per page.</p>
<p><strong>The drop down menus are distracting and overwhelming</strong>. They need to stop being dropdowns. The same content is listed on the left, and they should link only to the primary pages not show each sub-page as well.</p>
<div id="attachment_573" class="wp-caption aligncenter" style="width: 53px"><a href="http://blog.websitestyle.com/wp-content/uploads/2009/07/categories-dropdown-problem.gif"><img src="http://blog.websitestyle.com/wp-content/uploads/2009/07/categories-dropdown-problem-43x300.gif" alt="Categories" title="Categories" width="43" height="300" class="size-medium wp-image-573" /></a><p class="wp-caption-text">Categories</p></div>
<p>If I mouse over categories, I get a list so long it makes the page scroll. If I mouse over Categories -> Licensed TV Movies &#8230; the list is twice as long as the categories list. That has become too huge to be manageable for a typical user.</p>
<p>I should be able to click on Categories at the top (no drop downs) and see a nice, neat, listing of the categories .. organized in the group I see on the left hand sidebar. I shouldn&#8217;t see a site-wide sitemap, which is currently the result.</p>
<h3>Build Trust &#8211; Fix Errors</h3>
<p>One of the easiest ways to make someone not comfortable buying on a website is to have lots of <strong>system errors popping up</strong> all over the place.</p>
<p>Keep the software updated and get help fixing it if needed.</p>
<div id="attachment_575" class="wp-caption aligncenter" style="width: 375px"><a href="http://blog.websitestyle.com/wp-content/uploads/2009/07/site-errors-problem.gif"><img src="http://blog.websitestyle.com/wp-content/uploads/2009/07/site-errors-problem.gif" alt="Site Errors" title="Site Errors" width="365" height="251" class="size-full wp-image-575" /></a><p class="wp-caption-text">Site Errors</p></div>
<p>Several of those links (Page 2, Page 4, and the Zen Cart Dev) contain <strong>unfinished content</strong>. One page with default text still in it. One empty page, and one with an error message. Just don&#8217;t worry about putting those things back in a new site, they&#8217;re not needed. The videos &#8211; which are a great idea to help people see costumes on live people &#8211; are wonderful, but could be on <strong>an attached blog</strong>.</p>
<div id="attachment_577" class="wp-caption aligncenter" style="width: 510px"><a href="http://blog.websitestyle.com/wp-content/uploads/2009/07/bottom-scroll-bar-problem.gif"><img src="http://blog.websitestyle.com/wp-content/uploads/2009/07/bottom-scroll-bar-problem.gif" alt="Horizontal Scrolling" title="Horizontal Scrolling" width="500" height="58" class="size-full wp-image-577" /></a><p class="wp-caption-text">Horizontal Scrolling</p></div>
<p><strong>Horizontal scrolling</strong> isn&#8217;t good on any store. It indicates a code error in most cases unless someone is browsing with a teeny-screen resolution. In this case &#8211; it&#8217;s <strong>a code error</strong>.</p>
<h3>Getting Visitors</h3>
<p><strong>Optimizing sites for search engines</strong> is a learning process, but there are a few major changes can be made easily and NOW.</p>
<p>The <strong>page title, meta description, and meta keywords</strong> are all way <strong>too long</strong>. It is very likely going to be seen as an attempt at <strong>keyword spamming</strong> by the search engines, and they <strong>penalize</strong> for it.</p>
<p><strong>Title</strong> is 523 characters long = reduce to 70 or less.<br />
<strong>Meta description</strong> is 1195 characters = reduce to 150 or less.<br />
<strong>Meta keywords</strong> are 23 = reduce to 10 or so highly targeted keywords.</p>
<p>Make sure that on a redesign, <strong>alt text is added to all images</strong> and use correct, keyword rich, descriptions of those images. Currently 10 out of 14 images on the page don&#8217;t have alt text at all.</p>
<p>Big problem &#8212; there&#8217;s <strong>no WWW to non-WWW redirect</strong> set up for this site. This is probably causing a major problem. </p>
<p>Rather than repeat myself, I&#8217;ll direct everyone to <a href="http://blog.websitestyle.com/index.php/2009/07/06/site-review-new-focal-media/">read the previous site analysis I did on New Focal Media</a> where I describe how a lack of redirect <strong>causes duplicate content penalties</strong> from Google. It also means <strong>splitting up of inbound links</strong> in the eyes of search engines. For instance, there are 812 links coming in to the non-WWW version of the site, and 1449 coming in to the WWW version of the site. Search engines are currently seeing those as two different sites, not one with a total of 2261 links pointing to it.</p>
<p><strong>Get the word out! Put up a blog.</strong> Can&#8217;t put it any plainer than that. Make a blog on the domain, attach it and link to it from the main store, and use it to post videos and articles about costumes. Then use that blog to generate traffic for the site by listing it on social bookmarking sites and other social media sharing sites.</p>
<h3>Last Thoughts</h3>
<p>The site has some really great costumes and I think it could do really well if it&#8217;s given wings to fly. The business potential is strong and the customer base is out there. The site needs a serious redesign, a careful eye out watching for clutter issues, and some social promotion to get the word out. Mark, would love to have you back for another review in the future! Some before and afters would be awesome.</p>
<h3>Interested in a Site Analysis?</h3>
<p>Would you like to have your site reviewed on Beyond Caffeine? <a href="http://blog.websitestyle.com/index.php/contact/">Drop me a line</a> and let me know all about it! Do you have a site that you think needs a redesign? Head over to <a href="http://websitestyle.com">my business site</a> and get your free consultation.</p>
<p>~Nicole</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.websitestyle.com/index.php/2009/07/07/site-review-nothing-but-costumes/feed/</wfw:commentRss>
		<slash:comments>16</slash:comments>
		</item>
		<item>
		<title>Site Review: New Focal Media</title>
		<link>http://blog.websitestyle.com/index.php/2009/07/06/site-review-new-focal-media/</link>
		<comments>http://blog.websitestyle.com/index.php/2009/07/06/site-review-new-focal-media/#comments</comments>
		<pubDate>Mon, 06 Jul 2009 17:10:42 +0000</pubDate>
		<dc:creator>Nicole</dc:creator>
				<category><![CDATA[Design]]></category>
		<category><![CDATA[Reviews]]></category>
		<category><![CDATA[analysis]]></category>
		<category><![CDATA[review]]></category>
		<category><![CDATA[site review]]></category>

		<guid isPermaLink="false">http://blog.websitestyle.com/?p=505</guid>
		<description><![CDATA[I was contacted by a follower on Twitter, Christopher Francis (@newfocalmedia), and asked to review the New Focal Media website as part of the 4th of July reviews I told my Twitter people about. The Site &#8211; New Focal Media The New Focal Media site currently has a black and white minimalist design, and operates [...]]]></description>
			<content:encoded><![CDATA[<p>I was contacted by a follower on Twitter, Christopher Francis (<a href="http://twitter.com/newfocalmedia">@newfocalmedia</a>), and asked to review the <a href="http://newfocalmedia.com">New Focal Media</a> website as part of the 4th of July reviews I told my Twitter people about.</p>
<h3>The Site &#8211; New Focal Media</h3>
<p>The New Focal Media site currently has a black and white minimalist design, and operates as a business site with attached blog.</p>
<p>I asked Christopher a couple of questions in order to understand his interest in a site review:</p>
<p><strong>Q: What is your primary goal for this site?</strong><br />
A: The primary goal for the current design was to create a clean, professional portfolio to point potential clients to so they can see some of our work.</p>
<p><strong>Q: What do you feel is the biggest weakness of the site at this point?</strong><br />
A: The biggest weakness is a lack of visitors and no clear call to action to convert visitors to clients or potential clients.</p>
<p>After over 10 years of talking to clients about changes they may need to make &#8211; I can tell you that he&#8217;s definitely got the advantage of coming into it with a good understanding of the needs and the problem. The goal of the site is a good one, and one of the things that will make it hard to get potential clients from this site is the lack of an action call to get people moving toward being his client. I will address the lack of visitors, as well as some other problems throughout the review.</p>
<h3>Current State of Affairs</h3>
<p>Let&#8217;s start by taking a closer look at the current website design.</p>
<div id="attachment_508" class="wp-caption aligncenter" style="width: 310px"><a href="http://blog.websitestyle.com/wp-content/uploads/2009/07/home-page-original.jpg"><img src="http://blog.websitestyle.com/wp-content/uploads/2009/07/home-page-original-300x190.jpg" alt="New Focal Media Original Homepage." title="New Focal Media Original Homepage." width="300" height="190" class="size-medium wp-image-508" /></a><p class="wp-caption-text">New Focal Media Original Homepage.</p></div>
<p>At first glance, the site is very minimal, which can be excellent. In this case, if you mouse over the large dim pictures, they use a Flash transition to become more clear and the wording darker.</p>
<p>Let&#8217;s take a look at this page visually, not functionally.</p>
<div id="attachment_510" class="wp-caption aligncenter" style="width: 310px"><a href="http://blog.websitestyle.com/wp-content/uploads/2009/07/home-page-visual-marks.jpg"><img src="http://blog.websitestyle.com/wp-content/uploads/2009/07/home-page-visual-marks-300x189.jpg" alt="New Focal Media Homepage Visual Notes." title="New Focal Media Homepage Visual Notes." width="300" height="189" class="size-medium wp-image-510" /></a><p class="wp-caption-text">New Focal Media Homepage Visual Notes.</p></div>
<p>You can see that on the grid, <strong>the horizontal alignment is good, but vertically we&#8217;re seeing problems</strong>. The fact that the site has a huge chunk of white space below the design makes it look incomplete and unbalanced. This is only blatantly evident on high resolution monitors, but as low quality monitors are definitely growing less and less these days, building with a high resolution monitor in mind is important. With it in mind, not for it. You still want to <strong>put all your major content &#8216;above the fold&#8217;</strong> so that it can be seen for any resolution of monitor immediately. However, keep in mind how your site looks on high resolution monitors as well.</p>
<p>The two options to make it more balanced are to either <strong>shift the design to vertically align</strong> itself based on screen size, or to <strong>add quality content to the bottom</strong> of the page area, or both. I&#8217;m suggesting both.</p>
<div id="attachment_512" class="wp-caption aligncenter" style="width: 310px"><a href="http://blog.websitestyle.com/wp-content/uploads/2009/07/home-page-functional-marks.gif"><img src="http://blog.websitestyle.com/wp-content/uploads/2009/07/home-page-functional-marks-300x258.gif" alt="New Focal Medial Homepage Functional Notes" title="New Focal Medial - Functional Notes" width="300" height="258" class="size-medium wp-image-512" /></a><p class="wp-caption-text">New Focal Medial - Functional Notes</p></div>
<p>Looking at the homepage, there are some functional changes that should be made. <strong>The link to the blog is not functional. I kid you not, it took me over half an hour to realize that was a link.</strong> I thought it was a tagline. T<strong>he main navigation images should not be done in Flash.</strong> There is nothing those images are doing that cannot be done with backward compatible Javascript. While it is possible to make some partly accessible Flash movies, in this case, it&#8217;s not accessible. </p>
<p>In the new mobile world we live, using Flash as a main component of your site can be a business killer. <strong>Many mobile devices (including the very popular iPhone) Do Not Support Flash.</strong></p>
<p>Some people think that since they can view things like YouTube on their iPhone that they must be supporting Flash &#8211; but that&#8217;s not how it works. YouTube (and many other major sites) actually do a device detection and if you&#8217;re visiting from an iPhone, they serve your videos to you in H.264 video streams &#8211; not Flash. Of course, the iPhone supports HDTV, but not Flash. In fact, the only mobile browser that&#8217;s supposed to support Flash correctly is the relative newcomer &#8211; Google Android.</p>
<p>So back to the homepage, the <strong>main menu names are too light</strong>. I understand that they&#8217;re supposed to be dim until you roll over them, but there is too little contrast for it to come close to good readability.</p>
<h3>The Work Page</h3>
<p>I&#8217;m going to skip now to the Work page, because I&#8217;m saving the About page for last (I have the most issues with that page).</p>
<div id="attachment_517" class="wp-caption aligncenter" style="width: 310px"><a href="http://blog.websitestyle.com/wp-content/uploads/2009/07/work-page-functional-marks.gif"><img src="http://blog.websitestyle.com/wp-content/uploads/2009/07/work-page-functional-marks-300x265.gif" alt="New Focal Media - Work Page" title="New Focal Media - Work Page" width="300" height="265" class="size-medium wp-image-517" /></a><p class="wp-caption-text">New Focal Media - Work Page</p></div>
<p>This page isn&#8217;t bad from a design perspective. I would absolutely suggest putting those <strong>videos on a hosting service</strong> instead of serving them up as self-hosted Flash. There&#8217;s two reasons for this. The first one is what I already discussed about the problems with Flash on mobile devices. The last thing you want is for people to go check out your work and see a blank page or a page full of errors. Pop those videos up on YouTube and <strong>let YouTube handle converting them to a format anyone can read</strong>. The second reason to push them to a place like YouTube is that it tells people you are <strong>&#8216;up to date&#8217; on hot trends</strong>. Businesses that <strong>push video to YouTube for marketing</strong> are a step ahead.</p>
<p>When you look at an interior page, you also see that the <strong>main navigation picture border</strong> just disappears and it should stand out more instead. People need a visual marker of the page they are on. Make it more obvious.</p>
<p>A final note on this page &#8211; the <strong>black bar at the top is missing</strong> on this page. <strong>Consistency is important</strong>.</p>
<h3>The Contact Page</h3>
<p>Moving on to the Contact page, I have some suggestions.</p>
<div id="attachment_518" class="wp-caption aligncenter" style="width: 310px"><a href="http://blog.websitestyle.com/wp-content/uploads/2009/07/contact-page-functional-marks.gif"><img src="http://blog.websitestyle.com/wp-content/uploads/2009/07/contact-page-functional-marks-300x190.gif" alt="New Focal Media - Contact Page" title="New Focal Media - Contact Page" width="300" height="190" class="size-medium wp-image-518" /></a><p class="wp-caption-text">New Focal Media - Contact Page</p></div>
<p>The Contact page isn&#8217;t terrible, but needs a few tweaks. Vertically the page has more space between the bottom of the logo and the start of the content than all the other pages. <strong>Move up the content to align with the rest of the pages</strong>, again &#8211; in minimal design, small details become huge. I already discussed the border need for the navigation which applies here as well.</p>
<p>Most important is the <strong>need for a major call to action</strong> on this page. If you&#8217;ve got someone to the Contact page, they&#8217;re <strong>-this-</strong> close to being a potential client. Give them that final push. <strong>The text on the left is small.</strong> Enlarge it and break down your <strong>contact information loud and clear</strong> in the space below it.</p>
<p>Make your <strong>labels on the contact form bold</strong>, and change that &#8216;Send&#8217; text to say something that really pushes the user like <strong>&#8216;Get Your Free Consultation&#8217;</strong>. I feel the message box area is too wide and should be taller instead, but that&#8217;s a minor aspect.</p>
<h3>The Blog</h3>
<p>Once I realized the top black bar was a link to a blog, I decided to check out the blog to see how it looks.</p>
<div id="attachment_520" class="wp-caption aligncenter" style="width: 310px"><a href="http://blog.websitestyle.com/wp-content/uploads/2009/07/blog-page-functional-marks.gif"><img src="http://blog.websitestyle.com/wp-content/uploads/2009/07/blog-page-functional-marks-300x240.gif" alt="New Focal Media - Blog" title="New Focal Media - Blog" width="300" height="240" class="size-medium wp-image-520" /></a><p class="wp-caption-text">New Focal Media - Blog</p></div>
<p>Having a blog attached to your business is great! You&#8217;re obviously keeping up with best business practices, but when you write about business on your blog &#8211; use your blog to promote your business! Put the <strong>business logo on the blog</strong> to start with. Use an empty space to <strong>put your own advertisement on your blog</strong> that will send people to your main site. Those two things will help convert readers into buyers. A minor suggestion would be to make your sidebar section headings bold as well.</p>
<h3>The About Page</h3>
<p>Ok, on to the page I have the most issues with. The About page.</p>
<div id="attachment_522" class="wp-caption aligncenter" style="width: 310px"><a href="http://blog.websitestyle.com/wp-content/uploads/2009/07/about-page-functional-marks.gif"><img src="http://blog.websitestyle.com/wp-content/uploads/2009/07/about-page-functional-marks-300x190.gif" alt="New Focal Media - About" title="New Focal Media - About" width="300" height="190" class="size-medium wp-image-522" /></a><p class="wp-caption-text">New Focal Media - About</p></div>
<p>The About page is the most important page on this site, in my opinion. It&#8217;s where you get a chance to explain what you do and what you can do for your clients. This page does neither of those.</p>
<p>I have to admit, after a couple of hours of looking at this site to do the review, at the end of it <strong>I&#8217;m still not sure what New Focal Media DOES exactly. That&#8217;s a problem.</strong></p>
<p>I get that they do something with businesses and video. Does New Focal Media consult with businesses about how they can produce more compelling video? Do they arrange employees and customers to give testimonials? Do they edit video to make it more personal? Do they actually shoot the video and organize the shoot with location and equipment? All of the above? I&#8217;m not sure.</p>
<p>If I don&#8217;t understand what this business does, <strong>I could be missing out on a service</strong> my business could really use and I wouldn&#8217;t know. That&#8217;s the site visitor perspective. A business site needs to convince people that they need a service they may or may not even know they needed.</p>
<p>One of the very annoying functional aspects on this page is the arrow to navigate between the two paragraphs. <strong>It&#8217;s only 2 paragraphs, just put them on one page. </strong></p>
<p>An even better suggestion &#8211; the business has something to do with video right? <strong>Make a screencast or video!</strong> Put it on that page, and explain to me what the business does. Show me the process of working with New Focal Media. Tell me how awesome they are and exactly why my business is never going to make it without them. <strong>Build a sense of NEED.</strong> Of course, host it on YouTube and let them handle the conversion <img src='http://blog.websitestyle.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<h3>Suggestions For Change</h3>
<p>So, let&#8217;s get to the final suggestions. I&#8217;m going to use the About page as the example for changes to the site.<br />
<div id="attachment_529" class="wp-caption aligncenter" style="width: 286px"><a href="http://blog.websitestyle.com/wp-content/uploads/2009/07/about-page-before.gif"><img src="http://blog.websitestyle.com/wp-content/uploads/2009/07/about-page-before-276x300.gif" alt="NFM About Page BEFORE" title="NFM About Page BEFORE" width="276" height="300" class="size-medium wp-image-529" /></a><p class="wp-caption-text">NFM About Page BEFORE</p></div></p>
<div id="attachment_530" class="wp-caption aligncenter" style="width: 310px"><a href="http://blog.websitestyle.com/wp-content/uploads/2009/07/about-page-redo.gif"><img src="http://blog.websitestyle.com/wp-content/uploads/2009/07/about-page-redo-300x257.gif" alt="NFM About Page AFTER" title="NFM About Page AFTER" width="300" height="257" class="size-medium wp-image-530" /></a><p class="wp-caption-text">NFM About Page AFTER</p></div>
<p>[ NOTE: We already know that the site is aligned nicely on a horizontal line (vertical being the problem) so I've trimmed the white space on the sides just to have smaller screenshots. ]</p>
<p>Ok, so let&#8217;s talk about the changes I&#8217;m suggesting.</p>
<p><strong>Sitewide Change Suggestions</strong><br />
Change 1: The black bar is useless as a blog link. Make it a call to action instead.<br />
Change 2: Enhance the navigation images with some type of border.<br />
Change 3: Make the current page navigation image darker and more obvious.<br />
Change 4: Link to your blog by putting links to recent posts at the bottom (below the fold).<br />
Change 5: I ditched the little email and location bit below the content in favor of a more prominent and bold listing of contact information at the bottom of the page.<br />
Change 6: There are LinkedIn and Twitter links on the blog &#8211; show them here too, it reinforces that the business is &#8216;staying current&#8217; with trends.<br />
Change 7: Added basic (and expected) information at the base footer, like a quick link to the main page, contact page, copyright, etc..</p>
<p><strong>About Page Specific</strong><br />
Change 1: Put the two paragraphs together.<br />
Change 2: Copywriting basics &#8211; bold text.<br />
Change 3: A video explaining what New Focal Media does!</p>
<p>I think those changes really make the site look more complete, and consistently push the visitor toward becoming a client. </p>
<p>How about taking it a step further?</p>
<div id="attachment_533" class="wp-caption aligncenter" style="width: 310px"><a href="http://blog.websitestyle.com/wp-content/uploads/2009/07/about-page-redo-color.gif"><img src="http://blog.websitestyle.com/wp-content/uploads/2009/07/about-page-redo-color-300x257.gif" alt="NFM About Page COLOR" title="NFM About Page COLOR" width="300" height="257" class="size-medium wp-image-533" /></a><p class="wp-caption-text">NFM About Page COLOR</p></div>
<p>I love LOVE minimal designs, but one of the greatest misconceptions about minimal design is that it means black and white only <img src='http://blog.websitestyle.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' />  Let&#8217;s try really making it pop! How about adding some color to indicate what page you&#8217;re on and to <strong>emphasize copy</strong>? You can even use different colors on different pages. A splash of color will not make this design cluttered. It&#8217;s not necessary, but can be fun to play around with to see if it works.</p>
<p>One last change, although it&#8217;s actually a pretty big suggestion. <strong>Change a couple of page names.</strong> &#8216;About Us&#8217; would be better as <strong>&#8216;What We Do&#8217;</strong> and &#8216;Our Work&#8217; could be <strong>&#8216;The Portfolio&#8217;</strong>. If you change the names of pages, don&#8217;t forget to do some page redirection so the old pages redirect to the new ones. I also suggest adding in your basic sitemap and privacy policy or terms of service.</p>
<h3>Visitors and Traffic</h3>
<p>There are a variety of reasons this site could be suffering in the traffic department.</p>
<p>The first one involves coding. <strong>This site is suffering in the coding department.</strong> There are no code headings (H1, H2, etc..) to indicate page structure. Due to that, search engines are likely not reading the page with the elements of importance emphasized because nothing is given a hierarchy. Do some Google searching on HTML Headings and SEO.</p>
<p><strong>Drop down the amount of meta keywords</strong> to around 10 or so. A lot of keywords can be seen as an attempt at keyword spam.</p>
<p>The second problem is the homepage Flash. The Flash is making the primary page links into movies with no alternate for search engines to understand. What does that mean? It means that the <strong>search engines are ignoring the Flash</strong> and only seeing this one page disconnected from the others. The search engines will index the other pages on the site as well, but not as part of the same site, as independent pages. The search engines are not understanding that the home page, about page, work page, and contact are all connected. Ditch the Flash for images that link to the correct pages and add some Javascript afterward to get that transition back &#8211; Google will start understanding the site better.</p>
<p>Help the search engines understand your site structure even more by <strong>adding a sitemap</strong>. Do a quick search online sitemap builders to do this.</p>
<p>The main site doesn&#8217;t have an <strong>RSS feed attached</strong>. Building a new feed just for this site isn&#8217;t necessary, there is already a blog. Grab the RSS code from the top of the blog page source and drop it into the main site so that people can subscribe to the articles from there as well.</p>
<p>There is not a <strong>permanent redirect</strong> set up for the WWW and non-WWW versions of the site. What that means is that instead of there being only one version of your site, there are technically 2: www.newfocalmedia.com and newfocalmedia.com &#8211; This is a BIG issue. Google penalizes sites for duplicate content, and having two versions of the same content is seen as exactly that. Redirect the WWW version to the non-WWW version. Do a Google search on how to set up a WWW redirect.</p>
<p><strong>Tell people about it!</strong> Sign up on Technorati and list your site there. Get a del.icio.us account and start using it for bookmarking (your site and others, don&#8217;t just spam your links only). Submit all your blog articles on Digg &#8211; but always submit other peoples articles as well in between! Always tell your social media followers when you have an awesome post, but don&#8217;t forget to tell them about other things as well!</p>
<h3>Last Thoughts</h3>
<p>New Focal Media has a site that has great potential but is just in need of some adjustments to make it more consistent and pack a major punch in the sales department.</p>
<h3>Interested In A Site Analysis?</h3>
<p>Would you like to have your site reviewed on Beyond Caffeine? <a href="http://blog.websitestyle.com/index.php/contact/">Drop me a line</a> and let me know all about it! Do you have a site that you think needs a redesign? Head over to <a href="http://websitestyle.com">my business site</a> and get your free consultation.</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.websitestyle.com/index.php/2009/07/06/site-review-new-focal-media/feed/</wfw:commentRss>
		<slash:comments>6</slash:comments>
		</item>
		<item>
		<title>The All-American Freebie</title>
		<link>http://blog.websitestyle.com/index.php/2009/07/04/the-all-american-freebie/</link>
		<comments>http://blog.websitestyle.com/index.php/2009/07/04/the-all-american-freebie/#comments</comments>
		<pubDate>Sat, 04 Jul 2009 15:02:34 +0000</pubDate>
		<dc:creator>Nicole</dc:creator>
				<category><![CDATA[Blogging]]></category>
		<category><![CDATA[Design]]></category>
		<category><![CDATA[Reviews]]></category>
		<category><![CDATA[4th]]></category>
		<category><![CDATA[all-american]]></category>
		<category><![CDATA[critique]]></category>
		<category><![CDATA[freebie]]></category>
		<category><![CDATA[independence day]]></category>
		<category><![CDATA[july]]></category>
		<category><![CDATA[review]]></category>
		<category><![CDATA[website]]></category>

		<guid isPermaLink="false">http://blog.websitestyle.com/?p=497</guid>
		<description><![CDATA[There are many things that come to mind on the 4th of July. Things that remind of us being American. Things we&#8217;re thankful for. Things that need changing. Things we have yet to do. Today, I want to celebrate on my blog by combining two of the things on that list: The &#8216;Freebie&#8217; and the [...]]]></description>
			<content:encoded><![CDATA[<div id="attachment_500" class="wp-caption aligncenter" style="width: 510px"><a href="http://www.flickr.com/photos/london/902817172/"><img src="http://blog.websitestyle.com/wp-content/uploads/2009/07/july4thfireworks-jonrawlinson-flickr.jpg" alt="Fireworks." title="july4thfireworks-jonrawlinson-flickr" width="500" height="333" class="size-full wp-image-500" /></a><p class="wp-caption-text">Fireworks.</p></div>
<p>There are many things that come to mind on the 4th of July. Things that remind of us being American. Things we&#8217;re thankful for. Things that need changing. Things we have yet to do.</p>
<p>Today, I want to celebrate on my blog by combining two of the things on that list: The &#8216;Freebie&#8217; and the American small &#8216;Mom and Pop&#8217; business.</p>
<p>I&#8217;m giving away 4 free web site and design critique and will write an article with my feedback.</p>
<p>Keep in mind &#8211; yes, you&#8217;d get a live link on the post. Yes, you&#8217;ll get a professional and experienced review of your site. BUT if you do not want to hear where your site needs improvement, and you do not do well with hearing criticism of your site &#8212; pass on this freebie.</p>
<p>If you want me to review your site and write about it, <a href="http://blog.websitestyle.com/index.php/contact/">hop on over to the contact form</a>. Make sure and tell me your name, give me an email address to contact you when if I pick yours to do and to let you know when it&#8217;s done, and (obviously) tell me the URL you want reviewed. Anything additional is up to you.</p>
<p>Have a great 4th of July!</p>
<p>~Nicole</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.websitestyle.com/index.php/2009/07/04/the-all-american-freebie/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Time For A New Look</title>
		<link>http://blog.websitestyle.com/index.php/2009/06/28/time-for-a-new-look/</link>
		<comments>http://blog.websitestyle.com/index.php/2009/06/28/time-for-a-new-look/#comments</comments>
		<pubDate>Sun, 28 Jun 2009 20:41:27 +0000</pubDate>
		<dc:creator>Nicole</dc:creator>
				<category><![CDATA[Color]]></category>
		<category><![CDATA[Design]]></category>
		<category><![CDATA[redesign]]></category>
		<category><![CDATA[wordpress theme]]></category>

		<guid isPermaLink="false">http://blog.websitestyle.com/?p=493</guid>
		<description><![CDATA[I&#8217;m at that re-evaluation stage with the blog&#8230; again. It&#8217;s at least once a year if not every 6 months. I want something more in tune with the new main site look, but not exactly that. Might go with red, black, and white to match it though. Time to get out the paintbrush. ~Nicole]]></description>
			<content:encoded><![CDATA[<p>I&#8217;m at that re-evaluation stage with the blog&#8230; again. It&#8217;s at least once a year if not every 6 months. </p>
<p>I want something more in tune with the new main site look, but not exactly that. Might go with red, black, and white to match it though.</p>
<p>Time to get out the paintbrush.</p>
<p>~Nicole</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.websitestyle.com/index.php/2009/06/28/time-for-a-new-look/feed/</wfw:commentRss>
		<slash:comments>0</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>Sneak Peek &#8211; New WordPress Theme</title>
		<link>http://blog.websitestyle.com/index.php/2008/03/24/sneak-peek-new-wordpress-theme/</link>
		<comments>http://blog.websitestyle.com/index.php/2008/03/24/sneak-peek-new-wordpress-theme/#comments</comments>
		<pubDate>Mon, 24 Mar 2008 14:11:54 +0000</pubDate>
		<dc:creator>Nicole</dc:creator>
				<category><![CDATA[Blogging]]></category>
		<category><![CDATA[Design]]></category>
		<category><![CDATA[Templates]]></category>
		<category><![CDATA[Wordpress]]></category>
		<category><![CDATA[minimal]]></category>
		<category><![CDATA[minimal overhead]]></category>
		<category><![CDATA[theme]]></category>

		<guid isPermaLink="false">http://blog.websitestyle.com/index.php/2008/03/24/sneak-peek-new-wordpress-theme/</guid>
		<description><![CDATA[I&#8217;ve been working on a new WordPress theme that highlights what I enjoy in minimalist design. It&#8217;s called Minimal Overhead. As you can see from the above screen shots, this design is going to come with a few color themes, and you can easily add your own as well. The top bar is a CSS [...]]]></description>
			<content:encoded><![CDATA[<p>I&#8217;ve been working on a new WordPress theme that highlights what I enjoy in minimalist design. It&#8217;s called Minimal Overhead.</p>
<p><a href="http://img255.imageshack.us/img255/1186/minimaloverheadprereleasa2.jpg"><img src="http://img355.imageshack.us/img355/9953/minimaloverheadprereleatu7.jpg" alt="Small size of Minimal Overhead preview." /></a></p>
<p><a href="http://img507.imageshack.us/img507/5071/minimaloverheadprereleaiz4.jpg"><img src="http://img523.imageshack.us/img523/3889/minimaloverheadprereleaex4.jpg" alt="Small size of Minimal Overhead preview second color." /></a></p>
<p>As you can see from the above screen shots, this design is going to come with a few color themes, and you can easily add your own as well.</p>
<p>The top bar is a CSS drop-down menu. For those on browsers not supporting the CSS, clicking the links will instead toss people to another area to read the subcategories and subpages etc&#8230; I&#8217;m still in personal debate over how to handle that menu. I&#8217;m experiencing a small inner rebellion against using Javascript to make the menu work for IE, and would prefer to just have the design follow a rollback for IE like any of the other older browsers will see. In either case, the menu options will be available, just in different ways.</p>
<p>This is, in my opinion, the kind of theme for someone who needs structure in order to keep their blog minimal feeling without letting it get cluttered over time. I&#8217;m not going to add in places for people to drag a million widgets and fill up all the empty space &#8211; that defeats the purpose. </p>
<p>The theme is about keeping things simple.</p>
<p>I&#8217;ll post another update when I&#8217;ve got more to show.</p>
<p>~Nicole</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.websitestyle.com/index.php/2008/03/24/sneak-peek-new-wordpress-theme/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>Vote &#8211; New Wired DnD Logo</title>
		<link>http://blog.websitestyle.com/index.php/2008/03/11/vote-new-wired-dnd-logo/</link>
		<comments>http://blog.websitestyle.com/index.php/2008/03/11/vote-new-wired-dnd-logo/#comments</comments>
		<pubDate>Tue, 11 Mar 2008 07:01:20 +0000</pubDate>
		<dc:creator>Nicole</dc:creator>
				<category><![CDATA[Design]]></category>
		<category><![CDATA[Tech News]]></category>
		<category><![CDATA[death]]></category>
		<category><![CDATA[dnd]]></category>
		<category><![CDATA[dnd logo]]></category>
		<category><![CDATA[gygax]]></category>
		<category><![CDATA[wired]]></category>

		<guid isPermaLink="false">http://blog.websitestyle.com/index.php/2008/03/11/vote-new-wired-dnd-logo/</guid>
		<description><![CDATA[<img src="http://img393.imageshack.us/img393/6754/406432175621b395d5ey9.jpg" alt="The Table." title="The Table." /><p class="photo-attrib"><a href="http://www.flickr.com/photos/alexerde/">Photographer.</a></p>

If a dice and paper cluttered table is familiar... 
If you still remember what 'feats' are...
If half your bookshelf used to be gaming manuals...

Then maybe you should vote for the new Wired logo (or design one yourself!).]]></description>
			<content:encoded><![CDATA[<p><img src="http://img393.imageshack.us/img393/6754/406432175621b395d5ey9.jpg" alt="The Table." title="The Table." />
<p class="photo-attrib"><a href="http://www.flickr.com/photos/alexerde/">Photographer.</a></p>
<p>If a dice and paper cluttered table is familiar&#8230;<br />
If you still remember what &#8216;feats&#8217; are&#8230;<br />
If half your bookshelf used to be gaming manuals&#8230;</p>
<p>Then maybe you should vote for the new Wired logo (or design one yourself!).</p>
<p>Recently, Wired <a href="http://www.wired.com/gaming/virtualworlds/news/2008/03/ff_gygax">published an truly excellent ode</a> to the recently deceased Gary Gygax &#8211; the ultimate dungeon master of DnD.</p>
<p>If you were, or are, one of the many old school DnD gamers in the world&#8230; the article just might bring a tear to your eye. To that end, his passing has made such an impact on the guys over at Wired, that they have <a href="http://blog.wired.com/underwire/2008/03/wired-readers-s.html">opened up a contest</a> to re-design the Wired logo &#8216;Gygax-style&#8217; with DnD flavor.</p>
<p>You can <a href="http://reddit.wired.com/dungeon_logos/">take a look at the current list</a> of submitted logos and cast your vote right on the page.</p>
<p>My personal favorite is the one titled &#8216;Sorry I&#8217;m rolling that one again, it fell off the table&#8217;. Not only do I like the design alot, but I laughed reading that title because I can&#8217;t remember how many times those words came out of my mouth during my heavy DnD gaming days.</p>
<p>So, here&#8217;s a call to action for all you Wired readers out there, or DnD fans &#8211; go cast a vote.</p>
<p>~Nicole</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.websitestyle.com/index.php/2008/03/11/vote-new-wired-dnd-logo/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
	</channel>
</rss>

