<?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>BOALT Blog &#187; Information Architecture</title>
	<atom:link href="http://www.boalt.com/blog/category/information-architecture/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.boalt.com/blog</link>
	<description></description>
	<lastBuildDate>Wed, 28 Jul 2010 15:09:37 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.2</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>Tips from the Experts: Tricks for Using cURL with GoDaddy.com</title>
		<link>http://www.boalt.com/blog/2009/08/tips-from-the-experts-tricks-for-using-curl-with-godaddy-com/</link>
		<comments>http://www.boalt.com/blog/2009/08/tips-from-the-experts-tricks-for-using-curl-with-godaddy-com/#comments</comments>
		<pubDate>Wed, 05 Aug 2009 16:43:38 +0000</pubDate>
		<dc:creator>Daniel Beck</dc:creator>
				<category><![CDATA[Information Architecture]]></category>
		<category><![CDATA[cURL]]></category>
		<category><![CDATA[GoDaddy]]></category>

		<guid isPermaLink="false">http://www.boalt.com/blog/?p=770</guid>
		<description><![CDATA[
Last week I was working on a project where I needed a PHP script to download a file that was hosted on a GoDaddy account. I was able to view the file fine in my browser, but when I tried to download the file with PHP I would always get an error. I’m sure other [...]]]></description>
			<content:encoded><![CDATA[
<div class="topsy_widget_data topsy_theme_blue" style=""><script type="text/javascript" src="http://button.topsy.com/widget/retweet-small?url=http://www.boalt.com/blog/2009/08/tips-from-the-experts-tricks-for-using-curl-with-godaddy-com/&amp;title=Tips+from+the+Experts%3A+Tricks+for+Using+cURL+with+GoDaddy.com&amp;theme=blue&amp;txt_tweet=tweet&amp;txt_retweet=retweet"></script></div><p>Last week I was working on a project where I needed a PHP script to download a file that was hosted on a GoDaddy account. I was able to view the file fine in my browser, but when I tried to download the file with PHP I would always get an error. I’m sure other people have encountered this and hopefully this will help you out:</p>
<p>When you first request a file hosted on GoDaddy, the server does an extra step to revent simple scripts from cpying files. The process looks like this:</p>
<p style="text-align: left; padding-left: 60px;"><strong>My computer</strong>:</p>
<p style="text-align: left; padding-left: 90px;"><span style="color: #ff0000;"><span style="color: #000000;">I want </span>www.example.com/index.html</span></p>
<p style="text-align: left; padding-left: 60px;"><strong>GoDaddy Server:</strong></p>
<p style="text-align: left; padding-left: 90px;"><span style="color: #ff0000;">www.example.com/index.html <span style="color: #000000;">is actually at</span> www.example.com/index.html?23421</span></p>
<p style="text-align: left; padding-left: 60px;"><strong>My computer</strong>:</p>
<p style="text-align: left; padding-left: 90px;"><span style="color: #ff0000;"><span style="color: #000000;">Ok, I want</span> www.example.com/index.html/24321</span></p>
<p style="text-align: left; padding-left: 60px;"><strong>GoDaddy Server:</strong></p>
<p style="text-align: left; padding-left: 90px;"><span style="color: #ff0000;"><span style="color: #000000;">Actually, </span>www.example.com/index,html?23421 <span style="color: #000000;">is at </span>www.example.com/index.htm</span>l</p>
<p style="text-align: left; padding-left: 60px;"><strong>My computer</strong>:</p>
<p style="text-align: left; padding-left: 90px;"><span style="color: #ff0000;"><span style="color: #000000;">I want</span> www.example.com/index.html</span></p>
<p style="text-align: left; padding-left: 60px;"><strong>GoDaddy Server:</strong></p>
<p style="text-align: left; padding-left: 90px;"><span style="color: #ff0000;"><span style="color: #000000;">Ok, here is the file you wante</span><span style="color: #000000;">d</span></span><span style="color: #000000;">.</span></p>
<p>The GoDaddy server will initially say the file is at another location (with an HTTP 302 status message) as test to see if the program requesting the file is legit. If you then request that new file, the server says, &#8220;Just kidding. The file&#8217;s at the location you originally requested: and then it gives you the file. A web browser will automatically handle these requests so this process in invisible to the user. But PHP scripts that use cURL don&#8217;t do this by default. All you need is the following line in your code:</p>
<p><strong>curl_setopt($ch, CURLOPT_FOLLOWLOCATION, 1);</strong></p>
<p>This also explains trouble we&#8217;ve had integrating with third part API&#8217;s like <a href="http://www.twilio.com" target="_blank">Twilio.com</a> (which by the way is an awesome telephony api). With Twilio, when someone calls a pohone number you&#8217;ve set up, the Twilio server requests XML documents from your webserver that tells it what to say or how to act. Unfortunately, at the time of writing, Twilio, doesn&#8217;t check for this redirection trick, so we&#8217;ve had to use another webhost for our Twilio application.</p>

]]></content:encoded>
			<wfw:commentRss>http://www.boalt.com/blog/2009/08/tips-from-the-experts-tricks-for-using-curl-with-godaddy-com/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>How to Create an Effective Display Advertising Campaign</title>
		<link>http://www.boalt.com/blog/2009/07/how-to-create-an-effective-display-advertising-campaign/</link>
		<comments>http://www.boalt.com/blog/2009/07/how-to-create-an-effective-display-advertising-campaign/#comments</comments>
		<pubDate>Tue, 14 Jul 2009 21:01:29 +0000</pubDate>
		<dc:creator>Ryan Riley</dc:creator>
				<category><![CDATA[Information Architecture]]></category>
		<category><![CDATA[Online Advertising]]></category>
		<category><![CDATA[Bing]]></category>
		<category><![CDATA[contextual advertising]]></category>
		<category><![CDATA[D.C.]]></category>
		<category><![CDATA[display advertising]]></category>
		<category><![CDATA[Dukky]]></category>
		<category><![CDATA[Google]]></category>
		<category><![CDATA[Guy Kawasaki]]></category>
		<category><![CDATA[How to Change the World]]></category>
		<category><![CDATA[iProspect]]></category>
		<category><![CDATA[Yahoo]]></category>

		<guid isPermaLink="false">http://www.boalt.com/blog/?p=478</guid>
		<description><![CDATA[
Let’s just get it out on the table. Contextual advertising outperform display advertising. Okay, I said it. It’s true. Everyone will agree on that, so let’s move past that. The important thing for us to remember is that display ads are far from dead or obsolete. In fact I believe there is a resurgence on [...]]]></description>
			<content:encoded><![CDATA[
<div class="topsy_widget_data topsy_theme_blue" style=""><script type="text/javascript" src="http://button.topsy.com/widget/retweet-small?url=http://www.boalt.com/blog/2009/07/how-to-create-an-effective-display-advertising-campaign/&amp;title=How+to+Create+an+Effective+Display+Advertising+Campaign&amp;theme=blue&amp;txt_tweet=tweet&amp;txt_retweet=retweet"></script></div><p style="text-align: left;">Let’s just get it out on the table. Contextual advertising outperform display advertising. Okay, I said it. It’s true. Everyone will agree on that, so let’s move past that. The important thing for us to remember is that display ads are far from dead or obsolete. In fact I believe there is a resurgence on the horizon as we begin to learn more and more about the unknown power of display ads.</p>
<p style="text-align: left;">In May,<a href="http://www.iprospect.com/premiumPDFs/researchstudy_2009_searchanddisplay.pdf" target="_blank"><em> </em>iProspect</a><em> </em>published a study outlining the effectiveness of display ads with some surprising results. What they found was that <strong>31%</strong> of those polled clicked on banner ads when displayed. Not exactly groundbreaking but the interesting part of the study is that they found an additional <strong>27%</strong> don’t click on the ad, but instead perform a search for the company or product on a search engine. The study goes on to state the number grows to <strong>49%</strong> who will eventually perform a search for the product, service, or company originally seen in the display ad. That’s impressive for an ad that a lot of us thought was on its way out.</p>
<p style="text-align: left;">I’ve had a lot of success with display ads. Again, it doesn’t compare to the success of contextual ads but enough success to not completely give up on display ads.</p>
<p style="text-align: left;">We had real success with display ads in a campaign for one of our clients: <a href="http://www.dukky.com" target="_blank">Dukky</a>. What we did was first create contextual ad campaigns in Google, Yahoo and Bing. Once we had those going strong we moved on to display ads.</p>
<p style="text-align: left;">The following is what you need to know to create an effective display advertising campaign. Some of these are obvious and some you&#8217;ll learn along the way:</p>
<p style="text-align: left;"><strong>1.</strong> Research, research, research. You have to know where to sell your ad. The content networks of Google and Yahoo are great at placing your ads on a million websites but your product may be better suited for 200 of those sites or really just 30. Once you know your product and you know your ideal customer, you’ll know the sites you need to place ads.</p>
<p style="text-align: left;">With Dukky we researched mostly marketing sites. We looked at sites whose core audience was company decision makers. This is an important step to get the client involved because they know their industry better than we ever will.</p>
<p style="text-align: left;"><strong>2.</strong> Create site tailored designs. It is important to get noticed but we’ve found that it is just as effective to blend in. Create ads that fit into web pages. You should study the website that you want to place your ad. Then base your ad concept on the concept of the site. For example, we ran an ad on <a href="http://blog.guykawasaki.com/" target="_blank">Guy Kawasaki</a>’s blog How to Change the World. We decided to run our ad with copy based on the concept of How to Change the World.</p>
<p style="text-align: left;">Here&#8217;s the ad:</p>
<p style="text-align: left;"><img class="size-full wp-image-475 aligncenter" title="guykawasmall_300x250" src="http://www.boalt.com/blog/wp-content/uploads/2009/07/guykawasmall_300x250.jpg" alt="guykawasmall_300x250" width="174" height="146" /></p>
<p style="text-align: left;">We used the same colors that Guy Kawasaki uses on his website. It looked like it belonged on the site. The ad turned out to be very effective. We did the same thing with each ad we created. This can be time consuming when it is so much easier to create one or two great ads and run them over a gamut of websites but it’s worth it to write site specific copy and create site specific designs.</p>
<p style="text-align: left;">Here&#8217;s how the ad looked on the page:</p>
<p style="text-align: center;"><img class="size-medium wp-image-477 aligncenter" title="guykawa_300x250" src="http://www.boalt.com/blog/wp-content/uploads/2009/07/guykawa_300x250-242x300.jpg" alt="guykawa_300x250" width="291" height="360" /></p>
<p style="text-align: left;"><strong>3.</strong> Write short, to the point copy. Internet banner ads are like TV ads, they only have a second or two to catch the viewer’s attention. After that you’ve lost them. So your ads have to be able to sell your product in a few words or with great graphics.</p>
<p style="text-align: left;">Like this ad we ran for Dukky on <a href="http://www.techcrunch.com" target="_blank">TechCrunch</a>:</p>
<p style="text-align: left;"><img class="aligncenter size-full wp-image-476" title="techcrunch_728x90" src="http://www.boalt.com/blog/wp-content/uploads/2009/07/techcrunch_728x90.jpg" alt="techcrunch_728x90" width="511" height="63" /></p>
<p style="text-align: left;">This banner has a very strong image. It is also pretty clear and to the point but it doesn’t give away too much. You know that direct marketing is on its last leg and you know that Dukky has the solution. So click on the ad if you want to improve your direct marketing efforts. This little ad says all of that and it was catered to a tech audience who has become numb to display advertising.</p>
<p style="text-align: left;"><strong>4.</strong> Have a strong call-to-action. When someone sees your ad they need to know what to do. So say: click, buy, download, request, and sign up. Whatever. Just make it clear and strong. Or use “kill it.” That was our call-to-action in the ad above. It works well, I’ll vouch for that.</p>
<p style="text-align: left;"><strong>5.</strong> Be able to let an ad die. I know that every word of copy I submit to clients is priceless. Sure a lot of copy dies a brutal and painful death on my computer but the things I ultimately decide to pass along are like the Dead Sea Scrolls but sometimes the clients don’t like them. Sometimes my boss doesn’t like them and I’m afraid he’s going to fire me. It’s tough but you have to learn to let it go. Same goes for ads that have made it from the drawing board to realization and are online. If they aren’t performing well then you have to take them out. You can’t waste the time and the money on an ad that isn’t performing, no matter how clever you think the line or the graphic is.</p>
<p style="text-align: left;"><strong>6.</strong> Be open to client feedback. It is important again to recognize that your client knows his product better than you do and they can give you great insight. So bounce a lot of ideas off of them and sometimes their responses will be frustrating and you’ll be dismissive but sometimes they’ll be great ideas. Again take the bloody cleaver ad. As much as I want to take credit for that copy, I can’t. That came from a long collaboration with the client. I rambled on about how I’d been exploring a more apocalyptic idea and the client came back with that copy. We ran with it and our creative director came back with this kick-ass design. We posted it and it’s doing well. But remember to listen to the clients. I’m saying that for the record because I know some of our clients are reading this and we want them to think we always listen to them.</p>
<p style="text-align: left;"><strong>7.</strong> Lastly, and most importantly, you have to have a solid site and product to back up effective ads. We could work for weeks designing the perfect combination of display ads and contextual ads to drive thousands of consumers to a client’s website but if they arrive on the site and it’s impossible to navigate or the product is crap, then there’s nothing we can do to sell it. So if you are trying to start your own campaign for your business then first you need to look at your product and you need to look at your website. Once those are perfected you can focus on creating ads. If you’re having trouble getting that done, that’s when you call someone like us.</p>
<p style="text-align: left;">Some of the other ads we created for this campaign:</p>
<p style="text-align: left;"><img class="aligncenter size-full wp-image-513" title="alleyinsider_728x90" src="http://www.boalt.com/blog/wp-content/uploads/2009/07/alleyinsider_728x902.jpg" alt="alleyinsider_728x90" width="510" height="63" /></p>
<p style="text-align: left;">
<p style="text-align: left;"><img class="aligncenter size-full wp-image-500" title="masternewmedia_300x250-2" src="http://www.boalt.com/blog/wp-content/uploads/2009/07/masternewmedia_300x250-2.jpg" alt="masternewmedia_300x250-2" width="300" height="250" /></p>
<p style="text-align: left;"><img class="aligncenter size-medium wp-image-497" title="adverblog_336x280" src="http://www.boalt.com/blog/wp-content/uploads/2009/07/adverblog_336x280-300x250.jpg" alt="adverblog_336x280" width="300" height="250" /></p>

]]></content:encoded>
			<wfw:commentRss>http://www.boalt.com/blog/2009/07/how-to-create-an-effective-display-advertising-campaign/feed/</wfw:commentRss>
		<slash:comments>12</slash:comments>
		</item>
		<item>
		<title>Google&#8217;s Double Ad Serving Policy</title>
		<link>http://www.boalt.com/blog/2008/12/googles-double-ad-serving-policy/</link>
		<comments>http://www.boalt.com/blog/2008/12/googles-double-ad-serving-policy/#comments</comments>
		<pubDate>Sat, 20 Dec 2008 15:43:04 +0000</pubDate>
		<dc:creator>Adam Boalt</dc:creator>
				<category><![CDATA[Information Architecture]]></category>
		<category><![CDATA[Online Advertising]]></category>
		<category><![CDATA[SEM]]></category>
		<category><![CDATA[Google]]></category>

		<guid isPermaLink="false">http://www.boalt.com/blog/?p=305</guid>
		<description><![CDATA[
Since the start of my career, I have had a never ending feud with Google about their double ad serving policy.  For starters, Google&#8217;s customer service team is setup in such a way that they help first time search rookies the same way they help Google certified companies.  There should be some benefit to being [...]]]></description>
			<content:encoded><![CDATA[
<div class="topsy_widget_data topsy_theme_blue" style=""><script type="text/javascript" src="http://button.topsy.com/widget/retweet-small?url=http://www.boalt.com/blog/2008/12/googles-double-ad-serving-policy/&amp;title=Google%27s+Double+Ad+Serving+Policy&amp;theme=blue&amp;txt_tweet=tweet&amp;txt_retweet=retweet"></script></div><div id="attachment_308" class="wp-caption alignright" style="width: 310px"><img class="size-medium wp-image-308" title="google-founders" src="http://www.boalt.com/blog/wp-content/uploads/2008/12/google-founders-300x180.jpg" alt="HELP US!" width="300" height="180" /><p class="wp-caption-text">HELP US!</p></div>
<p>Since the start of my career, I have had a never ending feud with Google about their double ad serving policy.  For starters, Google&#8217;s customer service team is setup in such a way that they help first time search rookies the same way they help Google certified companies.  There should be some benefit to being a Google Adwords certified company other than just being able to showoff their logo.  I personally believe that these folks should be escalated up the ladder a bit; why else did we spend the time to take your certification.  It&#8217;s annoying that every time, I ask a question, I start at the bottom with the same canned answers.  Not to mention, that we spend in excess of a million dollars a year with Google.<span id="more-305"></span></p>
<p>Google doesn&#8217;t allow for the same company to advertise on Adwords with the same keywords.  I totally understand that.  The problem is that we work with so many different affiliates that sometimes they jump on Google trying to make an extra buck advertising our product and we get knocked off.  Affiliates advertising against us on Google is a violation of our affiliate marketing terms however tracking the affiliates down and requesting that they remove their links can take hours and sometimes days.  During that time, it&#8217;s a major loss of revenue for our company.  It&#8217;s scary that Google has that power.</p>
<p>I&#8217;ve been on the waitlist for an account executive at Google and I&#8217;m staill waiting &#8211; it&#8217;s been over a year.  I would think that spending a million bucks a year with them would get me a direct phone number to somebody that can make a decision at Google &#8211; hasn&#8217;t happened yet.  It&#8217;s frustrating that with current market conditions their not trying a bit harder to satisfy their customers.</p>
<p>If anybody has any advice on how to expedited the process of getting a Google Adwords account executive, please let me know.</p>

]]></content:encoded>
			<wfw:commentRss>http://www.boalt.com/blog/2008/12/googles-double-ad-serving-policy/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>The Green Blogsphere Giant</title>
		<link>http://www.boalt.com/blog/2008/11/the-green-blogsphere-giant/</link>
		<comments>http://www.boalt.com/blog/2008/11/the-green-blogsphere-giant/#comments</comments>
		<pubDate>Tue, 18 Nov 2008 15:09:55 +0000</pubDate>
		<dc:creator>Adam Boalt</dc:creator>
				<category><![CDATA[Client Experiences]]></category>
		<category><![CDATA[Information Architecture]]></category>
		<category><![CDATA[Social Media]]></category>
		<category><![CDATA[Startups]]></category>

		<guid isPermaLink="false">http://www.boalt.com/blog/?p=209</guid>
		<description><![CDATA[
Embracing the green space in today&#8217;s eco-friendly world has proven to be an overwhelming success for my client and friend, Shawn Burst of Jeriko House.  Every bit of this story is like a marketing fairy tale.  Hug a tree, test the waters and find yourself in a forest of greenies lining up at your door [...]]]></description>
			<content:encoded><![CDATA[
<div class="topsy_widget_data topsy_theme_blue" style=""><script type="text/javascript" src="http://button.topsy.com/widget/retweet-small?url=http://www.boalt.com/blog/2008/11/the-green-blogsphere-giant/&amp;title=The+Green+Blogsphere+Giant&amp;theme=blue&amp;txt_tweet=tweet&amp;txt_retweet=retweet"></script></div><p>Embracing the green space in today&#8217;s eco-friendly world has proven to be an overwhelming success for my client and friend, Shawn Burst of <a href="http://www.jerikohouse.com" target="_blank">Jeriko House</a>.  Every bit of this story is like a marketing fairy tale.  Hug a tree, test the waters and find yourself in a forest of greenies lining up at your door for what could be the next, most revolutionary home to hit the housing market.</p>
<p>It all begins in the wake of hurricane Katrina when Shawn had just lost his family&#8217;s dream home.  Determined to build a new home and not willing to wait years, he set out on a mission to find a new high-end housing alternative overseas.  After visiting engineering firms in Germany and exotic finishing manufacturers in Bali, Shawn came home with the most incredible vision which he named <a href="http://www.jerikohouse.com" target="_blank">Jeriko House</a>.  He called BOALT to design and develop a new alternative home brand literally from scratch.</p>
<p><img class="aligncenter size-full wp-image-213" title="jeriko1" src="http://www.boalt.com/blog/wp-content/uploads/2008/11/jeriko1.png" alt="" width="500" height="288" /></p>
<p>After investing a significant budget in developing his website, he left faith and one press release to do the rest.  It was only a matter of days before the website started to received hundreds of visitors a day from blogs such as <a href="www.inhabitat.com/2007/02/02/prefab-friday-jeriko-house/ " target="_blank">InHabitat</a>, <a href="www.treehugger.com/files/2007/02/jeriko_house_gi.php" target="_blank">TreeHugger</a>, <a href="jetsongreen.typepad.com/jetson_green/2007/01/construction_20.html " target="_blank">JetsonGreen</a>, <a href="www.luxist.com/2007/01/31/jeriko-house-another-entry-in-the-hot-prefab-market/" target="_blank">Luxist</a> and <a href="http://www.architectmagazine.com/industry-news.asp?sectionID=1006&amp;articleID=634422" target="_blank">Architect Magazine</a> to name a few.  Some reviews better than others but you know what they say, all press is good press.<br />
<span id="more-209"></span>To date, Shawn has received approximately 30-50 leads a day consistently from customers all over the world with budgets exceeding over $500k to build a new Jeriko House.  Consider how many more leads would come in if the economy and housing market were better.</p>
<p>So what does the future hold?  Shawn continues to meet with prospect builders who want to build Jeriko Houses in different parts of the world.  He&#8217;s also getting ready to release the first online prefab builder which will allow you to price and design your custom home in real-time.  The word custom is probably an understatement when you get to choose interior finishes such as: coconut weave, palm fiber, crushed seashell along with many other exotic woods, bamboos and stones from Malaysia.</p>
<p><img class="aligncenter size-full wp-image-214" title="floorplanner" src="http://www.boalt.com/blog/wp-content/uploads/2008/11/floorplanner.png" alt="" width="479" height="240" /></p>
<p>This is definitely one of the coolest projects I have ever worked on and I wake up everyday still in awe at the amount of leads that the website generates without ever spending a dollar on online marketing.</p>

]]></content:encoded>
			<wfw:commentRss>http://www.boalt.com/blog/2008/11/the-green-blogsphere-giant/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Content Optimization will increase your ROI</title>
		<link>http://www.boalt.com/blog/2008/11/content-optimization-will-increase-your-roi/</link>
		<comments>http://www.boalt.com/blog/2008/11/content-optimization-will-increase-your-roi/#comments</comments>
		<pubDate>Mon, 17 Nov 2008 12:53:26 +0000</pubDate>
		<dc:creator>Adam Boalt</dc:creator>
				<category><![CDATA[Information Architecture]]></category>
		<category><![CDATA[Online Advertising]]></category>

		<guid isPermaLink="false">http://www.boalt.com/blog/?p=194</guid>
		<description><![CDATA[
I have so many prospects that spend so much money on search marketing  but haven&#8217;t taken the time to consider that good design and content will get them more actions.  We measure return on investment (ROI) based on conversions or how frequently a visitor reaches a goal on your website.  Generally that goal is [...]]]></description>
			<content:encoded><![CDATA[
<div class="topsy_widget_data topsy_theme_blue" style=""><script type="text/javascript" src="http://button.topsy.com/widget/retweet-small?url=http://www.boalt.com/blog/2008/11/content-optimization-will-increase-your-roi/&amp;title=Content+Optimization+will+increase+your+ROI&amp;theme=blue&amp;txt_tweet=tweet&amp;txt_retweet=retweet"></script></div><p><a href="http://www.boalt.com/blog/wp-content/uploads/2008/11/monster.jpg"><img class="alignright size-medium wp-image-196" title="monster" src="http://www.boalt.com/blog/wp-content/uploads/2008/11/monster-300x300.jpg" alt="" width="300" height="300" /></a>I have so many prospects that spend so much money on search marketing  but haven&#8217;t taken the time to consider that good design and content will get them more actions.  We measure return on investment (ROI) based on conversions or how frequently a visitor reaches a goal on your website.  Generally that goal is to get the visitor to a thank you page for filling out a lead or an order form.</p>
<p>The first step to increasing your ROI is to define your goals.  It could be multiple goals.  For example, the BOALT website has two goals: a contact inquiry and request for proposal form.  If you don&#8217;t have goals on your website &#8211; that&#8217;s a problem. You might want to consider adding a form or two.</p>
<p><span id="more-194"></span>The next step is how to handle that first customer that clicks on your website.  How are you going to engage them? Are they enticed to click on the next page that leads them to the form?  In order to achieve success here you need to understand your audience.  Are you a real estate broker looking for new listings or new buyers? Are your a mortgage broker looking for a certain type of credit score?  The tone of your content will help filter the right type of customer.  Also  using certain call-to-action words like: &#8220;Learn More&#8221;, &#8220;Request a Brochure&#8221;, &#8220;Sign Up&#8221; will increase your conversion.  There are certain stop words that decrease your conversion as well such as: &#8220;we&#8221;, &#8220;our&#8221; and &#8220;trust us&#8221;. Let the customer gain trust in you on their own, don&#8217;t sell it to them.  Lastly, keep everything short and to the point.  The most important part of the process is the lead or sales funnel.  Once a customer has clicked on the link that takes them to the beginning step of that funnel, make sure you lead them through the process efficiently without any confusion.  Rule of thumb on that conversion path &#8211; less is more.</p>
<p>Any information that you can gather from them after they place the order might help you increase conversions.  We&#8217;ve found that the shorter the form, the more successful it is.  Also, asking for certain confidential items such as social security numbers can really hurt your conversion.  Try to get sensitive items over the phone after you have attained that customer.</p>
<p>Good luck!  Remember, the customer must be able to identify the goal.  Keep them focused on the conversion path.  Less is more and no sensitive data!</p>

]]></content:encoded>
			<wfw:commentRss>http://www.boalt.com/blog/2008/11/content-optimization-will-increase-your-roi/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>The Future of Information Architecture</title>
		<link>http://www.boalt.com/blog/2008/11/the-future-of-information-architecture/</link>
		<comments>http://www.boalt.com/blog/2008/11/the-future-of-information-architecture/#comments</comments>
		<pubDate>Sun, 16 Nov 2008 11:45:31 +0000</pubDate>
		<dc:creator>Adam Boalt</dc:creator>
				<category><![CDATA[Information Architecture]]></category>
		<category><![CDATA[Startups]]></category>
		<category><![CDATA[UI Design]]></category>

		<guid isPermaLink="false">http://www.boalt.com/blog/?p=165</guid>
		<description><![CDATA[
There seems to be an ongoing debate within our agency on how much time should be spent on information architecture.  In retrospect, I think the main reason we previously focused so much time on information architecture was because we needed a client sign off and found it more efficient to make changes in this stage.  [...]]]></description>
			<content:encoded><![CDATA[
<div class="topsy_widget_data topsy_theme_blue" style=""><script type="text/javascript" src="http://button.topsy.com/widget/retweet-small?url=http://www.boalt.com/blog/2008/11/the-future-of-information-architecture/&amp;title=The+Future+of+Information+Architecture&amp;theme=blue&amp;txt_tweet=tweet&amp;txt_retweet=retweet"></script></div><p>There seems to be an ongoing debate within our agency on how much time should be spent on information architecture.  In retrospect, I think the main reason we previously focused so much time on information architecture was because we needed a client sign off and found it more efficient to make changes in this stage.  But what happens when we&#8217;re working on one of our own start ups?  How should we approach information architecture?</p>
<p>The below snippet is from a 30 page set of wireframes that we provided to Aspen Snowmass when we designed and developed their booking engine user interface.  Information architecture was a must for this project because making changes in the development phase would have been extremely inefficient.</p>
<p><a href="http://www.boalt.com/blog/wp-content/uploads/2008/11/aspsnow1.jpg"><img class="aligncenter size-full wp-image-176" title="aspsnow1" src="http://www.boalt.com/blog/wp-content/uploads/2008/11/aspsnow1.jpg" alt="" width="500" height="264" /></a></p>
<p><a href="http://www.37signals.com" target="_blank">37Signals</a> in their <a href="http://gettingreal.37signals.com/" target="_blank">Getting Real book</a>, swears by building out the interface first.  &#8220;Too many apps start with a program-first mentality. That&#8217;s a bad idea. Programming is the heaviest component of building an app, meaning it&#8217;s the most expensive and hardest to change. Instead, start by designing first.&#8221; <span id="more-165"></span></p>
<p>In some cases, I&#8217;m starting to find that the best approach for us is to develop loosely and build out the interface as you adaptively learn the application&#8217;s functionality.  Every time we&#8217;ve focused our energy on user interface it seems to delay the development cycle and I found ourselves unnecessarily changing the UI several times.  This approach worked particularly well in the development of <a href="http://www.dchsitorictours.com" target="_blank">DCHistoricTours.com</a> because we had a vision of what we wanted to accomplish but we didn&#8217;t know the degree of functionality some of the API&#8217;s would provide. In this case, we jumped into development first.</p>
<p>It&#8217;s tricky and I don&#8217;t think there has to be a standard process. To me it depends on what type of project your working on.  Do you have a clear concise idea of what you want or are you unsure?</p>
<p>So with that said, I&#8217;m curious to hear what you think on the future of information architecture?  Have you had similar experiences?  What is your agencies approach?  Does it have a set approach?  Please comment below.</p>

]]></content:encoded>
			<wfw:commentRss>http://www.boalt.com/blog/2008/11/the-future-of-information-architecture/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
	</channel>
</rss>
