<?xml version="1.0" encoding="UTF-8"?>
<?xml-stylesheet type="text/xsl" media="screen" href="/~d/styles/rss2full.xsl"?><?xml-stylesheet type="text/css" media="screen" href="http://feeds.feedburner.com/~d/styles/itemcontent.css"?><rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:wfw="http://wellformedweb.org/CommentAPI/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:atom="http://www.w3.org/2005/Atom" xmlns:sy="http://purl.org/rss/1.0/modules/syndication/" xmlns:slash="http://purl.org/rss/1.0/modules/slash/" xmlns:feedburner="http://rssnamespace.org/feedburner/ext/1.0" version="2.0">

<channel>
	<title>Beyond Caffeine</title>
	
	<link>http://blog.websitestyle.com</link>
	<description>Various Epiphanies of a Technical Mind</description>
	<lastBuildDate>Thu, 17 Sep 2009 10:29:46 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.8.4</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="self" href="http://feeds.feedburner.com/BeyondCaffeine" type="application/rss+xml" /><feedburner:emailServiceId>BeyondCaffeine</feedburner:emailServiceId><feedburner:feedburnerHostname>http://feedburner.google.com</feedburner:feedburnerHostname><feedburner:browserFriendly>Beyond Caffeine is the online tech home of Nicole Hernandez - the place on the web where she talks about XHTML, CSS, standards, accessibility, and random things like langugage learning and her obsession with online quizzes.</feedburner:browserFriendly><atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="hub" href="http://pubsubhubbub.appspot.com" /><item>
		<title>Automatic Post Thumbnails Without Plugins</title>
		<link>http://feedproxy.google.com/~r/BeyondCaffeine/~3/RHewjPJia3U/</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>
