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

<channel>
	<title>The Blog Herald &#187; Ben Bleikamp</title>
	<atom:link href="http://www.blogherald.com/author/ben/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.blogherald.com</link>
	<description>The leading source of news covering social media and the blogosphere.</description>
	<lastBuildDate>Wed, 15 May 2013 03:11:49 +0000</lastBuildDate>
	<language>en-US</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.5.1</generator>
		<item>
		<title>CSS tips and tricks, Part 2</title>
		<link>http://www.blogherald.com/2007/05/22/css-tips-and-tricks-part-2/</link>
		<comments>http://www.blogherald.com/2007/05/22/css-tips-and-tricks-part-2/#comments</comments>
		<pubDate>Tue, 22 May 2007 12:00:44 +0000</pubDate>
		<dc:creator>Ben Bleikamp</dc:creator>
				<category><![CDATA[Features]]></category>
		<category><![CDATA[Guides]]></category>
		<category><![CDATA[Blog Design]]></category>

		<guid isPermaLink="false">http://www.blogherald.com/2007/05/22/css-tips-and-tricks-part-2/</guid>
		<description><![CDATA[Everyone seemed to like the last article I wrote about CSS&#8230;forever ago, so I thought I&#8217;d tackle some more CSS tips and tricks &#8211; give the people what they want, right? These are some more &#8220;basic tips,&#8221; but things that I use every day and thought others might find useful. I know I said I&#8217;d [...]]]></description>
				<content:encoded><![CDATA[<p>Everyone seemed to like the <a href="http://www.blogherald.com/2006/09/08/css-tips-and-tricks/">last article I wrote about CSS</a>&#8230;forever ago, so I thought I&#8217;d tackle some more CSS tips and tricks &#8211; give the people what they want, right?  These are some more &#8220;basic tips,&#8221; but things that I use every day and thought others might find useful.  I know I said I&#8217;d write more about web analytics as they relate to design but I decided this would be faster as I&#8217;m getting close to the deadline&#8230;<span id="more-4154"></span></p>
<p><strong>1.  Reset your styles without using * {margin: 0; padding: 0; }</strong><br />
Eric Meyer made resetting your styles <em>very</em> easy.  All you have to do is load his reset.css file int your page&#8217;s CSS file and you&#8217;re done.   Head on over to <a href="http://meyerweb.com/eric/thoughts/2007/04/12/reset-styles/" title="Eric Meyer's reset.css code">Eric&#8217;s site</a> and copy his code into your own file called reset.css.</p>
<p>Open up your site&#8217;s style.css file and add the following line of code <strong>to the top of your CSS file</strong>:</p>
<pre>
/* Eric Meyer's reset.css fileMore Info:
http://meyerweb.com/eric/thoughts/2007/04/12/reset-styles/  */

@import url('reset.css');</pre>
<p>But why is this useful?  I like it because it does exactly what it&#8217;s intended to do: it resets all the styles that a browser has by default.  With just one line of code I got rid of any default padding, margin, border, or anything else that could cause a bug in my design and take time to find and fix.</p>
<p><strong>2. Use shortcuts for colors, font family and size, and margins and padding</strong></p>
<p>A shortcut for colors:</p>
<pre>color:#ffc</pre>
<p>This code will give you the same color as writing &#8220;#ffffcc.&#8221;  If you&#8217;re new to colors they work like this: &#8220;RRGGBB&#8221; &#8211; how much red, green, and blue do you want your color to have?<br />
&#8220;#000000&#8243; is black, &#8220;#ffffff&#8221; is white.  Instead of RRGGBB you can just use &#8220;RGB&#8221; in your CSS.  So &#8220;#000&#8243; is black, &#8220;#FFF&#8221; is white.</p>
<p>Some people write their code for fonts like this:</p>
<pre>
body {
   font-size: 1em;
   font-family: Arial, Helvetica, Sans-Serif;
   line-height: 1.5em;
   font-weight: bold;
}</pre>
<p>I would write my code like this:</p>
<pre>
body { font: 1em/1.5em bold Helvetica, Arial, Sans-serif; }</pre>
<p>And then of course, the margins and padding.  I have looked at a lot of CSS that is full of styles that look sort of like&#8230;</p>
<pre>
body {
     margin-top: 5px;
     margin-left: 5px;
     margin-bottom: 0;
     margin-right: 0;
 }</pre>
<p>Why not simply write</p>
<pre>
body { margin: 5px 0 0 5px; }</pre>
<p>The way the margin and padding code works is very simple:</p>
<pre>
margin: [top] [right] [bottom] [left].</pre>
<p>Or, if the top/bottom and left/right are the same you could write it</p>
<pre>margin: [top/bottom] [left/right]</pre>
<p>Shortcuts may not seem like a big deal when you can type 100 words per minute, but when you&#8217;re writing CSS all day long they make a huge difference in the size of your CSS file and the time it takes to write, update, or change your code.</p>
<p><strong>3. The difference between classes and IDs is important</strong><br />
If you&#8217;re truly interested in understanding why and how to use IDs vs. classes there is all sorts of material available on the subject.  The simple rule to follow is this:</p>
<p><em>An ID is used once per page, for a unique element.  A class is used to style multiple elements the same way.</em></p>
<p>For example, on your main page you might have a &lt;div&gt; that encloses your posts.  That should be styled using a class.  However, you might have another &lt;div&gt; that holds your logo &#8211; that can be styled using an ID since it is a unique element used only once on the page.</p>
<p><strong>4. An element is allowed to have more than one class.<br />
</strong>I didn&#8217;t realize this for far too long, but you can give any element more than once class.  This comes in handy pretty regularly when you&#8217;re working on large projects and want to keep the CSS and XHTML light and easy to update.</p>
<p>The XHTML might look like this:</p>
<pre>&lt;div class="post featured"&gt;
...featured post content...
&lt;/div&gt;</pre>
<p>and the CSS imight look like this:</p>
<pre>.post { color: #333; margin: 0; padding: 0; }
.featured { background: #ccc; }</pre>
<p>So the featured post has the same font colors and margin/padding as all the other posts but it gets its own background color so that it stands out as featured.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.blogherald.com/2007/05/22/css-tips-and-tricks-part-2/feed/</wfw:commentRss>
		<slash:comments>5</slash:comments>
		</item>
		<item>
		<title>Launching Your Redesign Is Just The Start</title>
		<link>http://www.blogherald.com/2007/05/15/launching-your-redesign-is-just-the-start/</link>
		<comments>http://www.blogherald.com/2007/05/15/launching-your-redesign-is-just-the-start/#comments</comments>
		<pubDate>Tue, 15 May 2007 18:40:15 +0000</pubDate>
		<dc:creator>Ben Bleikamp</dc:creator>
				<category><![CDATA[Features]]></category>
		<category><![CDATA[Guides]]></category>
		<category><![CDATA[Blog Design]]></category>

		<guid isPermaLink="false">http://www.blogherald.com/2007/05/15/launching-your-redesign-is-just-the-start/</guid>
		<description><![CDATA[So you've spent hundreds of hours tweaking your redesign, making every pixel look perfect. You've showed it to a few friends, you've tested it in all the major browsers, and you're ready to push it live on your site.

<b>Cool</b>.

You're not even close to done, though.]]></description>
				<content:encoded><![CDATA[<p>So you&#8217;ve spent hundreds of hours tweaking your redesign, making every pixel look perfect.  You&#8217;ve showed it to a few friends, you&#8217;ve tested it in all the major browsers, and you&#8217;re ready to push it live on your site.</p>
<p>Cool.</p>
<p><strong>You&#8217;re not even close to done, though</strong>.</p>
<p>Once your redesign launches you need to figure out how well it works.  Don&#8217;t listen to all those people in the comments telling you how much you kick ass and how great it looks.  They don&#8217;t know what they&#8217;re talking about.  You need data.</p>
<h3>Getting the data</h3>
<p><img src="http://www.blogherald.com/wp-content/uploads/2007/05/heatmap.gif" alt="heatmap.gif" align="left" hspace="20" />Head on over to <a href="http://www.crazyegg.com">CrazyEgg</a> and get a heatmap setup so that you can figure out where people are clicking.  Once you know where they&#8217;re clicking you can realign your site to put the key action items where people seem to be looking the most.  You&#8217;ll also know whether or not that AdSense block is in the right place, whether anyone is seeing your &#8220;Keep reading&#8221; links, and all sorts of other useful information that will help you realign the layout that you thought was perfect.</p>
<p>Along with CrazyEgg I would suggest signing up for Google Analytics.  You can track where visitors go on your website and get an idea of how long people spend on your site.  If people are spending an average of 5 seconds on your website, you did something wrong.  Go back, rework the site, and figure out how to capture their attention.  Make fonts bigger, make links a different color &#8211; do something and see if it works.  If it doesn&#8217;t try again.</p>
<h3>A design is never done</h3>
<p>Your design might look great but you can always tweak it and try to get just a little bit more out of it.  Once you&#8217;ve gotten everything you can out of a design, it&#8217;s time to redesign&#8230;again.  Your design is there to solve a problem, if it&#8217;s not solving problems then it&#8217;s not a useful design.</p>
<p>Designing on the web is not about making things as pretty as you can.  It&#8217;s about making things work for users.  It&#8217;s nice to make things look great and work for users, but the primary goal is making the user experience as smooth as possible.</p>
<p>Redesigning without using web analytics, heatmaps, and whatever other tools are at your disposal is useless.  Your goal shouldn&#8217;t be to just make your site look nicer &#8211; make it WORK.  Make it USEFUL.  Make sure your design decisions aren&#8217;t based on &#8220;this looks cool.&#8221;</p>
<h3>Not everyone browses the web like you do</h3>
<p>As a designer one of the most important things to realize is that not everyone is browsing the web the way you do.  Some people like search boxes, others like navigation bars, others like clicking through links in posts.</p>
<p>This is why looking at heatmaps and web analytics is so important.  If you base your design on what YOU do then you&#8217;re not giving average users much of a chance to navigate your site.  I personally think big footers are great, but do users really scroll all the way down to look at them?  Maybe.  Maybe not.  You need to run an analysis on your site if you have a big footer to see if people are actually clicking the links.</p>
<p>So what am I writing about next week?  I&#8217;ll take you through the design decisions on my recent redesign of <a href="http://www.okdork.com">OkDork.com</a> and explain what the CrazyEgg heatmap tells me.</p>
<p><em><a href="http://www.bleikamp.com">Ben Bleikamp</a>is a freelance designer and student from Columbus, OH.  He enjoys Chipotle burritos and hates waking up early.</em></p>
]]></content:encoded>
			<wfw:commentRss>http://www.blogherald.com/2007/05/15/launching-your-redesign-is-just-the-start/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>How to setup WordPress locally on your Mac</title>
		<link>http://www.blogherald.com/2006/11/16/how-to-setup-wordpress-locally-on-your-mac/</link>
		<comments>http://www.blogherald.com/2006/11/16/how-to-setup-wordpress-locally-on-your-mac/#comments</comments>
		<pubDate>Thu, 16 Nov 2006 07:53:29 +0000</pubDate>
		<dc:creator>Ben Bleikamp</dc:creator>
				<category><![CDATA[Guides]]></category>
		<category><![CDATA[Blog Design]]></category>

		<guid isPermaLink="false">http://www.blogherald.com/2006/11/16/how-to-setup-wordpress-locally-on-your-mac/</guid>
		<description><![CDATA[I wrote an article at my personal blog that explains how I setup WordPress on my MacBook. I design everything in my local test environment because I hate logging into web servers and uploading things constantly &#8211; I&#8217;m the type of designer that has to see a change the moment I make it. If you&#8217;ve [...]]]></description>
				<content:encoded><![CDATA[<p>I wrote <a href="http://www.bleikamp.com/2006/11/16/wordpress-on-a-mac/">an article at my personal blog that explains how I setup WordPress on my MacBook</a>.  I design everything in my local test environment because I hate logging into web servers and uploading things constantly &#8211; I&#8217;m the type of designer that has to see a change the moment I make it.<span id="more-4551"></span></p>
<p>If you&#8217;ve never setup a local development server, what better time than now?  It&#8217;s easy, it takes less than 30 minutes, and you&#8217;ll save tons of time in the future when you&#8217;re working on new sites!</p>
]]></content:encoded>
			<wfw:commentRss>http://www.blogherald.com/2006/11/16/how-to-setup-wordpress-locally-on-your-mac/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>The b5media redesign</title>
		<link>http://www.blogherald.com/2006/11/06/the-b5media-redesign/</link>
		<comments>http://www.blogherald.com/2006/11/06/the-b5media-redesign/#comments</comments>
		<pubDate>Mon, 06 Nov 2006 05:26:29 +0000</pubDate>
		<dc:creator>Ben Bleikamp</dc:creator>
				<category><![CDATA[Features]]></category>
		<category><![CDATA[Blog Design]]></category>
		<category><![CDATA[Professional Blogging]]></category>

		<guid isPermaLink="false">http://www.blogherald.com/2006/11/06/the-b5media-redesign/</guid>
		<description><![CDATA[In early October I was sent an email by the guys at b5media asking whether I would be interested in working with them on a project that had a tight deadline. I&#8217;d heard of b5 and read their main blog a few times, but I wasn&#8217;t a regular reader and didn&#8217;t know any of the [...]]]></description>
				<content:encoded><![CDATA[<p>In early October I was sent an email by the guys at <a href="http://www.b5media.com">b5media</a> asking whether I would be interested in working with them on a project that had a tight deadline.  I&#8217;d heard of b5 and read their main blog a few times, but I wasn&#8217;t a regular reader and didn&#8217;t know any of the people running the network.<span id="more-4460"></span>  A few days later they announced that <a href="http://www.b5media.com/b5media-inc-raises-us2-million/">they&#8217;d taken $2,000,000 in venture capital</a> and then they sent me another email explaining that they needed an overhaul of their main page to turn it into a bit more of a portal.  Suddenly everything made sense.</p>
<p><!--more--></p>
<p>I talked to Aaron Brazell on the phone and started to get an idea of what they were looking for.  I did a few comps for them, and the first 3 or 4 were pretty bad.  Actually, they sucked.  Everyone was sending emails back and forth with dieas.  Then one of the guys said they wanted the page to feel like a place where people could &#8220;<strong>discover</strong>&#8221; b5media.  That got things moving in my head and I came up with a design very quickly after that.</p>
<p>The comp is actually almost exactly the same as the final product.</p>
<p><center><img style="border: 1px solid #aaaaaa; padding: 5px" alt="b5.gif" id="image42" src="http://www.bleikamp.com/wp-content/uploads/2006/11/b5.gif" /></center></p>
<h3>Why I did what I did</h3>
<p>The design itself is meant to provide a brief overview of the network for people who are new to the site, wondering about advertising options, or wondering how they could start blogging for b5media.  If I did my job right the front page will be enticing enough to convince these audiences to click through the rest of the site and keep learning about the network.</p>
<p>The Ajax splash is the most obvious part of the design.  It has information on advertising on b5media&#8217;s network, blogging for b5, or subscribing to some of their 100+ blogs.  The goal was to let someone from any single person from the 3 key audiences find the information they wanted quickly.</p>
<p>The random channel is something that b5media didn&#8217;t have before on their homepage.  It&#8217;s similar to what <a href="http://www.9rules.com">9rules</a> does &#8211; it gives each member a chance to show up on the home page and drive a little bit more traffic to their blog.  The content is pulled using b5&#8242;s custom API.  If you want to know how it works, talk to <a href="http://www.technosailor.com">Aaron</a>.</p>
<p>The blogroll was actually something they had already been working on, all I had to do was drop in the JavaScript and add some CSS to make it match the rest of my design.</p>
<h3>It&#8217;s not perfect</h3>
<p>I know it&#8217;s not perfect (yet).  The background image on the content doesn&#8217;t match to the background perfectly &#8211; that&#8217;s my fault because in the middle of the design I messed with my color settings in Photoshop and didn&#8217;t realize it until the design went live.  The test comments I was looking at didn&#8217;t look as obvious for some reason.  This mistake will be fixed sometime this week &#8211; once the guys are back from AdTech.</p>
<p>There might be errors in IE6, IE7, and even Firefox.  If you find a problem, let me or one of the b5media guys know and we&#8217;ll figure out a way to fix it.</p>
<h3>That&#8217;s all, folks</h3>
<p>It was fun working on a small team to get the design launched by the deadline.  Being a freelance designer means that a lot of times it&#8217;s just me working with a client who questions a lot of my decisions.  b5media let me do the designing and worked with me on the coding.  Aaron Brazell put together a few PHP scripts and even a custom WordPress plugin to make all the pieces of the design work.  Everyone sent me what I needed on time.  And it was impressive (and fun) to see it all take shape at the end.</p>
<p>I&#8217;m going to dig a little deeper in the code in my next post at The Blog Herald and explain some of the techniques I used to make the site look &#8220;right&#8221; in most browsers.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.blogherald.com/2006/11/06/the-b5media-redesign/feed/</wfw:commentRss>
		<slash:comments>10</slash:comments>
		</item>
		<item>
		<title>Simplify your font selection</title>
		<link>http://www.blogherald.com/2006/09/27/simplify-your-font-selection/</link>
		<comments>http://www.blogherald.com/2006/09/27/simplify-your-font-selection/#comments</comments>
		<pubDate>Wed, 27 Sep 2006 18:00:20 +0000</pubDate>
		<dc:creator>Ben Bleikamp</dc:creator>
				<category><![CDATA[News]]></category>
		<category><![CDATA[Blog Design]]></category>

		<guid isPermaLink="false">http://www.blogherald.com/2006/09/27/simplify-your-font-selection/</guid>
		<description><![CDATA[I&#8217;m working hard on a CSS Tips and Tricks, Part 2 article but until then I&#8217;ll complain a little bit about a design mistake I see popping up. Please&#8230;pretty please: stop using so many different fonts in the body of your website. As a general rule you should use exactly 2 fonts. If you&#8217;re really [...]]]></description>
				<content:encoded><![CDATA[<p>I&#8217;m working hard on a CSS Tips and Tricks, Part 2 article but until then I&#8217;ll complain a little bit about a design mistake I see popping up.</p>
<p>Please&#8230;pretty please: stop using so many different fonts in the body of your website.  As a general rule you should use exactly 2 fonts.  If you&#8217;re really good at what you do and think you can use a 3rd font judiciously do so at your own risk.<span id="more-4221"></span></p>
<p>The majority of web sites really have no need for a 3rd font.  Use a font for headings and a font for body text.  Make sure the font is easy to read.  Make sure it&#8217;s a font that the majority of your visitors have.</p>
<p>If we don&#8217;t have the font, go ahead and give our browsers another option.  When I am working on a website one of my &#8220;standard&#8221; font rules looks like this:<br />
<code><br />
p { font: 1.2em Arial, Helvetica, Sans Serif; }<br />
</code></p>
<p>This way if the user doesn&#8217;t have Arial on their computer, it goes to Helvetica (which looks better anyway, but doesn&#8217;t come standard on most PCs) and at the very least they get a Sans Serif font.</p>
<p>Another rule of thumb that I wasn&#8217;t planning on talking about but just popped into my head: please try to give your font and background a good amount of contrast.  Bright yellow fonts on white backgrounds are the reason I don&#8217;t use MySpace &#8211; don&#8217;t make it the reason I&#8217;m not reading your blog.</p>
<p>Any other tips for keeping websites useable?  Post them in the comments.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.blogherald.com/2006/09/27/simplify-your-font-selection/feed/</wfw:commentRss>
		<slash:comments>5</slash:comments>
		</item>
		<item>
		<title>Dan Rather on David Letterman, 9/17/01</title>
		<link>http://www.blogherald.com/2006/09/11/dan-rather-on-david-letterman-91701/</link>
		<comments>http://www.blogherald.com/2006/09/11/dan-rather-on-david-letterman-91701/#comments</comments>
		<pubDate>Mon, 11 Sep 2006 18:32:33 +0000</pubDate>
		<dc:creator>Ben Bleikamp</dc:creator>
				<category><![CDATA[General]]></category>

		<guid isPermaLink="false">http://www.blogherald.com/2006/09/11/dan-rather-on-david-letterman-91701/</guid>
		<description><![CDATA[This is one of the most vivid memories for me in the days and weeks following September 11th. Dan Rather was on David Letterman on September 17th, 2001 and he broke down in tears talking about the firemen and police officers helping at ground zero and then later when reciting a verse of America the [...]]]></description>
				<content:encoded><![CDATA[<p>This is one of the most vivid memories for me in the days and weeks following September 11th.  Dan Rather was on David Letterman on September 17th, 2001 and he broke down in tears talking about the firemen and police officers helping at ground zero and then later when reciting a verse of America the Beautiful.<span id="more-4135"></span></p>
<p><object width="425" height="350"><param name="movie" value="http://www.youtube.com/v/k26nH6ZpWy0"></param><embed src="http://www.youtube.com/v/k26nH6ZpWy0" type="application/x-shockwave-flash" width="425" height="350"></embed></object></p>
<p>It&#8217;s amazing to think back about how unified we were, and think that even critics of Bush were proud of what he was doing.  Five years later, politics have skewed our perspectives a bit, but we can still remember how we felt that day and how proud we were of America.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.blogherald.com/2006/09/11/dan-rather-on-david-letterman-91701/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Yeah. Crazy.</title>
		<link>http://www.blogherald.com/2006/09/11/yeah-crazy/</link>
		<comments>http://www.blogherald.com/2006/09/11/yeah-crazy/#comments</comments>
		<pubDate>Mon, 11 Sep 2006 06:00:55 +0000</pubDate>
		<dc:creator>Ben Bleikamp</dc:creator>
				<category><![CDATA[General]]></category>

		<guid isPermaLink="false">http://www.blogherald.com/2006/09/11/yeah-crazy/</guid>
		<description><![CDATA[My memory of September 11th, 2001 is very vivid &#8211; I&#8217;m sure most Americans feel the same way. We can recall the names of people we were near, even if we haven&#8217;t seen them in years. We know what time we heard about the terrorist attacks. When I first heard about the planes crashing into [...]]]></description>
				<content:encoded><![CDATA[<p>My memory of September 11th, 2001 is very vivid &#8211; I&#8217;m sure most Americans feel the same way.  We can recall the names of people we were near, even if we haven&#8217;t seen them in years.  We know what time we heard about the terrorist attacks.<span id="more-4132"></span></p>
<p>When I first heard about the planes crashing into the World Trade Center I was a sophomore in high school on my way to geometry class.  I remember hating geometry.  I was relieved that we would have a substitute that day because our teacher had been sick.  </p>
<p>As I was walking through the hallways I heard a few people talking about planes hitting buildings, so I thought a plane had crashed locally &#8211; one of Delta&#8217;s main hubs is the Cincinnati Northern Kentucky International Airport.</p>
<p>One of my friends had been in the library the period before and saw the news online.  He asked me &#8220;Isn&#8217;t this nuts?  A plane hit the World Trade Center&#8230;&#8221;  <strong>Yeah.  Crazy.</strong>  </p>
<p>I went to class, realizing that it was a tragedy, but not understanding that it was an attack.  When I got to geometry a few people had crowded around the television, and as I glanced over I saw the second plane hit the towers.  At the time I thought they were replaying the first plane hitting &#8211; but as they panned out, I saw two plumes of smoke.  Both towers were hit.  It took a little bit for everyone to realize it wasn&#8217;t an accident.</p>
<p>Mr. Meltebrink (the substitute teacher) said something about a historic event, the start of a war, etc.  While we all knew it was an attack and warranted retaliation I don&#8217;t think anyone realized how big of an impact that day would have on our lives.</p>
<p>It&#8217;s amazing how many conversations and comments I can remember from the day.  The rest of the day we went from class to class, never staying away from a television for more than a few minutes at a time.  Suddenly all the quizzes, tests, and homework assignments seemed a bit trivial.</p>
<p>I remember in 6th period I had religion class (I went to a private high school) and our teacher, normally excited to teach and fun to listen to, was very somber.  He warned us about the next few days and the graphic images of bodies being pulled from the wreckage.  Now, as we know, there were very few bodies pulled out of ground zero.</p>
<p>I remember coming home and seeing that every channel, not just the standard news channels, had plugged into one of the many feeds showing the live coverage.  The anchors all looked exhausted, some of them were in the studios for more than 24 hours straight trying to bring everyone the latest news.  Even MTV interrupted regular broadcasting and was showing the ABC news coverage.</p>
<p>It&#8217;s hard to believe September 11th, 2001 was five years ago.  It seems like it was yesterday.  All of the memories are so vivid.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.blogherald.com/2006/09/11/yeah-crazy/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Ads should match your blog</title>
		<link>http://www.blogherald.com/2006/09/08/ads-should-match-your-blog/</link>
		<comments>http://www.blogherald.com/2006/09/08/ads-should-match-your-blog/#comments</comments>
		<pubDate>Fri, 08 Sep 2006 07:05:00 +0000</pubDate>
		<dc:creator>Ben Bleikamp</dc:creator>
				<category><![CDATA[News]]></category>
		<category><![CDATA[Blog Design]]></category>

		<guid isPermaLink="false">http://www.blogherald.com/2006/09/08/ads-should-match-your-blog/</guid>
		<description><![CDATA[When I visit a site that has matched the advertisements to their design I appreciate that the owner took the time to think about that detail. I am not tricked into clicking the advertisements. I don&#8217;t feel like anyone is trying to be sly. I just like that the ads aren&#8217;t taking away from the [...]]]></description>
				<content:encoded><![CDATA[<p>When I visit a site that has matched the advertisements to their design I appreciate that the owner took the time to think about that detail.  I am not tricked into clicking the advertisements.  I don&#8217;t feel like anyone is trying to be sly.  I just like that the ads aren&#8217;t taking away from the rest of the site.<span id="more-4113"></span></p>
<p>Make your ads blend in.  Not because people will click on them, but because they won&#8217;t take away from the content you&#8217;re trying to highlight.  The first thing I want to notice on any website, especially a blog, is the content.  Not the advertisements.</p>
<p>So how do you go about this? (Keep in mind, these aren&#8217;t techniques that will necessarily make you more money &#8211; they are techniques that will keep me at your blog longer than 4 seconds)</p>
<p>If your advertisers will allow you, design banners that match your site.  Use your colors, use borders that match the rest of your blog, and use the fonts that you have used on any other graphics.</p>
<p>If your advertisers won&#8217;t allow you to design custom banners, you can at least put a border around the advertisements so that they aren&#8217;t floating in the middle of no where.</p>
<p>If you&#8217;re using AdSense, make sure the colors you use match your site.  If your links are yellow on your site, make the links in AdSense banners yellow.</p>
<p>When I used to promote 6 Figure Blogging I designed a custom, &#8220;plasticy&#8221; button to put on <a href="http://www.college-startup.com">College Startup</a>.  I didn&#8217;t do it because I wanted a higher CTR, but I did.  My goal was to make the site look complete.  I wanted everything to flow together nicely.</p>
<p>Check out the AdSense implementation at <a href="http://www.karencheng.com.au/">Karen Cheng&#8217;s site</a>.  She was mentioned in <a href="http://www.problogger.net/archives/2006/02/17/designer-adsense-ads/">Darren&#8217;s post about designer AdSense implementations</a>.</p>
<p>Know of any other well implemented advertisements?  List them below in the comments.  Get some ideas flowing on how to integrate ads so that they don&#8217;t take away from the user experience.  Maybe your users will appreciate it and click your ads to say thank you :)</p>
]]></content:encoded>
			<wfw:commentRss>http://www.blogherald.com/2006/09/08/ads-should-match-your-blog/feed/</wfw:commentRss>
		<slash:comments>11</slash:comments>
		</item>
		<item>
		<title>How to make your blog more useable in 3 steps</title>
		<link>http://www.blogherald.com/2006/08/24/how-to-make-your-blog-more-useable-in-3-steps/</link>
		<comments>http://www.blogherald.com/2006/08/24/how-to-make-your-blog-more-useable-in-3-steps/#comments</comments>
		<pubDate>Thu, 24 Aug 2006 05:00:16 +0000</pubDate>
		<dc:creator>Ben Bleikamp</dc:creator>
				<category><![CDATA[News]]></category>
		<category><![CDATA[Blog Design]]></category>

		<guid isPermaLink="false">http://www.blogherald.com/2006/08/24/how-to-make-your-blog-more-useable-in-3-steps/</guid>
		<description><![CDATA[You don&#8217;t need a killer design that costs $3,000 to have a decent looking blog. You just need to make sure it&#8217;s useable. That means paying attention to a few details, but nothing that requires a professional designer. 1. Line-height is important. Open up your stylesheet. Find the rule that defines the font size and [...]]]></description>
				<content:encoded><![CDATA[<p>You don&#8217;t need a killer design that costs $3,000 to have a decent looking blog.  You just need to make sure it&#8217;s useable.  That means paying attention to a few details, but nothing that requires a professional designer.<span id="more-4025"></span></p>
<p><strong>1. Line-height is important.</strong></p>
<p>Open up your stylesheet.  Find the rule that defines the font size and font family for your main paragraphs.  It might look something like this:</p>
<p><code>p { font: 1.2em Arial, Helvetica, Sans-Serif; }</code></p>
<p>Then, add a quick rule:</p>
<p><code>p { font: 1.2em Arial, Helvetica, Sans-Serif; <strong>line-height: 1.4em</strong> }<br />
</code></p>
<p>It doesn&#8217;t necessarily have to be 1.4em, just make sure that it spaces out the lines in your paragraphs a little bit more than the default.  It will make reading your posts a much better experience for your users.</p>
<p><strong>2. Make sure your title tag includes the title of the current post.</strong></p>
<p>I hate when a blog doesn&#8217;t include the title of the latest post in the title of the page.  When I bookmark a particular post I have to add the title of the post on my own.  Not cool.  Let me know what post I&#8217;m reading.  It&#8217;s usually pretty simple code.  If you&#8217;re using WordPress, look at the default template and copy &#038; paste that code from the title tag and edit it accordingly.</p>
<p><strong>3. Make your links stand out</strong></p>
<p>This has been beaten to death by every single designer that has ever talked about standards.  Make your links stand out.  They don&#8217;t have to be blue with a underline, they can be bold and red.  They can be italicized and pink.  Just make sure it looks different from the rest of your text.  At the very least make sure the color is noticeably different.  I want to know what is a link, that way I can actually click on it.</p>
<p>A useable blog means happy visitors, happy visitors like to come back, and that means more traffic for you.  Make sure your blog is easy to ready, easy to navigate, and easy for users to enjoy.  After that you just have to worry about writing great content &#8211; and that&#8217;s easy, right?</p>
]]></content:encoded>
			<wfw:commentRss>http://www.blogherald.com/2006/08/24/how-to-make-your-blog-more-useable-in-3-steps/feed/</wfw:commentRss>
		<slash:comments>5</slash:comments>
		</item>
		<item>
		<title>Details make good design great</title>
		<link>http://www.blogherald.com/2006/08/12/details-make-good-design-great/</link>
		<comments>http://www.blogherald.com/2006/08/12/details-make-good-design-great/#comments</comments>
		<pubDate>Sun, 13 Aug 2006 02:57:12 +0000</pubDate>
		<dc:creator>Ben Bleikamp</dc:creator>
				<category><![CDATA[News]]></category>
		<category><![CDATA[Blog Design]]></category>

		<guid isPermaLink="false">http://www.blogherald.com/2006/08/12/details-make-good-design-great/</guid>
		<description><![CDATA[Why do some people get recognized as great designers? They&#8217;re doing the same gradients, the same tabs, the same outer glows, and designing the same layouts as everyone else. The thing great designers do is focus on the details. They take a basic element, such as a comment box, and make it unique, they make [...]]]></description>
				<content:encoded><![CDATA[<p>Why do some people get recognized as great designers?  They&#8217;re doing the same gradients, the same tabs, the same outer glows, and designing the same layouts as everyone else.  The thing great designers do is focus on the details.  They take a basic element, such as a comment box, and make it unique, they make it fit into their design.<br />
<span id="more-3950"></span></p>
<p>A lot of blogs have a pretty standard comment form.  A lot of blogs with great designs have a great looking comment form.  Part of having a custom template should include customizing everything &#8211; even the forms.</p>
<p><img id="image3951" src="http://www.blogherald.com/wp-content/uploads/2006/08/9rulescomments.gif" alt="9rulescomments.gif" style="padding: 5px; border: 1px solid #aaa;" /></p>
<p>In this screenshot you see the comment form from 9rules.com.  Mike Rundle did a great job making the comment form fit into the site, added a great looking submit button, and helped make the comment form stand out and add a little extra <em>detail</em> to the site.</p>
<p><img id="image3952" src="http://www.blogherald.com/wp-content/uploads/2006/08/standard.gif" alt="standard.gif" style="padding:5px; border: 1px solid #aaa;" /></p>
<p>Can you tell which site this comment form is from?  Probably not.  It&#8217;s from the default WordPress theme.  It&#8217;s boring, it would work on any site but it certainly wouldn&#8217;t stand out and definitely doesn&#8217;t show any attention to detail.</p>
<p>Obviously comment forms aren&#8217;t the most exciting thing on a website, but great designers know that the details matter.  Just because it isn&#8217;t the first thing a visitor sees doesn&#8217;t mean it shouldn&#8217;t be impressive.  Custom themes should be one of a kind, they should stand out.  Everything should be custom, not just the background image and the logo.</p>
<p><em>This is part one of a series of articles about the details of design.  I&#8217;ll be pulling different elements from different sites to demonstrate well executed designs that really focused on combining all the elements of a blog to make something beautiful.</em></p>
]]></content:encoded>
			<wfw:commentRss>http://www.blogherald.com/2006/08/12/details-make-good-design-great/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
	</channel>
</rss>