<div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/BeyondCaffeine?a=RHewjPJia3U:ziCF4L4akHU:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/BeyondCaffeine?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/BeyondCaffeine?a=RHewjPJia3U:ziCF4L4akHU:ACf-c_HutVc"><img src="http://feeds.feedburner.com/~ff/BeyondCaffeine?d=ACf-c_HutVc" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/BeyondCaffeine?a=RHewjPJia3U:ziCF4L4akHU:V_sGLiPBpWU"><img src="http://feeds.feedburner.com/~ff/BeyondCaffeine?i=RHewjPJia3U:ziCF4L4akHU:V_sGLiPBpWU" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/BeyondCaffeine?a=RHewjPJia3U:ziCF4L4akHU:7Q72WNTAKBA"><img src="http://feeds.feedburner.com/~ff/BeyondCaffeine?d=7Q72WNTAKBA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/BeyondCaffeine?a=RHewjPJia3U:ziCF4L4akHU:gIN9vFwOqvQ"><img src="http://feeds.feedburner.com/~ff/BeyondCaffeine?i=RHewjPJia3U:ziCF4L4akHU:gIN9vFwOqvQ" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/BeyondCaffeine?a=RHewjPJia3U:ziCF4L4akHU:qj6IDK7rITs"><img src="http://feeds.feedburner.com/~ff/BeyondCaffeine?d=qj6IDK7rITs" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/BeyondCaffeine/~4/RHewjPJia3U" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://blog.websitestyle.com/index.php/2009/08/21/automatic-post-thumbnails-without-plugins/feed/</wfw:commentRss>
		<slash:comments>7</slash:comments>
		<feedburner:origLink>http://blog.websitestyle.com/index.php/2009/08/21/automatic-post-thumbnails-without-plugins/</feedburner:origLink></item>
		<item>
		<title>How You Use Social Media Can Kill Your Business</title>
		<link>http://feedproxy.google.com/~r/BeyondCaffeine/~3/fC5aEE-VT1o/</link>
		<comments>http://blog.websitestyle.com/index.php/2009/07/29/how-you-use-social-media-can-kill-your-business/#comments</comments>
		<pubDate>Wed, 29 Jul 2009 15:40:10 +0000</pubDate>
		<dc:creator>Nicole</dc:creator>
				<category><![CDATA[Blogging]]></category>
		<category><![CDATA[Writing]]></category>
		<category><![CDATA[facebook]]></category>
		<category><![CDATA[posts]]></category>
		<category><![CDATA[social media]]></category>
		<category><![CDATA[twitter]]></category>

		<guid isPermaLink="false">http://blog.websitestyle.com/?p=625</guid>
		<description><![CDATA[The social media movement has expanded the amount of people we can reach and connect with on a personal level. The new relationships and connections we create with people all over the world can have a profound effect on our personal and business growth. We learn about cultures and nations that we were, perhaps, previously [...]]]></description>
			<content:encoded><![CDATA[<div id="attachment_638" class="wp-caption alignleft" style="width: 250px"><a href="http://www.flickr.com/photos/luc/1824234195/"><img src="http://blog.websitestyle.com/wp-content/uploads/2009/07/social-collection2.jpg" alt="Social Media by Luc Legay." title="Social Media by Luc Legay." width="240" height="187" class="size-full wp-image-638" /></a><p class="wp-caption-text">Social Media by Luc Legay.</p></div>
<p>The social media movement has expanded the amount of people we can reach and connect with on a personal level. The new relationships and connections we create with people all over the world can have a profound effect on our personal and business growth. We learn about cultures and nations that we were, perhaps, previously ignorant of. None of this is a new concept, but what may be is how quickly you can destroy your business by using social media incorrectly.</p>
<h3>Transparency is a Utopian Concept</h3>
<p>Not too long ago, Michael Fortin wrote an article titled &#8220;<a href="http://www.michelfortin.com/thoughts-transparency/">Don&#8217;t Be Transparent, Be Authentic Instead.</a>&#8221; That article is an important read for any social media wrangling business blogger.</p>
<p>That article is the tip of the iceberg in the concept of &#8216;transparency&#8217; being too Utopian to work within the jaded confines of our society. Of course, true transparency is ideal. Many things about a perfect world are <img src='http://blog.websitestyle.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' />  Unfortunately, as a group, most of the world isn&#8217;t ready or willing to accept true transparency without penalty.</p>
<h3>When Transparency Fails</h3>
<p>Let me give you a couple of examples of transparency failure we&#8217;ve seen. </p>
<p><strong>Failure 1:</strong> We had a copywriter who was posting on Twitter about the work he was doing. He made several posts within a few hour period which were ugly complaints about a client and how &#8217;stupid&#8217; he felt that client was. We obviously considered this unacceptable and immediately removed him from our list of subcontractors, but think about this: If he was hoping to use Twitter to get more client work &#8211; how many potential clients just read that and thought&#8230; &#8220;I&#8217;m not going to risk being badmouthed on here, I&#8217;ll find someone else.&#8221; Everyone gets frustrated, but what if the client he was working on read that? Put it this way, if you wouldn&#8217;t say it to your client directly &#8211; don&#8217;t post it either.<br />
<strong><br />
Failure 2:</strong> We had a designer who was a day late returning her design phase work. When we contacted her, she said she had a family emergency the night before and was unable to send in her work because she wasn&#8217;t home. A quick check on her Facebook showed that she was actually out at a party that night and posted multiple times while drunk talking about how much she was drinking and even hinting at wanting to bring a man she met there home with her. Obviously, we relieved her of the design work, handed it to another designer who caught up on the time schedule, and never again worked with her. In this case, people are allowed to have a life, we understand that. But if you cannot get your work done and have to lie about why &#8211; it&#8217;s a problem. If you do not have enough class to not post details about your &#8216;wild nights&#8217; to everyone on your social networks &#8212; that&#8217;s also a problem.</p>
<h3>How We Monitor Social Media Conversations</h3>
<p>My business has been around for over a decade and is very focused on client satisfaction and excellent treatment of our web design clients. We have a network of hundreds of copywriters, designers, and coders who work with us on projects. However, even with screening of those experts when they come on board with us &#8211; you don&#8217;t always know someone until you have observed them over a long period of time. </p>
<p>That&#8217;s why we monitor what they say online. </p>
<p>How do we do that? Well first we get as many of their social profiles as we can. Usually, we ask for a list of them. We&#8217;ve also found that most people won&#8217;t provide them all. We then Google search the usernames of the ones they have given us because most people use the same usernames over and over. We also monitor blogs, and check for listings of social networks on those.</p>
<p>We have a system set up to consolidate all their social media comments into one master feed. That master feed can then be browsed directly to see what they&#8217;re up to, but that&#8217;s a lot of things to read each day. What we do is take the master feed, run it through a filter that creates two sub-feeds based on certain things we think are important to monitor. The first sub-feed is created by running the master list through a keyword &#038; synonym filter that pulls out words related to business &#8211; for instance, &#8220;client&#8221; &#8220;business&#8221; &#8220;work&#8221; etc&#8230; The second sub-feed has a filter that runs their posts through a check for foul language and words like &#8220;sex&#8221; &#8220;drugs&#8221; &#8220;drunk&#8221; etc&#8230; There are hundreds of words in each filter.</p>
<p>Seem a bit &#8216;big brother&#8217;? It probably is &#8211; but reputation and client treatment is very important to us. </p>
<p>Here&#8217;s the thing: If we can read it and you can lose work with us over it&#8230; how many POTENTIAL clients did you lose also?</p>
<h3>7 Ways to Edit Yourself</h3>
<p>We&#8217;re not suggesting you stop having a life and stop making mistakes. You can post about those things and it simply makes you a more interesting person to read about. Just use common sense:</p>
<p>1. If you wouldn&#8217;t say it to a client or boss &#8211; don&#8217;t say it where they can read it either.<br />
2. If you wouldn&#8217;t say it to your grandmother &#8211; don&#8217;t say it on your public posts.<br />
3. If you wouldn&#8217;t say it to police officer &#8211; don&#8217;t post it on your social networks. For that matter, don&#8217;t do it either.<br />
4. If you plan to lie to your boss &#8211; don&#8217;t put the truth where they can see it.<br />
5. If you plan to go out and get drunk and know you have a tendency to post while drunk &#8211; give your phone to a friend to keep for you.<br />
6. Learn how to use privacy settings and understand how visible your posts are on different social networks.<br />
7. If you want a place to vent &#8211; create a completely different identity for yourself to do that. Name no names in your posts, and make no connection to your other profiles or email addresses.</p>
<p>Consider it all part of Internet Etiquette. Social networks are great to hear more personal things about someone and we encourage people to share a bit of themselves online (using normal cautions etc..). In the long run, full transparency is too Utopian for our modern world to handle well. We&#8217;re still at a point in our societal growth that when someone seriously calls a client an idiot &#8211; they tend to get a bit upset about it.</p>
<p>~Nicole</p>
<div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/BeyondCaffeine?a=fC5aEE-VT1o:01MOA-lBKGw:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/BeyondCaffeine?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/BeyondCaffeine?a=fC5aEE-VT1o:01MOA-lBKGw:ACf-c_HutVc"><img src="http://feeds.feedburner.com/~ff/BeyondCaffeine?d=ACf-c_HutVc" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/BeyondCaffeine?a=fC5aEE-VT1o:01MOA-lBKGw:V_sGLiPBpWU"><img src="http://feeds.feedburner.com/~ff/BeyondCaffeine?i=fC5aEE-VT1o:01MOA-lBKGw:V_sGLiPBpWU" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/BeyondCaffeine?a=fC5aEE-VT1o:01MOA-lBKGw:7Q72WNTAKBA"><img src="http://feeds.feedburner.com/~ff/BeyondCaffeine?d=7Q72WNTAKBA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/BeyondCaffeine?a=fC5aEE-VT1o:01MOA-lBKGw:gIN9vFwOqvQ"><img src="http://feeds.feedburner.com/~ff/BeyondCaffeine?i=fC5aEE-VT1o:01MOA-lBKGw:gIN9vFwOqvQ" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/BeyondCaffeine?a=fC5aEE-VT1o:01MOA-lBKGw:qj6IDK7rITs"><img src="http://feeds.feedburner.com/~ff/BeyondCaffeine?d=qj6IDK7rITs" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/BeyondCaffeine/~4/fC5aEE-VT1o" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://blog.websitestyle.com/index.php/2009/07/29/how-you-use-social-media-can-kill-your-business/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
		<feedburner:origLink>http://blog.websitestyle.com/index.php/2009/07/29/how-you-use-social-media-can-kill-your-business/</feedburner:origLink></item>
		<item>
		<title>Site Review: Lou Riley Live</title>
		<link>http://feedproxy.google.com/~r/BeyondCaffeine/~3/ixDLeDVAg8A/</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 questions, and here [...]]]></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>
<div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/BeyondCaffeine?a=ixDLeDVAg8A:rYOtSbevLvg:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/BeyondCaffeine?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/BeyondCaffeine?a=ixDLeDVAg8A:rYOtSbevLvg:ACf-c_HutVc"><img src="http://feeds.feedburner.com/~ff/BeyondCaffeine?d=ACf-c_HutVc" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/BeyondCaffeine?a=ixDLeDVAg8A:rYOtSbevLvg:V_sGLiPBpWU"><img src="http://feeds.feedburner.com/~ff/BeyondCaffeine?i=ixDLeDVAg8A:rYOtSbevLvg:V_sGLiPBpWU" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/BeyondCaffeine?a=ixDLeDVAg8A:rYOtSbevLvg:7Q72WNTAKBA"><img src="http://feeds.feedburner.com/~ff/BeyondCaffeine?d=7Q72WNTAKBA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/BeyondCaffeine?a=ixDLeDVAg8A:rYOtSbevLvg:gIN9vFwOqvQ"><img src="http://feeds.feedburner.com/~ff/BeyondCaffeine?i=ixDLeDVAg8A:rYOtSbevLvg:gIN9vFwOqvQ" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/BeyondCaffeine?a=ixDLeDVAg8A:rYOtSbevLvg:qj6IDK7rITs"><img src="http://feeds.feedburner.com/~ff/BeyondCaffeine?d=qj6IDK7rITs" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/BeyondCaffeine/~4/ixDLeDVAg8A" height="1" width="1"/>]]></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>
		<feedburner:origLink>http://blog.websitestyle.com/index.php/2009/07/18/site-review-lou-riley-live/</feedburner:origLink></item>
		<item>
		<title>Site Review: Nothing But Costumes</title>
		<link>http://feedproxy.google.com/~r/BeyondCaffeine/~3/sO3POH2FU7Y/</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[I was contacted by a friend on Facebook, Mark Rones ( FB ) and asked to review his online costume store called Nothing But Costumes.
The Site &#8211; Nothing But Costumes
The current site is an online web store that sells a wide variety of costumes for all occasions.
I also asked Mark the same two typical pre-review [...]]]></description>
			<content:encoded><![CDATA[<p>I was contacted by a friend on Facebook, Mark Rones ( <a 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>
<div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/BeyondCaffeine?a=sO3POH2FU7Y:VB_JhFXesb4:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/BeyondCaffeine?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/BeyondCaffeine?a=sO3POH2FU7Y:VB_JhFXesb4:ACf-c_HutVc"><img src="http://feeds.feedburner.com/~ff/BeyondCaffeine?d=ACf-c_HutVc" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/BeyondCaffeine?a=sO3POH2FU7Y:VB_JhFXesb4:V_sGLiPBpWU"><img src="http://feeds.feedburner.com/~ff/BeyondCaffeine?i=sO3POH2FU7Y:VB_JhFXesb4:V_sGLiPBpWU" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/BeyondCaffeine?a=sO3POH2FU7Y:VB_JhFXesb4:7Q72WNTAKBA"><img src="http://feeds.feedburner.com/~ff/BeyondCaffeine?d=7Q72WNTAKBA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/BeyondCaffeine?a=sO3POH2FU7Y:VB_JhFXesb4:gIN9vFwOqvQ"><img src="http://feeds.feedburner.com/~ff/BeyondCaffeine?i=sO3POH2FU7Y:VB_JhFXesb4:gIN9vFwOqvQ" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/BeyondCaffeine?a=sO3POH2FU7Y:VB_JhFXesb4:qj6IDK7rITs"><img src="http://feeds.feedburner.com/~ff/BeyondCaffeine?d=qj6IDK7rITs" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/BeyondCaffeine/~4/sO3POH2FU7Y" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://blog.websitestyle.com/index.php/2009/07/07/site-review-nothing-but-costumes/feed/</wfw:commentRss>
		<slash:comments>5</slash:comments>
		<feedburner:origLink>http://blog.websitestyle.com/index.php/2009/07/07/site-review-nothing-but-costumes/</feedburner:origLink></item>
		<item>
		<title>Email Q &amp; A – Business Owner Perks</title>
		<link>http://feedproxy.google.com/~r/BeyondCaffeine/~3/EUZHnkbdpl8/</link>
		<comments>http://blog.websitestyle.com/index.php/2009/07/07/email-q-a-business-owner-perks/#comments</comments>
		<pubDate>Tue, 07 Jul 2009 15:11:06 +0000</pubDate>
		<dc:creator>Nicole</dc:creator>
				<category><![CDATA[Blogging]]></category>
		<category><![CDATA[benefits]]></category>
		<category><![CDATA[business owner]]></category>
		<category><![CDATA[email]]></category>
		<category><![CDATA[qa]]></category>

		<guid isPermaLink="false">http://blog.websitestyle.com/?p=541</guid>
		<description><![CDATA[A possible business major has this to ask: Q: "What is the best thing about being a business owner?"]]></description>
			<content:encoded><![CDATA[<p>Here&#8217;s a quick email Q&#038;A that dropped in today (fair warning, my humor is a bit off today).</p>
<p>Evan R., attending community college full-time and thinking of heading into a business major, has this to ask:</p>
<p>Q: &#8220;What is the best thing about being a business owner?&#8221;<br />
A: &#8220;The best thing about being a business owner is that no one can fire me for wearing rude tee-shirts.&#8221;<br />
<div id="attachment_542" class="wp-caption aligncenter" style="width: 311px"><a href="http://blog.websitestyle.com/wp-content/uploads/2009/07/teeshirt-making-sense-just-isnt-your-thing.gif"><img src="http://blog.websitestyle.com/wp-content/uploads/2009/07/teeshirt-making-sense-just-isnt-your-thing.gif" alt="Make sense please." title="teeshirt-making-sense-just-isnt-your-thing" width="301" height="194" class="size-full wp-image-542" /></a><p class="wp-caption-text">Make sense please.</p></div><br />
Oh okay okay&#8230;</p>
<p>AND it&#8217;s also really nice that no one else can fire you either. Except yourself. But then, if you want to fire yourself, there are bigger problems going on.</p>
<p>Fine fine, I&#8217;ll get serious. The most awesome part of being a business owner is knowing that you created something that it lives or dies based solely on the strength you have to keep it alive. It&#8217;s entirely up to you to keep it afloat. If that kind of pressure doesn&#8217;t sound exciting &#8230; it&#8217;s not for you. But if it is something that sounds appealing, watching your business prosper, struggle, change, improve, etc&#8230; it&#8217;s like being a parent. A totally awesome, completely horrifying at times, experience.</p>
<p>~Nicole</p>
<div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/BeyondCaffeine?a=EUZHnkbdpl8:96SqYbPY34E:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/BeyondCaffeine?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/BeyondCaffeine?a=EUZHnkbdpl8:96SqYbPY34E:ACf-c_HutVc"><img src="http://feeds.feedburner.com/~ff/BeyondCaffeine?d=ACf-c_HutVc" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/BeyondCaffeine?a=EUZHnkbdpl8:96SqYbPY34E:V_sGLiPBpWU"><img src="http://feeds.feedburner.com/~ff/BeyondCaffeine?i=EUZHnkbdpl8:96SqYbPY34E:V_sGLiPBpWU" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/BeyondCaffeine?a=EUZHnkbdpl8:96SqYbPY34E:7Q72WNTAKBA"><img src="http://feeds.feedburner.com/~ff/BeyondCaffeine?d=7Q72WNTAKBA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/BeyondCaffeine?a=EUZHnkbdpl8:96SqYbPY34E:gIN9vFwOqvQ"><img src="http://feeds.feedburner.com/~ff/BeyondCaffeine?i=EUZHnkbdpl8:96SqYbPY34E:gIN9vFwOqvQ" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/BeyondCaffeine?a=EUZHnkbdpl8:96SqYbPY34E:qj6IDK7rITs"><img src="http://feeds.feedburner.com/~ff/BeyondCaffeine?d=qj6IDK7rITs" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/BeyondCaffeine/~4/EUZHnkbdpl8" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://blog.websitestyle.com/index.php/2009/07/07/email-q-a-business-owner-perks/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://blog.websitestyle.com/index.php/2009/07/07/email-q-a-business-owner-perks/</feedburner:origLink></item>
		<item>
		<title>Site Review: New Focal Media</title>
		<link>http://feedproxy.google.com/~r/BeyondCaffeine/~3/zgKZGc_F8Ms/</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 as a [...]]]></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 &#8217;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>
<div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/BeyondCaffeine?a=zgKZGc_F8Ms:LI9D6TUKI4U:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/BeyondCaffeine?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/BeyondCaffeine?a=zgKZGc_F8Ms:LI9D6TUKI4U:ACf-c_HutVc"><img src="http://feeds.feedburner.com/~ff/BeyondCaffeine?d=ACf-c_HutVc" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/BeyondCaffeine?a=zgKZGc_F8Ms:LI9D6TUKI4U:V_sGLiPBpWU"><img src="http://feeds.feedburner.com/~ff/BeyondCaffeine?i=zgKZGc_F8Ms:LI9D6TUKI4U:V_sGLiPBpWU" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/BeyondCaffeine?a=zgKZGc_F8Ms:LI9D6TUKI4U:7Q72WNTAKBA"><img src="http://feeds.feedburner.com/~ff/BeyondCaffeine?d=7Q72WNTAKBA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/BeyondCaffeine?a=zgKZGc_F8Ms:LI9D6TUKI4U:gIN9vFwOqvQ"><img src="http://feeds.feedburner.com/~ff/BeyondCaffeine?i=zgKZGc_F8Ms:LI9D6TUKI4U:gIN9vFwOqvQ" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/BeyondCaffeine?a=zgKZGc_F8Ms:LI9D6TUKI4U:qj6IDK7rITs"><img src="http://feeds.feedburner.com/~ff/BeyondCaffeine?d=qj6IDK7rITs" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/BeyondCaffeine/~4/zgKZGc_F8Ms" height="1" width="1"/>]]></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>
		<feedburner:origLink>http://blog.websitestyle.com/index.php/2009/07/06/site-review-new-focal-media/</feedburner:origLink></item>
		<item>
		<title>The All-American Freebie</title>
		<link>http://feedproxy.google.com/~r/BeyondCaffeine/~3/O81s9cOhq5Y/</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 American [...]]]></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>
<div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/BeyondCaffeine?a=O81s9cOhq5Y:defm3h_BooM:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/BeyondCaffeine?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/BeyondCaffeine?a=O81s9cOhq5Y:defm3h_BooM:ACf-c_HutVc"><img src="http://feeds.feedburner.com/~ff/BeyondCaffeine?d=ACf-c_HutVc" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/BeyondCaffeine?a=O81s9cOhq5Y:defm3h_BooM:V_sGLiPBpWU"><img src="http://feeds.feedburner.com/~ff/BeyondCaffeine?i=O81s9cOhq5Y:defm3h_BooM:V_sGLiPBpWU" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/BeyondCaffeine?a=O81s9cOhq5Y:defm3h_BooM:7Q72WNTAKBA"><img src="http://feeds.feedburner.com/~ff/BeyondCaffeine?d=7Q72WNTAKBA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/BeyondCaffeine?a=O81s9cOhq5Y:defm3h_BooM:gIN9vFwOqvQ"><img src="http://feeds.feedburner.com/~ff/BeyondCaffeine?i=O81s9cOhq5Y:defm3h_BooM:gIN9vFwOqvQ" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/BeyondCaffeine?a=O81s9cOhq5Y:defm3h_BooM:qj6IDK7rITs"><img src="http://feeds.feedburner.com/~ff/BeyondCaffeine?d=qj6IDK7rITs" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/BeyondCaffeine/~4/O81s9cOhq5Y" height="1" width="1"/>]]></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>
		<feedburner:origLink>http://blog.websitestyle.com/index.php/2009/07/04/the-all-american-freebie/</feedburner:origLink></item>
		<item>
		<title>Time For A New Look</title>
		<link>http://feedproxy.google.com/~r/BeyondCaffeine/~3/CX4ZIMIqN-c/</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>
<div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/BeyondCaffeine?a=CX4ZIMIqN-c:Wn4xEu38ZAQ:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/BeyondCaffeine?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/BeyondCaffeine?a=CX4ZIMIqN-c:Wn4xEu38ZAQ:ACf-c_HutVc"><img src="http://feeds.feedburner.com/~ff/BeyondCaffeine?d=ACf-c_HutVc" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/BeyondCaffeine?a=CX4ZIMIqN-c:Wn4xEu38ZAQ:V_sGLiPBpWU"><img src="http://feeds.feedburner.com/~ff/BeyondCaffeine?i=CX4ZIMIqN-c:Wn4xEu38ZAQ:V_sGLiPBpWU" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/BeyondCaffeine?a=CX4ZIMIqN-c:Wn4xEu38ZAQ:7Q72WNTAKBA"><img src="http://feeds.feedburner.com/~ff/BeyondCaffeine?d=7Q72WNTAKBA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/BeyondCaffeine?a=CX4ZIMIqN-c:Wn4xEu38ZAQ:gIN9vFwOqvQ"><img src="http://feeds.feedburner.com/~ff/BeyondCaffeine?i=CX4ZIMIqN-c:Wn4xEu38ZAQ:gIN9vFwOqvQ" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/BeyondCaffeine?a=CX4ZIMIqN-c:Wn4xEu38ZAQ:qj6IDK7rITs"><img src="http://feeds.feedburner.com/~ff/BeyondCaffeine?d=qj6IDK7rITs" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/BeyondCaffeine/~4/CX4ZIMIqN-c" height="1" width="1"/>]]></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>
		<feedburner:origLink>http://blog.websitestyle.com/index.php/2009/06/28/time-for-a-new-look/</feedburner:origLink></item>
		<item>
		<title>The New 30 Day Challenge</title>
		<link>http://feedproxy.google.com/~r/BeyondCaffeine/~3/T-Zw_Ahf5oE/</link>
		<comments>http://blog.websitestyle.com/index.php/2009/06/28/the-new-30-day-challenge/#comments</comments>
		<pubDate>Sun, 28 Jun 2009 20:32:48 +0000</pubDate>
		<dc:creator>Nicole</dc:creator>
				<category><![CDATA[Blogging]]></category>
		<category><![CDATA[30 day challenge]]></category>
		<category><![CDATA[30dc]]></category>
		<category><![CDATA[thirty day challenge]]></category>

		<guid isPermaLink="false">http://blog.websitestyle.com/?p=491</guid>
		<description><![CDATA[If you have ever tried out the 30 Day Challenge, it&#8217;s really lots of fun. Even for those of us who have so many online businesses and blogs that we need a spreadsheet to keep track&#8230; you always learn something new!
If you&#8217;ve never tried it, the challenge is to start a new business from scratch [...]]]></description>
			<content:encoded><![CDATA[<p>If you have ever tried out <a href="http://www.thirtydaychallenge.com">the 30 Day Challenge</a>, it&#8217;s really lots of fun. Even for those of us who have so many online businesses and blogs that we need a spreadsheet to keep track&#8230; you always learn something new!</p>
<p>If you&#8217;ve never tried it, the challenge is to start a new business from scratch and make your first $1 in 30 days.</p>
<p>It&#8217;s in pre-season right now, meaning they&#8217;re just posting the preliminary info videos right now that will teach you what you need to do to get ready for the challenge and make it easier on yourself.</p>
<p>~Nicole</p>
<div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/BeyondCaffeine?a=T-Zw_Ahf5oE:pi_AUKbMF5U:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/BeyondCaffeine?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/BeyondCaffeine?a=T-Zw_Ahf5oE:pi_AUKbMF5U:ACf-c_HutVc"><img src="http://feeds.feedburner.com/~ff/BeyondCaffeine?d=ACf-c_HutVc" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/BeyondCaffeine?a=T-Zw_Ahf5oE:pi_AUKbMF5U:V_sGLiPBpWU"><img src="http://feeds.feedburner.com/~ff/BeyondCaffeine?i=T-Zw_Ahf5oE:pi_AUKbMF5U:V_sGLiPBpWU" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/BeyondCaffeine?a=T-Zw_Ahf5oE:pi_AUKbMF5U:7Q72WNTAKBA"><img src="http://feeds.feedburner.com/~ff/BeyondCaffeine?d=7Q72WNTAKBA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/BeyondCaffeine?a=T-Zw_Ahf5oE:pi_AUKbMF5U:gIN9vFwOqvQ"><img src="http://feeds.feedburner.com/~ff/BeyondCaffeine?i=T-Zw_Ahf5oE:pi_AUKbMF5U:gIN9vFwOqvQ" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/BeyondCaffeine?a=T-Zw_Ahf5oE:pi_AUKbMF5U:qj6IDK7rITs"><img src="http://feeds.feedburner.com/~ff/BeyondCaffeine?d=qj6IDK7rITs" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/BeyondCaffeine/~4/T-Zw_Ahf5oE" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://blog.websitestyle.com/index.php/2009/06/28/the-new-30-day-challenge/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://blog.websitestyle.com/index.php/2009/06/28/the-new-30-day-challenge/</feedburner:origLink></item>
		<item>
		<title>Show Some Green Love</title>
		<link>http://feedproxy.google.com/~r/BeyondCaffeine/~3/jw7onE8qf-Q/</link>
		<comments>http://blog.websitestyle.com/index.php/2009/05/06/show-some-green-love/#comments</comments>
		<pubDate>Wed, 06 May 2009 23:28:39 +0000</pubDate>
		<dc:creator>Nicole</dc:creator>
				<category><![CDATA[Blogging]]></category>
		<category><![CDATA[activism]]></category>
		<category><![CDATA[badge]]></category>
		<category><![CDATA[climate]]></category>
		<category><![CDATA[environmental]]></category>
		<category><![CDATA[green]]></category>
		<category><![CDATA[six apart]]></category>
		<category><![CDATA[typepad]]></category>
		<category><![CDATA[vox]]></category>

		<guid isPermaLink="false">http://blog.websitestyle.com/?p=484</guid>
		<description><![CDATA[Looking to make your blog a bit more Green? Earth friendly green that is ...]]></description>
			<content:encoded><![CDATA[<p>I got an email a few hours ago from the team over at Vox suggesting we add a Green badge to the blog. </p>
<p>They&#8217;ve got a pretty nice incentive for anyone worried about the planet. First off, the designs are pretty nice, so no ugly badges to suffer with. </p>
<p>Second, the badges link off to a site called One Million Acts of Green, sponsored by Cisco, which tries to promote <a href="http://www.greennexxus.com/omaog/us/">being green one act at a time</a>.</p>
<p>Third, and pretty awesome of them to do, when the badges have reached 100,000 impression views &#8211; Six Apart (the people behind Vox and Typepad) will donate $1000 to The Climate Project, which is one of the best known <a href="http://www.theclimateproject.org/">green awareness projects online</a>.</p>
<p>Aside from all that, there&#8217;s nothing on the badges about Six Apart or Typepad or Vox, they&#8217;re just images for green support and link off to non-Six Apart companies. Doesn&#8217;t strike me as very self-promoting at all for them to do, which is very cool.</p>
<p>You can grab your own badge off the <a href="http://everything.typepad.com/blog/2009/04/do-your-part.html">list of green site badges</a>.</p>
<p>~Nicole</p>
<div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/BeyondCaffeine?a=jw7onE8qf-Q:9psjWcdPeZE:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/BeyondCaffeine?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/BeyondCaffeine?a=jw7onE8qf-Q:9psjWcdPeZE:ACf-c_HutVc"><img src="http://feeds.feedburner.com/~ff/BeyondCaffeine?d=ACf-c_HutVc" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/BeyondCaffeine?a=jw7onE8qf-Q:9psjWcdPeZE:V_sGLiPBpWU"><img src="http://feeds.feedburner.com/~ff/BeyondCaffeine?i=jw7onE8qf-Q:9psjWcdPeZE:V_sGLiPBpWU" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/BeyondCaffeine?a=jw7onE8qf-Q:9psjWcdPeZE:7Q72WNTAKBA"><img src="http://feeds.feedburner.com/~ff/BeyondCaffeine?d=7Q72WNTAKBA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/BeyondCaffeine?a=jw7onE8qf-Q:9psjWcdPeZE:gIN9vFwOqvQ"><img src="http://feeds.feedburner.com/~ff/BeyondCaffeine?i=jw7onE8qf-Q:9psjWcdPeZE:gIN9vFwOqvQ" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/BeyondCaffeine?a=jw7onE8qf-Q:9psjWcdPeZE:qj6IDK7rITs"><img src="http://feeds.feedburner.com/~ff/BeyondCaffeine?d=qj6IDK7rITs" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/BeyondCaffeine/~4/jw7onE8qf-Q" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://blog.websitestyle.com/index.php/2009/05/06/show-some-green-love/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		<feedburner:origLink>http://blog.websitestyle.com/index.php/2009/05/06/show-some-green-love/</feedburner:origLink></item>
	</channel>
</rss>
