<?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/" version="2.0">

<channel>
	<title>Addicott Web</title>
	
	<link>http://www.addicottweb.com</link>
	<description>Just another WordPress weblog</description>
	<lastBuildDate>Fri, 30 Oct 2009 14:20:52 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=abc</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/AddicottWeb" type="application/rss+xml" /><feedburner:emailServiceId xmlns:feedburner="http://rssnamespace.org/feedburner/ext/1.0">AddicottWeb</feedburner:emailServiceId><feedburner:feedburnerHostname xmlns:feedburner="http://rssnamespace.org/feedburner/ext/1.0">http://feedburner.google.com</feedburner:feedburnerHostname><atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="hub" href="http://pubsubhubbub.appspot.com" /><item>
		<title>How to Use Wordpress Conditional Statements</title>
		<link>http://www.addicottweb.com/2009/10/how-to-use-wordpress-conditional-statements/</link>
		<comments>http://www.addicottweb.com/2009/10/how-to-use-wordpress-conditional-statements/#comments</comments>
		<pubDate>Thu, 22 Oct 2009 17:00:40 +0000</pubDate>
		<dc:creator>Addicott Web</dc:creator>
				<category><![CDATA[How To's]]></category>
		<category><![CDATA[Wordpress]]></category>

		<guid isPermaLink="false">http://www.addicottweb.com/?p=2345</guid>
		<description><![CDATA[When I'm creating a Wordpress website, often times I'll want a certain image, or a certain snippet of text, to appear on a particular page, but not on any others. How do you do that without creating multiple page or post templates? It's quite simple actually: use conditional statements.]]></description>
			<content:encoded><![CDATA[<p>When I&#8217;m creating a Wordpress website, often times I&#8217;ll want a certain image, or a certain snippet of text, to appear on a particular page, but not on any others. How do you do that without creating multiple page or post templates? It&#8217;s quite simple actually: use conditional statements.</p>
<p><span id="more-2345"></span></p>
<p>(Word of warning: what I&#8217;m about to talk is a more advanced topic intended for those who have an interest in building, or working with, Wordpresss theme files. I&#8217;m assuming that you have at least a working knowledge of HTML, CSS, and PHP in order to understand what I&#8217;m talking about.)</p>
<h2>What are conditional statements?</h2>
<p>Conditional statements are simply some logic that tells the Wordpress database what content is displayed (and how that content is displayed) based on what conditions that page matches.</p>
<p>At their most basic level, conditional statements look like this:</p>
<pre>&lt;?php if ( ) { ?&gt;
&lt;?php } else ( ) { ?&gt;
&lt;?php } ?&gt;</pre>
<p>Basically what this says is that there is a certain condition, and if that  condition is met, then display whatever HTML, CSS, PHP, etc. is specified there; if that condition isn&#8217;t met, do this instead. So far, so good, right?</p>
<h2>What conditional tags can I use?</h2>
<p>Within a conditional statement you&#8217;ll find what are known as conditional tags. Basically, these little tags call a particular piece of information from the Wordpress database. There are conditional tags for most things in Wordpress &#8211; pages, posts, categories, tags, etc.</p>
<p>The Wordpress codex goes into more detail about <a href="http://codex.wordpress.org/Conditional_Tags" target="_blank">all of the conditional tags that are available</a>, but some of the most basic and popular ones are:</p>
<ul>
<li>is_page()</li>
<li>is_single()</li>
<li>is_category()</li>
<li>is_author()</li>
<li>is_home()</li>
</ul>
<p>Using them is pretty simple &#8211; you can identify the page/post/category/author by ID number, slug (name), or  title. This might make more sense with an example.</p>
<p>Say you want to apply a specific condition to your &#8220;About&#8221; page. That page has the database ID number &#8220;3&#8243;, the title is &#8220;About Us&#8221;, and the slug (name) is &#8220;about-us&#8221;. You could use any of those in the is_page() condition as follows:</p>
<ul>
<li>is_page(&#8217;3&#8242;)</li>
<li>is_page(&#8217;About Us&#8217;)</li>
<li>is_page(&#8217;about-us&#8217;)</li>
</ul>
<p>The same applies to all of the other different uses. Say you want some particular links to appear in the sidebar when someone is on a particular category page &#8211; let&#8217;s say the category is &#8220;Apples&#8221;, and it has a database ID number &#8220;5&#8243;. You could use the is_category() condition like this:</p>
<ul>
<li>is_category(&#8217;5&#8242;)</li>
<li>is_category(&#8217;Apples&#8217;)</li>
<li>is_category(&#8217;apples&#8217;)</li>
</ul>
<h2>More complicated uses of conditional statements</h2>
<p>Now that you know what a basic conditional statement looks like and what conditional tags are available to use, we can really have some fun incorporating them into your Wordpress theme.</p>
<p>Head&#8217;s up: this is where it will start to get a bit more complicated. But let&#8217;s go through a few examples for you to get an idea of the different ways that conditional statements can be used, and hopefully you&#8217;ll pick up the gist of how to use them.</p>
<h3>Example #1: Multiple conditions</h3>
<p>Let&#8217;s say that you have 3 pages on your Wordpress website. You want to display an image on one page, some text on another, and nothing on the third.. What would this look like?</p>
<pre>&lt;?php if ( is_page('Apples') ) { ?&gt;

    &lt;img src="apples.gif" /&gt;

&lt;?php } elseif ( is_page('Oranges') ) { ?&gt;

    &lt;p&gt;This is my text.&lt;/p&gt;

&lt;?php } else { ?&gt;

&lt;?php } ?&gt;</pre>
<p>This is what I call a multi-conditional statement. Basically this says, &#8220;if the page is the page about apples, then display the picture of the apples; if the page is the page about oranges, then display that text; and if it&#8217;s neither, then don&#8217;t display anything&#8221;.</p>
<p>One note about multi-conditional statements: you can have as many different conditions as you want. If you have 20 different categories and want to display 20 different things in the sidebar of each, you can do that &#8211; there&#8217;s no limit.</p>
<h3>Example #2: This OR That</h3>
<p>Let&#8217;s say you want to display a particular piece of text at the top of a single post OR for a particular category page. What would your conditional statement look like?</p>
<pre>&lt;?php if ( is_single('Apples') || is_category('Vegetables') ) { ?&gt;

    &lt;p&gt;This is my text.&lt;/p&gt;

&lt;?php } else { ?&gt;

&lt;?php } ?&gt;</pre>
<p>The &#8220;||&#8221; basically tells Wordpress to display that content if the the page/post/etc. meets either the first condition OR the second condition. If it doesn&#8217;t meet either, then it won&#8217;t display anything.</p>
<h3>Example #3: Apply the same condition to many things</h3>
<p>Let&#8217;s say you want to display some text at the top of both the page about apples AND the page about oranges, while not displaying that text at the top of any other pages. What would your conditional statement look like?</p>
<pre>&lt;?php if ( is_page(array('Apples','Oranges')) ) { ?&gt;

    &lt;p&gt;This is my text.&lt;/p&gt;

&lt;?php } else { ?&gt;

&lt;?php } ?&gt;</pre>
<p>This will display the exact same thing as in example #1, and you&#8217;re probably asking yourself, what&#8217;s wrong with writing it the long way, like I had in that example.</p>
<p>Technically speaking, there isn&#8217;t anything wrong with doing it like that. It&#8217;s just that combining your conditions is the simpler way of doing things and easier to maintain.  Say you want to update the text that&#8217;s displayed at the top of both pages. Would you rather update it once, or have to do it multiple times? I&#8217;d rather do it just once.</p>
<h3>Example #4: Using variables</h3>
<p>Variables are another way of calling information from the Wordpress database. Often used in plugins and in your Wordpress loop, you can also use them within conditional statements.</p>
<p>Let&#8217;s say that you want to display in the sidebar a list of links to the sub-pages of a particular parent page, and you want that list to also appear on the parent page as well. What would your conditional statement look like?</p>
<pre>&lt;?php if ( is_page('Fruits') &amp;&amp; $post-&gt;post_parent=="Fruits" ) { ?&gt;

    &lt;ul&gt;
    &lt;li&gt;List item&lt;/li&gt;
    &lt;/ul&gt;

&lt;?php } else { ?&gt;

&lt;?php } ?&gt;</pre>
<p>In this case, we&#8217;re using the <em>$post-&gt;post_parent</em> variable to say that we&#8217;re applying the condition to all the sub-pages of the &#8220;Fruits&#8221; page, as well as the actual parent page itself, which we&#8217;ve identified with the other condition.</p>
<h3>Example #5: &#8220;Is Not&#8221; Conditions</h3>
<p>Continuing with our use of variables, let&#8217;s say that you want to display an image at the top of all pages that have the &#8220;Fruits&#8221; page as their parent page  EXCEPT FOR the page about bananas. What would this look like?</p>
<pre>&lt;?php if ( $post-&gt;post_parent=="Fruits" &amp;&amp; !( is_page('Bananas') ) ) { ?&gt;

    &lt;img src="fruits.gif" /&gt;

&lt;?php } else { ?&gt;

&lt;?php } ?&gt;</pre>
<p>Here, we&#8217;re using the &#8220;&amp;&amp; !&#8221; to say AND EXCLUDE the page about bananas from the condition that we&#8217;re applying to every other sub-page.</p>
<h2>Thoughts?</h2>
<p>Using conditional statements within your Wordpress theme files is a great way to help cut down on the amount of code that you&#8217;re writing when you create a Wordpress website. This makes it easier to maintain in the long run, and is a great way to take advantage of the database-driven nature of Wordpress.</p>
<p>Do you use conditional statements on your Wordpress website, or when you&#8217;re creating a Wordpress theme for a client? If so, share your thoughts about them with everyone by leaving a comment below!</p>
<p>&copy;2009 <a href="http://www.addicottweb.com">Addicott Web</a>. All Rights Reserved.</p>.<div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/AddicottWeb?a=a6_esC41UxY:uhDrm89FN1Q:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/AddicottWeb?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/AddicottWeb?a=a6_esC41UxY:uhDrm89FN1Q:D7DqB2pKExk"><img src="http://feeds.feedburner.com/~ff/AddicottWeb?i=a6_esC41UxY:uhDrm89FN1Q:D7DqB2pKExk" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/AddicottWeb?a=a6_esC41UxY:uhDrm89FN1Q:F7zBnMyn0Lo"><img src="http://feeds.feedburner.com/~ff/AddicottWeb?i=a6_esC41UxY:uhDrm89FN1Q:F7zBnMyn0Lo" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/AddicottWeb?a=a6_esC41UxY:uhDrm89FN1Q:qj6IDK7rITs"><img src="http://feeds.feedburner.com/~ff/AddicottWeb?d=qj6IDK7rITs" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/AddicottWeb?a=a6_esC41UxY:uhDrm89FN1Q:V_sGLiPBpWU"><img src="http://feeds.feedburner.com/~ff/AddicottWeb?i=a6_esC41UxY:uhDrm89FN1Q:V_sGLiPBpWU" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/AddicottWeb/~4/a6_esC41UxY" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.addicottweb.com/2009/10/how-to-use-wordpress-conditional-statements/feed/</wfw:commentRss>
		<slash:comments>13</slash:comments>
		</item>
		<item>
		<title>9 Places to Insert Keywords on Your Website</title>
		<link>http://www.addicottweb.com/2009/09/9-places-to-insert-keywords-on-your-website/</link>
		<comments>http://www.addicottweb.com/2009/09/9-places-to-insert-keywords-on-your-website/#comments</comments>
		<pubDate>Wed, 23 Sep 2009 17:06:12 +0000</pubDate>
		<dc:creator>Addicott Web</dc:creator>
				<category><![CDATA[SEO]]></category>

		<guid isPermaLink="false">http://www.addicottweb.com/?p=2211</guid>
		<description><![CDATA[Search engine optimization (SEO) is essential to the success of most websites, and how you use your keywords is a big contributing factor to that success. It becomes even more important if you're relying purely on organic search results to drive traffic to your website, rather than paid advertising.]]></description>
			<content:encoded><![CDATA[<p>Search engine optimization (SEO) is essential to the success of most websites, and how you use your keywords is a big contributing factor to that success. It becomes even more important if you&#8217;re relying purely on organic search results to drive traffic to your website, rather than paid advertising.</p>
<p><span id="more-2211"></span></p>
<p>Although there are lots of places that I&#8217;ll talk about where you can use your keywords, as you&#8217;re designing the website and writing the content, you don&#8217;t want to do is overload them in every available spot.</p>
<p>Yes, the goal is to take advantage of all the opportunities you have to incorporate keywords on your website. You shouldn&#8217;t be doing so in a way that&#8217;s going to make your website less usable though. Use your keywords in these places in ways that are relevant to your content and that improve your website&#8217;s usability.</p>
<p>In terms of the keywords themselves, I can&#8217;t  tell you what keywords to use &#8211; that&#8217;s dependent on your business and on your keyword research. Once you have your keywords though, here are 9 places where you can put them to improve your website&#8217;s SEO.</p>
<h2>In your header</h2>
<h3>1. Title tags</h3>
<p>Title tags are the first places that the search engines will scan, and they are what appear as the actual link on the search engine results page. This is one of the most important places to emphasize your keywords, so make sure that the title tag on each page uses your most important keywords.</p>
<p>The title tag is also what your visitors will see in their web browsers, both in the title area and on tabs (if they&#8217;re using tabbed browsing). This is one of the areas where it&#8217;s tough to remember that SEO isn&#8217;t just about pleasing the search engines &#8211; it&#8217;s also about pleasing your human visitors. They will use the title tag as a primary means of identification and navigation, which is why it needs to be written well-enough to please both parties &#8211; definitely not an easy feat.</p>
<h3>2. META description tag</h3>
<p>Within your header, there are a number of hidden META tags that only the search engines will see, and the META description tag is one of these hidden tags. On the search engine results page, you can generally see the META description tag by looking at the chunk of text underneath the link.</p>
<p>When writing your META description tag, it&#8217;s extremely important to be as concise as possible. The search engines generally only look at the first 150 characters of the description tag, so you only have a limited window in which to get your keywords in. Some search engines  only use a part of it before taking some content from elsewhere on the page, so it&#8217;s even more important that you incorporate your keywords right up front in your description.</p>
<h3>3. META keywords tag</h3>
<p>It&#8217;s still being debated how much weight the search engines give to the META keywords tag. In the early days of search, websites used to cram this tag full of any and all keywords or keyword combinations, in the hopes that the search engines would grasp onto something.</p>
<p>Most search engines learned from that and have changed how they weigh this tag in the search algorithm. Now it&#8217;s all about how the META keywords relate to the content on your page, which is why you need to use keywords that are relevant to the website in general and to the page in question specifically.</p>
<h2>In your content</h2>
<h3>4. Headers and Sub-headers</h3>
<p>One of my <a href="http://www.addicottweb.com/2009/06/how-to-create-usable-titles-and-sub-headers/">10 tips for improving your titles and sub-headers</a> is to put any keywords you&#8217;re using in them up front. Doing so not only emphasizes what comes in the content below, but is useful for people scanning through your website quickly. Just try to keep it clear, concise, and relevant when doing so.</p>
<h3>5. Page content</h3>
<p>Your page content is reason your website&#8217;s exists in the first place, and it&#8217;s the backbone of everything else on your website. It&#8217;s also what people link to (and links are another contributing factor to SEO) and what will draw people to your website in the first place.</p>
<p>One big consideration when writing your content is keyword density. While your best bet is to incorporate your targeted keyword phrase into your content as often as possible, you want to be careful not to overdo it. You&#8217;re not trying to sell your product to search engines; you&#8217;re trying to sell it to people, and if your content reads horribly, it can make a bad impression and most likely decrease the chance of making a conversion.</p>
<p>We&#8217;ve all seen websites where the keyword density is so high that the content reads horribly. As long as you&#8217;re simply aware of the phrase you&#8217;re targeting when you&#8217;re writing the content, you should end up with an adequate keyword density, probably within the 3-5% range. It&#8217;s alright if the targeted keywords stand out when you read through your content; after all, that&#8217;s what the person was searching for, and seeing it emphasized will reinforce that they have the information they need to make their decision.</p>
<p>Also remember the 1-to-1 rule: 1 page of content should be optimized for 1 keyword.</p>
<h3>6. Link text</h3>
<p>One of my <a href="http://www.addicottweb.com/2009/04/4-reasons-to-avoid-using-click-here-in-link-text/">reasons for avoiding using &#8220;click here&#8221; in link text</a> is that it&#8217;s not SEO-friendly. Search engines use the strength of your links in their algorithm, and one of the things that determines link strength is whether the link text using specific keywords in it.</p>
<p>Use specific keywords in your link text helps them estimate how relevant that link is. It also helps build the relevancy of a particular page to a particular keyword phrase.</p>
<p>With all of the places on your website where links are, this doesn&#8217;t apply solely to links within your page content. It applies to your main navigation links, to your breadcrumbs (as I mentioned already), to your footer links, etc. It&#8217;s all about association, and you want the search engines to associate certain keywords with your website in general and with specific pages on your website in particular.</p>
<h2>Bonus places</h2>
<h3>7. Breadcrumbs</h3>
<p>Another common navigation tool on websites, <a href="http://www.addicottweb.com/2009/02/hansel-and-gretel-would-be-great-web-designers/">breadcrumbs</a> can help people pinpoint where they are on your website, as well as how to get back to where they were previously. As with any place you have words on your website, your breadcrumbs are another opportunity for you to incorporate your keywords. Just make sure that the breadcrumb links provide enough detail about what the pages are, without being overly length &#8211; 1 to 3 words at most.</p>
<h3>8. ALT and TITLE attributes</h3>
<p>While these attributes were created for usability purposes, they don&#8217;t have to be used solely in those ways. They can also be used for SEO purposes in the sense that they&#8217;re another opportunity for you to incorporate additional text onto your page &#8211; text that contain the keywords you&#8217;re optimizing for.</p>
<p>I&#8217;ve written previously about <a href="http://www.addicottweb.com/2009/02/using-the-alt-and-title-attributes-properly/">using the ALT and TITLE attributes properly</a>, but the important point is that you shouldn&#8217;t write them with only the search engines in mind.</p>
<p>Keep them relevant to the element in question, and don&#8217;t use them to either duplicate content elsewhere on the page or to stuff them full of keywords to the point that they become completely unhelpful. Above all when it comes to them, think usability first, SEO second.</p>
<h3>9. Embedded file names</h3>
<p>What I&#8217;m referring to as embedded file names are things like web pages, images,  etc. These aren&#8217;t necessarily things that people will see within your actual content &#8211; they&#8217;re just ways that you can get more keywords onto your page.</p>
<p>How you write file names should be a no-brainer,  but it&#8217;s important that you not  give them a generic or vague label. People will see the file name of a web page when they hover over a link, so using a file name that contains the keywords that the page is about is useful from usability purposes. (This is one of the main reasons why you should <a href="http://www.addicottweb.com/2009/08/just-installed-wordpress-here-are-8-things-to-do/">enable your permalinks in Wordpress</a>; with HTML websites, you have an easier time controlling the file names.</p>
<p>When it comes to images, why name your image files  something vague such as &#8220;image01.jpg&#8221; when you can name it something that includes a keyword instead? It&#8217;s not something that someone will see or that will really make a difference, but it&#8217;s just another spot where you can get the keyword onto the page for the search engines to see it.</p>
<h2>Thoughts?</h2>
<p>There are a lot of competing schools of thought when it comes to organic SEO. What are some of your practical tips for incorporating keywords onto your website? Share your thoughts by leaving a comment below!</p>
<p>&copy;2009 <a href="http://www.addicottweb.com">Addicott Web</a>. All Rights Reserved.</p>.<div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/AddicottWeb?a=pzeHPAeotoU:S7od0LQolMo:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/AddicottWeb?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/AddicottWeb?a=pzeHPAeotoU:S7od0LQolMo:D7DqB2pKExk"><img src="http://feeds.feedburner.com/~ff/AddicottWeb?i=pzeHPAeotoU:S7od0LQolMo:D7DqB2pKExk" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/AddicottWeb?a=pzeHPAeotoU:S7od0LQolMo:F7zBnMyn0Lo"><img src="http://feeds.feedburner.com/~ff/AddicottWeb?i=pzeHPAeotoU:S7od0LQolMo:F7zBnMyn0Lo" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/AddicottWeb?a=pzeHPAeotoU:S7od0LQolMo:qj6IDK7rITs"><img src="http://feeds.feedburner.com/~ff/AddicottWeb?d=qj6IDK7rITs" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/AddicottWeb?a=pzeHPAeotoU:S7od0LQolMo:V_sGLiPBpWU"><img src="http://feeds.feedburner.com/~ff/AddicottWeb?i=pzeHPAeotoU:S7od0LQolMo:V_sGLiPBpWU" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/AddicottWeb/~4/pzeHPAeotoU" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.addicottweb.com/2009/09/9-places-to-insert-keywords-on-your-website/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>Your Website’s Call-to-Action is Its Central Purpose</title>
		<link>http://www.addicottweb.com/2009/09/your-websites-call-to-action-is-its-central-purpose/</link>
		<comments>http://www.addicottweb.com/2009/09/your-websites-call-to-action-is-its-central-purpose/#comments</comments>
		<pubDate>Wed, 09 Sep 2009 16:54:35 +0000</pubDate>
		<dc:creator>Addicott Web</dc:creator>
				<category><![CDATA[Usability]]></category>
		<category><![CDATA[Web Content]]></category>
		<category><![CDATA[Web Design]]></category>
		<category><![CDATA[colors]]></category>
		<category><![CDATA[content]]></category>
		<category><![CDATA[design]]></category>
		<category><![CDATA[forms]]></category>
		<category><![CDATA[homepage]]></category>
		<category><![CDATA[images]]></category>
		<category><![CDATA[links]]></category>
		<category><![CDATA[micro-content]]></category>

		<guid isPermaLink="false">http://www.addicottweb.com/?p=1997</guid>
		<description><![CDATA[Say a new visitor to your website finds you through a search engine. They're impressed with your content, which was written to get their attention. They like your professional design, which establishes that you're a trustworthy brand. So then what? Give them a call-to-action and tell them what they should do, that's what!]]></description>
			<content:encoded><![CDATA[<p>Say a new visitor to your website finds you through a search engine. They&#8217;re impressed with your content, which was written to get their attention. They like your professional design, which establishes that you&#8217;re a trustworthy brand. So then what? Give them a call-to-action and tell them what they should do, that&#8217;s what!</p>
<p><span id="more-1997"></span></p>
<h2>What is a call-to-action?</h2>
<p>A call-to-action is <em>the</em> fundamental reason that you have a website in the first place. In web marketing, it&#8217;s defined as something, either a design element or some piece of content, that compels a visitor to take some specific action that you can measure to determine whether your website is working or not.</p>
<p>Every type of website you can think of has a call-to-action built into it, although of course some websites are better at emphasizing it than others. Calls-to-action provide focus for your website and if done right, give direction to your visitors for what you ultimately want them to do. Examples of a call-to-action include:</p>
<ul>
<li>Make an online donation</li>
<li>Request an appointment</li>
<li>Purchase a product</li>
<li>Fill out a request form</li>
<li>Register for an event or program</li>
</ul>
<h2>What makes a call-to-action effective?</h2>
<p>Unfortunately there are no easy answers to that question, and there are plenty of people out there who ponder that question every day. While every website and every situation is different,  there are some general guidelines you can follow when making your calls-to-action, both from the content and the design perspectives.</p>
<p>Also keep in mind that you should continually test whether your calls-to-action work or not. There are some free tools out there that will give you a good start at this, especially from Google.  Their <a href="http://www.google.com/analytics/" target="_blank">analytics tool</a> will tell you what people are looking at on your website, while their <a href="http://www.google.com/websiteoptimizer/" target="_blank">website optimizer</a> can help you test different combinations of calls-to-action in order to see what works better.</p>
<h3>Writing calls-to-action</h3>
<p>Using the right words appropriate to your website will drive people to take the action; using the wrong words can distract them, at best, or cause them to leave your website, at worst. With that in mind, here are some tips for writing effective calls-to-action:</p>
<ul>
<li><strong>Lay the groundwork</strong> &#8211; Before someone is willing to follow one of your calls-to-action, they first have to recognize a need that requires them doing so. Telling your visitors the benefits of taking that action will help give them the motivation to actually do so.</li>
<li><strong>Use action-oriented words</strong> &#8211; Using an active voice   encourages people to follow your calls-to-action, and also helps people scanning your website quickly identify what your call-to-action is about. This is also one of the reasons you should <a href="http://www.addicottweb.com/2009/04/4-reasons-to-avoid-using-click-here-in-link-text/">avoid using &#8220;click here&#8221; in your link text</a>.</li>
<li><strong>Have one on every page</strong> &#8211; There should always be at least one call-to-action within the content on every page of your website &#8211; no page should be a dead-end. Ending your content with a call-to-action tells visitors what the next step is and   keeps them moving on your website.</li>
<li><strong>Limit the number and keep them distinct</strong> &#8211; Having too many calls-to-action on a website can be confusing for your visitors. Limit yourself to only a few, and keep them distinct so visitors know what the primary call-to-action is, as well as what you want them to do first from the choices.</li>
<li><strong>Keep your forms short and clear</strong> &#8211; Unless someone has a compelling interest, many people see a long form asking for unnecessary information and won&#8217;t fill it out. Follow some of my other tips for <a href="../2009/06/clear-instructions-will-improve-your-forms-usability/?PHPSESSID=6ff2c00256d2e8507088b9c3dd470957">writing clear instructions</a> if your main call-to-action is  a form.</li>
</ul>
<p>You can also look through a previous post that I&#8217;ve written about <a href="http://www.addicottweb.com/2009/06/how-to-create-usable-titles-and-sub-headers/">improving your titles and sub-headers</a> for some tips that are just as applicable to writing effective calls-to-action.</p>
<h3>Designing calls-to-action</h3>
<p>Web designers can have a lot of influence over how effective calls-to-action are. Following general usability and design guidelines help make the website as effective as possible. Here are some tips for how to do that:</p>
<ul>
<li><strong>Put it above the fold</strong> &#8211; You want your main call-to-action to be visible wherever people go throughout your website &#8211; almost like your logo. The right side of your website&#8217;s header is a natural location to do that; any other lesser calls-to-action can go in sidebars, above the fold as well.</li>
<li><strong>Use images for emphasis</strong> &#8211; Images or icons get people&#8217;s attention  because they get noticed by your eyes before content on a page does. Buttons also do the same thing and are great to use because they stand out against text AND  imply  action by their very nature.</li>
<li><strong>Choose contrasting colors</strong> &#8211; If you&#8217;re using a button as your primary call-to-action mechanism, use a color that contrasts with your main colors for maximum effect. Just don&#8217;t choose a color that contrasts so much that it becomes too hard to ignore when reading the content around it.</li>
<li><strong>Consider homepage placement</strong> &#8211; We all know how important your homepage is, which is why you need to <a href="http://www.addicottweb.com/2009/06/make-your-homepage-content-more-usable/">make it as usable as possible</a> for your visitors. Your main call-to-action should be prominently placed on it where people will really see it.</li>
<li><strong>Use some white space</strong> &#8211;  The more white space around your call-to-action, the more people&#8217;s eyes will naturally be drawn to it. Crowding your call-to-action in with surrounding content will decrease its effectiveness as it gets lost in the overall noise of the page.</li>
<li><strong>Make it bigger</strong> &#8211; Size isn&#8217;t everything when it comes to your call-to-action, but  making it bigger definitely makes it more likely that it will get noticed. Just don&#8217;t  make it so big that it totally overwhelms the rest of the content on your website &#8211; find the right balance.</li>
</ul>
<h2>Thoughts?</h2>
<p>Creating effective calls-to-action are a HUGE topic and business for a lot of people, so I hope that this gave some good, introductory guidelines for making your calls-to-action more effective.</p>
<p>Have you had any particular success working with calls-to-action on your website or on a website you&#8217;ve done for a client? Leave a comment below to share your thoughts and experiences!</p>
<p>&copy;2009 <a href="http://www.addicottweb.com">Addicott Web</a>. All Rights Reserved.</p>.<div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/AddicottWeb?a=LIFdkmgGzgM:0w3YxEuHyp0:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/AddicottWeb?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/AddicottWeb?a=LIFdkmgGzgM:0w3YxEuHyp0:D7DqB2pKExk"><img src="http://feeds.feedburner.com/~ff/AddicottWeb?i=LIFdkmgGzgM:0w3YxEuHyp0:D7DqB2pKExk" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/AddicottWeb?a=LIFdkmgGzgM:0w3YxEuHyp0:F7zBnMyn0Lo"><img src="http://feeds.feedburner.com/~ff/AddicottWeb?i=LIFdkmgGzgM:0w3YxEuHyp0:F7zBnMyn0Lo" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/AddicottWeb?a=LIFdkmgGzgM:0w3YxEuHyp0:qj6IDK7rITs"><img src="http://feeds.feedburner.com/~ff/AddicottWeb?d=qj6IDK7rITs" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/AddicottWeb?a=LIFdkmgGzgM:0w3YxEuHyp0:V_sGLiPBpWU"><img src="http://feeds.feedburner.com/~ff/AddicottWeb?i=LIFdkmgGzgM:0w3YxEuHyp0:V_sGLiPBpWU" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/AddicottWeb/~4/LIFdkmgGzgM" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.addicottweb.com/2009/09/your-websites-call-to-action-is-its-central-purpose/feed/</wfw:commentRss>
		<slash:comments>5</slash:comments>
		</item>
		<item>
		<title>Lower Literacy Users and Your Website’s Usability</title>
		<link>http://www.addicottweb.com/2009/08/lower-literacy-users-and-your-websites-usability/</link>
		<comments>http://www.addicottweb.com/2009/08/lower-literacy-users-and-your-websites-usability/#comments</comments>
		<pubDate>Mon, 31 Aug 2009 16:31:21 +0000</pubDate>
		<dc:creator>Addicott Web</dc:creator>
				<category><![CDATA[Usability]]></category>
		<category><![CDATA[content]]></category>
		<category><![CDATA[design]]></category>
		<category><![CDATA[forms]]></category>
		<category><![CDATA[links]]></category>
		<category><![CDATA[micro-content]]></category>
		<category><![CDATA[navigation]]></category>
		<category><![CDATA[website]]></category>

		<guid isPermaLink="false">http://www.addicottweb.com/?p=1966</guid>
		<description><![CDATA[We all know that different types of people use and read websites differently. Most of the time when you think of who the target audience is, the answers are in broad demographic categories: gender, age, people who have an interest in this particular topic, etc. Add to that category higher vs. lower literacy users.]]></description>
			<content:encoded><![CDATA[<p>We all know that different types of people use and read websites differently. Most of the time when you think of who the target audience is, the answers are in broad demographic categories: gender, age, people who have an interest in this particular topic, etc. Add to that category higher vs. lower literacy users.</p>
<p><span id="more-1966"></span></p>
<p>There are many people who fall into the category of lower literacy  when it comes to websites. Some researchers estimate that as much as 50% of the U.S. population can be defined as having a lower literacy, while 30% of total online users can be said to have the same.</p>
<p>What&#8217;s discussed below is definitely something worth considering and applying to your website, especially if you think that a significant proportion of your visitors fall into the lower literacy category.</p>
<h2>Higher literacy vs. lower literacy</h2>
<p>The most important thing that I can emphasize up front is that when I use the term &#8220;lower literacy&#8221;, I&#8217;m not talking about people who are illiterate or  unintelligent. Quite the opposite in fact.  People who have a lower literacy are able to read &#8211; they just struggle with it to some degree depending on the particular medium in question. In this case, I&#8217;m talking about lower literacy as  it pertains to websites.</p>
<p>In general there are some common   characteristics of people who have a lower literacy:</p>
<ul>
<li>They have trouble scanning text</li>
<li>They need to go through content word-by-word</li>
<li>They&#8217;ll often find themselves re-reading long, unfamiliar words</li>
</ul>
<p>People who are otherwise highly literate and intelligent might actually have a lower literacy when it comes to websites. Older people in their 50s, 60s, etc. are a perfect example of this. Anyone who has sat and watched how their parents use a website knows exactly what I&#8217;m talking about &#8211;  some of those characteristics describe them perfectly.</p>
<p>Higher literacy is just the opposite. People who are highly literate, especially on the web, are able to look at a website quickly, scan it for what they&#8217;re looking for, and interpret what&#8217;s on the website and what the website has to offer them.</p>
<p>If you think this describes you perfectly, you&#8217;re not alone &#8211; there&#8217;s a significant gap in web literacy levels between older and younger generations. Younger people have been using websites for a greater percentage of their lives than older generations have, so they&#8217;re  that much more familiar with them. Add in  the fact that older generations tend to be more &#8220;afraid&#8221; of computers than younger generations are &#8211; such as clicking the wrong link, filling out a form, etc. &#8211; and you begin to account for that generational gap.</p>
<h2>Lower literacy on the web</h2>
<p>So how does lower literacy manifest itself when people use websites? Here are some common habits that lower literacy website visitors display:</p>
<ul>
<li><strong>Reading the navigation</strong> &#8211; Lower literacy visitors tend to read through all of your navigation links first, and then choose the option that best meets what they&#8217;re looking for.</li>
<li><strong>Narrowing the field of view</strong> &#8211; Lower literacy visitors will read through content line-by-line, giving them a particular narrow focus that they might find hard to zoom out from.</li>
<li><strong>Skipping over information</strong> &#8211; If something becomes too complicated, then lower literacy users are more likely to completely skip over it, potentially missing something important.</li>
<li><strong>Accepting as &#8220;good enough&#8221;</strong> &#8211; Digging deeper requires a lot of reading (which can be challenging and time consuming), so lower literacy users skip, usually looking for links.</li>
<li><strong>Avoiding search tools</strong> &#8211; Lower literacy users might have difficulty spelling the search terms, and then when they see the results, have difficulty processing out-of-context content.</li>
</ul>
<h2>How to design for lower literacy users</h2>
<p>How can you improve your website&#8217;s usability for lower literacy users in order to make it work for a broad audience? Here are some suggestions:</p>
<ul>
<li><strong>Prioritize your content</strong> &#8211; Place the most important content at the very top of the page, where readers who might otherwise give up after a few lines will see, and keep any other important information above the fold. This especially applies to your call-to-action.</li>
<li><strong>Avoid confusing navigation links</strong> &#8211; The links in your main navigation(s) should be written so that they&#8217;re as intuitively as possible. There&#8217;s no need to be creative and write &#8220;Who We Are&#8221; when writing &#8220;About Us&#8221; will do just as good a job instead.</li>
<li><strong>Improve your in-content navigation</strong> &#8211; Follow some of the basic recommendations to <a href="http://www.addicottweb.com/2009/06/how-to-create-usable-titles-and-sub-headers/">improve your page titles and headers</a>, and you&#8217;ll not only break up the content for higher literacy users, but  keep lower literacy users from getting frustrated.</li>
<li><strong>Avoid distractions</strong> &#8211; Design elements like <a href="http://www.addicottweb.com/2009/07/flash-banners-content-design-considerations/">Flash banners</a> can serve a useful purpose on your homepage, but on internal pages, avoid anything that moves or might otherwise be a distraction. These really get in the way when you&#8217;re trying to concentrate, which lower literacy users need to do.</li>
<li><strong>Use a consistent page design</strong> &#8211; Unless there&#8217;s some compelling reason otherwise, every page on your website should have the same general feel to it, and should include all of the major navigational elements. Consistency is the goal &#8211; something that lower literacy users struggle without.</li>
<li><strong>Make effective links</strong> &#8211; There are things that both designers and writers can do to <a href="http://www.addicottweb.com/2009/04/9-tips-on-making-your-links-more-effective/">make links more effective</a>. Follow some of these recommendations &#8211; such as using icons on particular types of links, or making the links scannable &#8211; to help lower literacy users navigate your website easier.</li>
<li><strong>Simplify  form instructions</strong> &#8211; Forms give many people trouble, so you can imagine the trepidation with which lower literacy users fill them out &#8211; especially if giving away personal information is involved. <a href="http://www.addicottweb.com/2009/06/clear-instructions-will-improve-your-forms-usability/">Keep your instructions clear</a> to avoid unnecessary confusion.</li>
</ul>
<p>Do some of these tips sound familiar? If so, it&#8217;s because many of them are also general usability guidelines that you should be following anyways when creating your website. If you&#8217;ve already tried to incorporate many of them into your website and think that it&#8217;s as user-friendly as possible, then lower literacy visitors shouldn&#8217;t have much of a problem using it.</p>
<h2>Thoughts?</h2>
<p>Is lower literacy something you should be concerned with if you have a website? Or do you think it&#8217;s dependent solely on who the particular audience for that website is &#8211; no different than gender, profession, interest, etc? Share your thoughts with everyone by leaving a comment below!</p>
<p>&copy;2009 <a href="http://www.addicottweb.com">Addicott Web</a>. All Rights Reserved.</p>.<div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/AddicottWeb?a=gvJlW2Qv2TM:zxv7vph5ZDg:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/AddicottWeb?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/AddicottWeb?a=gvJlW2Qv2TM:zxv7vph5ZDg:D7DqB2pKExk"><img src="http://feeds.feedburner.com/~ff/AddicottWeb?i=gvJlW2Qv2TM:zxv7vph5ZDg:D7DqB2pKExk" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/AddicottWeb?a=gvJlW2Qv2TM:zxv7vph5ZDg:F7zBnMyn0Lo"><img src="http://feeds.feedburner.com/~ff/AddicottWeb?i=gvJlW2Qv2TM:zxv7vph5ZDg:F7zBnMyn0Lo" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/AddicottWeb?a=gvJlW2Qv2TM:zxv7vph5ZDg:qj6IDK7rITs"><img src="http://feeds.feedburner.com/~ff/AddicottWeb?d=qj6IDK7rITs" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/AddicottWeb?a=gvJlW2Qv2TM:zxv7vph5ZDg:V_sGLiPBpWU"><img src="http://feeds.feedburner.com/~ff/AddicottWeb?i=gvJlW2Qv2TM:zxv7vph5ZDg:V_sGLiPBpWU" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/AddicottWeb/~4/gvJlW2Qv2TM" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.addicottweb.com/2009/08/lower-literacy-users-and-your-websites-usability/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Just Installed Wordpress? Here Are 8 Things to Do</title>
		<link>http://www.addicottweb.com/2009/08/just-installed-wordpress-here-are-8-things-to-do/</link>
		<comments>http://www.addicottweb.com/2009/08/just-installed-wordpress-here-are-8-things-to-do/#comments</comments>
		<pubDate>Thu, 20 Aug 2009 15:30:31 +0000</pubDate>
		<dc:creator>Addicott Web</dc:creator>
				<category><![CDATA[Wordpress]]></category>
		<category><![CDATA[clients]]></category>
		<category><![CDATA[plugins]]></category>
		<category><![CDATA[website]]></category>

		<guid isPermaLink="false">http://www.addicottweb.com/?p=1578</guid>
		<description><![CDATA[A fresh Wordpress installation is a beautiful thing - clean, simple, and loaded with potential. But before you can start designing your Wordpress website and uploading content, there are some basic things that you need to do in order to configure it properly and make the most out of it.]]></description>
			<content:encoded><![CDATA[<p>A fresh Wordpress installation is a beautiful thing &#8211; clean, simple, and loaded with potential. But before you can start designing your Wordpress website and uploading content, there are some basic things that you need to do in order to configure it properly and make the most out of it.</p>
<p><span id="more-1578"></span> My recommendations are what I consider the absolute basic things that you need to do as you start working with Wordpress. There are a lot more things that you might consider doing and that others have recommended doing &#8211; Cenay Nailer in particular recommends <a href="http://www.cenaynailor.com/blogging/wordpress-blogging/22-wordpress-tweaks/" target="_blank">22 things that you should do after installing Wordpress</a>, while over at Pro Blog Design they recommend <a href="http://www.problogdesign.com/wordpress/10-things-to-do-after-installing-wordpress/" target="_blank">10 things to do</a>.</p>
<p>A lot of the things that others recommend I&#8217;ll find myself doing later in the design and development process. I don&#8217;t think they  necessarily need to be done the very first time you log in to your Wordpress admin panel, which is the perspective I&#8217;m coming from.</p>
<p>So without further ado, here&#8217;s my list of 8 basic things that you should do right after installing Wordpress.</p>
<h2>1. Change the admin password</h2>
<p>After you&#8217;ve installed Wordpress and configured the installation, Wordpress gives you an automatically generated password to use the first time you log in. This should be a no-brainer, but make sure to change that password to something that you can remember easier.</p>
<p>Never changed a password before in Wordpress? It&#8217;s quite simple &#8211; just go to the <em>Users</em> panel, click on the &#8220;admin&#8221; user, and scroll down the page to where you can change your password.</p>
<h2>2. Enable permalinks</h2>
<p>By default, Wordpress generates a link using database strings &#8211; http://www.example.com/?p=N, for example. It&#8217;s not the most usable or SEO-friendly format, which is why most people choose to enable permalinks. That way, links will appear a lot nicer &#8211; http://www.example.com/about/, for example.</p>
<p>To enable permalinks, you need to upload an HTACCESS file to the root level of your website, and then give it read and write (0666) permissions, which you can easily do with most FTP programs. Then, go to <em>Settings &gt; Permalinks</em> to enable them in any of the given formats or  customize them in your own format.</p>
<p>For more information, including what an HTACCESS file is, read through the <a href="http://codex.wordpress.org/Using_Permalinks" target="_blank">&#8220;Using Permalinks&#8221; page</a> in the Wordpress codex.</p>
<h2>3. Activate the Akismet plugin</h2>
<p>Akisment is plugin that is highly recommended for use on your Wordpress website &#8211; so highly recommended, in fact, that it&#8217;s already included when you first install Wordpress onto your server. It  blocks spam comments from appearing on your website, which is a big concern, especially if you have comments enabled on your website.</p>
<p>When you activate Akismet, you need a Wordpress API key in order to complete the activation. You can get one by registering your Wordpress website at <a href="http://www.wordpress.com" target="_blank">Wordpress.com</a>, which is different than <a href="http://www.wordpress.org" target="_blank">Wordpress.org</a>.</p>
<h2>4. Upload and activate plugins</h2>
<p>Now might be a good time to install any plugins that you know you&#8217;ll need on your Wordpress website. You can always add more or remove any at a later time, and of course there will probably still be some configuration that you&#8217;ll need to do in order to get everything working properly on your website.</p>
<p>If you&#8217;re new to Wordpress and don&#8217;t know what plugins to install, take a look through my list of <a href="http://www.addicottweb.com/2009/02/essential-plugins-for-your-wordpress-website-or-blog/">essential plugins for your Wordpress website or blog</a> for ideas.</p>
<h2>5. Customize the login screen</h2>
<p>I&#8217;ve written elsewhere about the benefits of <a href="http://www.addicottweb.com/2009/03/customizing-the-wordpress-login-screen/">customizing the Wordpress login screen</a>, and it&#8217;s something that I like to do for any clients that I build a Wordpress website for. It helps <a href="http://www.addicottweb.com/2009/04/make-it-easier-for-your-clients-to-use-wordpress/">make it easier for them to use Wordpress</a>, and is a little extra touch that can go a long way towards making the administrative experience more personal.</p>
<p>The method I detailed involves working with the PHP and CSS files that come with the Wordpress installation. That&#8217;s fine to do if you want a fancier login screen, but the drawback to it is that when you upgrade your Wordpress installation, you&#8217;ll lose all that work.</p>
<p>I found a nice plugin called <a href="http://wordpress.org/extend/plugins/wp-costum-login-logo/" target="_blank">WP Custom Login Form Image</a> that I started using instead, which lets you customize the image that you&#8217;ll see on the Wordpress login screen. This way, my clients will still see their logo on the login screen, no matter how many times the version of Wordpress changes.</p>
<p>Why do this here? Because it&#8217;s a simple touch that might otherwise be overlooked later on, I think it&#8217;s just best to do it in the beginning.</p>
<h2>6.  Change the default category</h2>
<p>Wordpress sets up a default category for your posts called &#8220;Uncategorized&#8221;. If you don&#8217;t want that to display the word &#8220;Uncategorized&#8221; to display on your website though, you might want to consider changing the name of the category.</p>
<p>This is generally a good idea to do because you never know when you might forget to select a category for your posts &#8211; it&#8217;s happened to me before, and I personally don&#8217;t like seeing &#8220;Uncategorized&#8221; display as a category on my blog.</p>
<p>There are two ways of doing this, both simple to do:</p>
<ul>
<li><strong>Rename &#8220;Uncategorized&#8221;</strong> &#8211; You can edit the name of the &#8220;Uncategorized&#8221; category like you can any other. Simply go to <em>Posts &gt; Categories</em>, and then edit the category name to whatever you want it to be.</li>
<li><strong>Choose another category as your default</strong> &#8211; Create a new category with a name of your choosing, and then go to <em>Settings &gt; Writing</em>. Towards the top of the page you&#8217;ll see a drop-down menu where you can change the default category to the one you created.</li>
</ul>
<h2>7. Upload your theme files</h2>
<p>Now that you&#8217;ve taken care of some of the preliminary settings, you&#8217;ll want to upload your theme files so that you can really start to design your website.</p>
<p>Use an FTP program of your choosing to upload the theme files to the <em>wpcontent &gt; themes</em> folder. Then, go to <em>Appearance &gt; Themes</em>, and activate that particular theme.</p>
<p>If you&#8217;re using an already-developed theme, then your Wordpress website should pretty much be good to go. If you&#8217;re a designer, this is where you can start developing and testing your design.</p>
<h2>8. Make theme files writable</h2>
<p>When I&#8217;m creating a Wordpress theme, I create the files in Adobe Dreamweaver, and then upload them via FTP to the server. After the website is launched and the responsibility for it gets turned over to the client, I have to think in their shoes. Not all them have Dreamweaver or want to use FTP, so they&#8217;ll need a way to update those files on occasion.</p>
<p>That&#8217;s where the theme editor in Wordpress comes in &#8211; which in my mind is one of the more underrated tools in Wordpress. This is the spot where someone can edit a particular theme file without needing any special software on their computers. (It just assumes that they have a working knowledge of PHP and CSS.)</p>
<p>The one trick is that you need to give write permissions to your theme files in order for them to be editable in the theme editor. You can do this the same way that you do with your HTACCESS file when enabling permalinks.</p>
<h2>Thoughts?</h2>
<p>After you install Wordpress, what are some of the things that you do to get it set up? Are there things you do that are different for a client&#8217;s Wordpress website as opposed to your own Wordpress website? And finally, is there anything that you think should be on this list that I didn&#8217;t include?</p>
<p>Share your thoughts with everyone on these questions and more by leaving a comment below!</p>
<p>&copy;2009 <a href="http://www.addicottweb.com">Addicott Web</a>. All Rights Reserved.</p>.<div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/AddicottWeb?a=SvHATEGp1zY:rCCH9Lq7IMw:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/AddicottWeb?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/AddicottWeb?a=SvHATEGp1zY:rCCH9Lq7IMw:D7DqB2pKExk"><img src="http://feeds.feedburner.com/~ff/AddicottWeb?i=SvHATEGp1zY:rCCH9Lq7IMw:D7DqB2pKExk" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/AddicottWeb?a=SvHATEGp1zY:rCCH9Lq7IMw:F7zBnMyn0Lo"><img src="http://feeds.feedburner.com/~ff/AddicottWeb?i=SvHATEGp1zY:rCCH9Lq7IMw:F7zBnMyn0Lo" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/AddicottWeb?a=SvHATEGp1zY:rCCH9Lq7IMw:qj6IDK7rITs"><img src="http://feeds.feedburner.com/~ff/AddicottWeb?d=qj6IDK7rITs" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/AddicottWeb?a=SvHATEGp1zY:rCCH9Lq7IMw:V_sGLiPBpWU"><img src="http://feeds.feedburner.com/~ff/AddicottWeb?i=SvHATEGp1zY:rCCH9Lq7IMw:V_sGLiPBpWU" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/AddicottWeb/~4/SvHATEGp1zY" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.addicottweb.com/2009/08/just-installed-wordpress-here-are-8-things-to-do/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>What to Ask When Designing for a Target Audience</title>
		<link>http://www.addicottweb.com/2009/08/what-to-ask-when-designing-for-a-target-audience/</link>
		<comments>http://www.addicottweb.com/2009/08/what-to-ask-when-designing-for-a-target-audience/#comments</comments>
		<pubDate>Wed, 12 Aug 2009 15:24:15 +0000</pubDate>
		<dc:creator>Addicott Web</dc:creator>
				<category><![CDATA[Web Design]]></category>
		<category><![CDATA[colors]]></category>
		<category><![CDATA[content]]></category>
		<category><![CDATA[design]]></category>
		<category><![CDATA[keywords]]></category>
		<category><![CDATA[marketing]]></category>
		<category><![CDATA[search]]></category>
		<category><![CDATA[web browser]]></category>

		<guid isPermaLink="false">http://www.addicottweb.com/?p=1920</guid>
		<description><![CDATA[When people first come to me to design a website for them, one of the first things I ask them is who their target audience is. Knowing who a website&#8217;s visitors  are (or will be) is crucial for  designers to know, because it  helps us make all of the design decisions that [...]]]></description>
			<content:encoded><![CDATA[<p>When people first come to me to design a website for them, one of the first things I ask them is who their target audience is. Knowing who a website&#8217;s visitors  are (or will be) is crucial for  designers to know, because it  helps us make all of the design decisions that will ultimately comprise the website we deliver.</p>
<p><span id="more-1920"></span></p>
<p>Asking these questions often means stepping outside of our role as designers and putting on a marketer&#8217;s cap, because ultimately that&#8217;s what a lot of this information is all about. Marketers focus on helping clients communicate with their customers, and that&#8217;s exactly what a successful website does.</p>
<p>People sometimes rely on our expertise as web designers without understanding that marketing is also an important part of what we do. If information about the target audience falls through the cracks, sooner or later the client might come to realize that their website isn&#8217;t doing as well as it should be. In their mind, that&#8217;s a reflection on your product and work as a web designer.</p>
<p>So put on your marketing cap, and ask your clients some of the following questions in order to  design a website that will truly meet the needs of a particular target audience.</p>
<h2>Demographic information</h2>
<p>The most basic information you can get about a target audience is their demographic information. While it&#8217;s important that your client is happy with the website, you need to take into account basic demographic information in order to create a design that will make the website more successful.</p>
<p>Here are some basic demographic questions to ask about a target audience:</p>
<ul>
<li><strong>What gender are they?</strong> &#8211; Knowing whether the target audience is male, female, or both makes a huge impact on your design decisions, mainly in what colors you choose. Men and women react differently to colors, and <a href="../2009/01/color-in-web-design-color-symbolism/?PHPSESSID=6ff2c00256d2e8507088b9c3dd470957">colors symbolize different things</a> to age groups, professions, and ethnic or social groups.</li>
<li><strong>How old are they?</strong> &#8211; Generally speaking, different age groups may be more computer savvy than others, have different familiarities with finding or doing something online, and  have different expectations about what functionality they&#8217;ll find on a website.</li>
<li><strong>What keywords are they searching for?</strong> &#8211; Knowing what keywords people are using to find the product (specifically) or search online for (broadly) is useful for SEO purposes. Ask whether the website is geared towards businesses, individuals, etc., and then use keywords based on their answer.</li>
</ul>
<h2>Content information</h2>
<p>Visitors are coming to your website for some purpose, whether to find information, make a purchase, etc. While the colors and functionality of the website are important, the content is what they&#8217;re really looking for.</p>
<p>Here are questions that I ask my clients about the content expectations of their target audience:</p>
<ul>
<li><strong>Why are visitors coming to your website?</strong> &#8211; Websites for businesses, organizations, and news media all have very different purposes. People come to each type of website looking to do something specific. Knowing what people are most often looking for will help you, as the designer, know what content to emphasize, how to structure the information architecture, and more.</li>
<li><strong>Why should they come back again?</strong> &#8211; Designing a successful website means that you&#8217;ve convinced people that it&#8217;s worth their time (and/or money) to visit the website again in the future. That means communicating some incentive to them, either through your products or through the information they can find on the website. Getting them to visit once is great, but getting them to come back is even better.</li>
<li><strong>What should they see on the homepage?</strong> &#8211; It&#8217;s always tough to prioritize what information should be seen on the homepage. Focusing on your target audience and understanding what they want quick access to should help make those decisions easier. Also  keep in mind what the purpose of your website is, and what people are coming to your website for, to help prioritize what content should go on it.</li>
</ul>
<h2>Technical information</h2>
<p>If I&#8217;m being hired by a client to redesign an existing website, I always check with them to see if they&#8217;re using an analytics program to track their website usage. Most of these programs also offer you information about the website&#8217;s visitors, which would be very useful to know when making some design decisions.</p>
<p>Here are a few questions that you should ask if you know that data is available from the current website:</p>
<ul>
<li><strong>What kind of browser are they using?</strong> &#8211; What proportion of your visitors are using Firefox? Internet Explorer? Safari? This information might be especially useful to know if the target audience is largely using IE 6.0; if they are, then chances are you&#8217;ll have to find some workarounds for the inevitable programs with how your design will display.</li>
<li><strong>What are the most common screen resolutions?</strong> &#8211; Are they using 1280 x 1024? 800 x 600? Something in between. This information is useful because it will give you a sense of not only how wide your main content area can safely be, but of what proportions you can use in your design in order to let most people be able to see it so that it still looks nice.</li>
</ul>
<h2>Thoughts?</h2>
<p>What other questions do you ask about a website&#8217;s target audience when you work with clients? Share your thoughts with everyone about this topic and anything else that comes to mind by filling out the comment form below!</p>
<p>&copy;2009 <a href="http://www.addicottweb.com">Addicott Web</a>. All Rights Reserved.</p>.<div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/AddicottWeb?a=jktkrQn4hCA:bXAwQOjOWfo:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/AddicottWeb?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/AddicottWeb?a=jktkrQn4hCA:bXAwQOjOWfo:D7DqB2pKExk"><img src="http://feeds.feedburner.com/~ff/AddicottWeb?i=jktkrQn4hCA:bXAwQOjOWfo:D7DqB2pKExk" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/AddicottWeb?a=jktkrQn4hCA:bXAwQOjOWfo:F7zBnMyn0Lo"><img src="http://feeds.feedburner.com/~ff/AddicottWeb?i=jktkrQn4hCA:bXAwQOjOWfo:F7zBnMyn0Lo" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/AddicottWeb?a=jktkrQn4hCA:bXAwQOjOWfo:qj6IDK7rITs"><img src="http://feeds.feedburner.com/~ff/AddicottWeb?d=qj6IDK7rITs" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/AddicottWeb?a=jktkrQn4hCA:bXAwQOjOWfo:V_sGLiPBpWU"><img src="http://feeds.feedburner.com/~ff/AddicottWeb?i=jktkrQn4hCA:bXAwQOjOWfo:V_sGLiPBpWU" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/AddicottWeb/~4/jktkrQn4hCA" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.addicottweb.com/2009/08/what-to-ask-when-designing-for-a-target-audience/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>4 Special Usability Concerns of Dark Websites</title>
		<link>http://www.addicottweb.com/2009/08/4-special-usability-concerns-of-dark-websites/</link>
		<comments>http://www.addicottweb.com/2009/08/4-special-usability-concerns-of-dark-websites/#comments</comments>
		<pubDate>Thu, 06 Aug 2009 17:39:18 +0000</pubDate>
		<dc:creator>Addicott Web</dc:creator>
				<category><![CDATA[Usability]]></category>
		<category><![CDATA[Web Design]]></category>
		<category><![CDATA[colors]]></category>
		<category><![CDATA[content]]></category>
		<category><![CDATA[CSS]]></category>
		<category><![CDATA[design]]></category>
		<category><![CDATA[website]]></category>

		<guid isPermaLink="false">http://www.addicottweb.com/?p=1898</guid>
		<description><![CDATA[Dark websites seem to be growing in popularity lately. If done properly, they can convey a sense of elegance, sophistication, sleekness, and/or professionalism. But in order to create a great dark website, web designers need to pay attention to some special usability concerns that come with the unique territory.]]></description>
			<content:encoded><![CDATA[<p>Dark websites seem to be growing in popularity lately. If done properly, they can convey a sense of elegance, sophistication, sleekness, and/or<span id="main" style="visibility: visible;"><span id="search" style="visibility: visible;"> professionalism. But in order to create a great dark website, web designers need to pay attention to </span></span>some special usability concerns that come with the unique territory.</p>
<p><span id="more-1898"></span></p>
<p>Dark websites can seem refreshing sometimes, especially because most websites are somewhat similar in the sense that they feature dark text on a white background. That&#8217;s no coincidence, either &#8211; that color contrast is easiest on the eyes.</p>
<p>Light text on dark backgrounds, on the other hand, is more difficult to read because it makes your eyes strain more in order to read the text on the page. Add that natural effect to the fact that a lot of dark websites out there don&#8217;t necessarily pay attention to some of these usability concerns, and it&#8217;s no wonder that some people have a love &#8216;em or hate &#8216;em mentality when it comes to them.</p>
<p>I&#8217;ll admit it: I was one of those designers who didn&#8217;t necessarily pay attention to all of these unique concerns. I created a <a href="http://www.adambweinstein.com" target="_blank">dark website for a friend</a> back in 2008 &#8211; actually the only one that I&#8217;ve done so far. I paid attention to most of these special concerns, but as I write this and look at the website again, I notice some things I would have done differently that don&#8217;t follow the advice I give below.</p>
<h2>Concern #1: Font selection</h2>
<p>On a lot of dark websites, designers use a serif font (such as Georgia, Times New Roman, etc.) because those types of fonts help convey all the senses that dark websites have (elegance, professionalism, etc.).</p>
<p>So what&#8217;s the concern? Using a serif font for your main text, at a normal size of 12-14 pixels, means that the flourishes on the serifs start making the text less readable. The letters will start to blend into each other, so your eyes have to strain more to tell words and letters apart.</p>
<p>Here are a few tips to keep in mind for proper font selection:</p>
<ul>
<li><strong>Use serif fonts for headers only</strong> &#8211; Headers, page titles, and elements of that nature are always larger than the text around them. When you increase the font size, the flourishes in the serifs are more distinguishable, and that text is easier to read.</li>
<li><strong>Always use sans-serif fonts for text</strong> &#8211; Sans-serif fonts, such as Arial, Helvetica, etc., don&#8217;t have flourishes. On a dark background, this will make them easier to read, especially at the smaller sizes usually associated with regular body text.</li>
</ul>
<h2>Concern #2: Text contrast</h2>
<p>Text contrast may be one of the most important determining factors in whether a dark website is successful or not. Too little contrast will make your text extremely difficult to read and your website difficult to navigate through &#8211; especially in conjunction with what fonts you used. Too much contrast will make everything stand out too much, and the design won&#8217;t look as nice.</p>
<p>The key to a great dark design is finding the right balance between the text and the background. Here are a few tips for how to do that:</p>
<ul>
<li><strong>Experiment with shades of gray</strong> &#8211; On dark websites, most body text is generally in some shade of gray. Use a shade that&#8217;s not too dark though, because if you choose one that is, the text will be very difficult to read &#8211; especially when in conjunction with poor font selection, as I mentioned above. (This is one of the most common usability mistakes you&#8217;ll see on  dark websites.)</li>
<li><strong>Use pure white sparingly</strong> &#8211; Pure white text on a black (or similarly dark) background will be very noticeable to the eye. How you use white &#8211; and how often &#8211; depends on a number of things, such as how dark your background is, what your text color is (for example, you might use white for links if your text color is a shade of gray), how big your text is, etc., so use your best judgment.</li>
</ul>
<h2>Concern #3: Font size</h2>
<p>The size of your text needs to help compensate a bit for the additional eye strain that people will have trying to read your text. That&#8217;s why on a lot of dark websites, the   text is a little larger than it would normally be on a light website.</p>
<p>Keep in mind too that the font size is what will bring together the past three usability concerns. If your body text is a serif font, colored in a shade of gray that doesn&#8217;t give enough contrast, and is sized too small, that&#8217;s the perfect trifecta for what make your text almost completely illegible.</p>
<h2>Concern #4: Color schemes</h2>
<p>Generally speaking, when you&#8217;re designing a light website, you have a lot more flexibility when choosing a color scheme than when you&#8217;re working with a dark website. Most color schemes work well with a light color to contrast against, but they don&#8217;t all work well with black.</p>
<p>Most websites start with white as the foundation, and use color to achieve depth and some sort of visual effect. Dark websites are different in the sense that you&#8217;re already starting with a color and already have some depth to the website. You don&#8217;t want to add a color scheme with a lot of colors on top of the dark color you&#8217;re already using &#8211; that&#8217;s a lot of colors, and can be visually confusing. Your color scheme should generally be simpler, and should use less colors than the color schemes for light websites.</p>
<p>Here are some other things to keep in mind:</p>
<ul>
<li><strong>Use color to draw just enough attention</strong> &#8211; When your eyes first see a dark background, they are drawn to color much quicker than they would on a light background. So use your colors to help lead people where you want them to go, but don&#8217;t overuse them so that they overpower your website and it&#8217;s difficult for people to focus on your content.</li>
<li><strong>Choose your color scheme appropriately</strong> &#8211; Depending on what your website is for, there might be certain colors that make sense to use in contrast to the darkness of your background. Yellow and black work well for action, red and black for romance, blue and black for technology, etc. So know what your website is really for when deciding what colors to use as contrast colors.</li>
</ul>
<h2>Want to see samples?</h2>
<p>There are plenty of galleries out there with samples of great dark websites. Here are a few worth looking at for inspiration:</p>
<ul>
<li><a href="http://www.smashingmagazine.com/2007/01/13/30-dark-designs-you-shouldve-seen/" target="_blank">30 Dark Designs You Should&#8217;ve Seen</a> (Smashing Magazine)</li>
<li><a href="http://vandelaydesign.com/blog/galleries/dark/" target="_blank">25 Beautifully Dark Website Designs</a> (Vandelay Design)</li>
<li><a href="http://dzineblog.com/2008/06/27-dark-website-designs.html" target="_blank">Web Design Inspiration &#8211; 27 Dark Website Designs</a> (Dzine)</li>
<li><a href="http://elitebydesign.com/30-most-inspirational-dark-web-designs/" target="_blank">30 Most Inspirational Dark Web Designs</a> (Elite by Design)</li>
</ul>
<h2>Thoughts?</h2>
<p>If you work with or come across a lot of dark websites, what do you think about some of these usability concerns? Are there others that I haven&#8217;t listed that you think are also important? Share your thoughts with everyone by leaving a comment below!</p>
<p>&copy;2009 <a href="http://www.addicottweb.com">Addicott Web</a>. All Rights Reserved.</p>.<div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/AddicottWeb?a=Bwodcau_l6k:2AnRS-70ACo:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/AddicottWeb?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/AddicottWeb?a=Bwodcau_l6k:2AnRS-70ACo:D7DqB2pKExk"><img src="http://feeds.feedburner.com/~ff/AddicottWeb?i=Bwodcau_l6k:2AnRS-70ACo:D7DqB2pKExk" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/AddicottWeb?a=Bwodcau_l6k:2AnRS-70ACo:F7zBnMyn0Lo"><img src="http://feeds.feedburner.com/~ff/AddicottWeb?i=Bwodcau_l6k:2AnRS-70ACo:F7zBnMyn0Lo" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/AddicottWeb?a=Bwodcau_l6k:2AnRS-70ACo:qj6IDK7rITs"><img src="http://feeds.feedburner.com/~ff/AddicottWeb?d=qj6IDK7rITs" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/AddicottWeb?a=Bwodcau_l6k:2AnRS-70ACo:V_sGLiPBpWU"><img src="http://feeds.feedburner.com/~ff/AddicottWeb?i=Bwodcau_l6k:2AnRS-70ACo:V_sGLiPBpWU" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/AddicottWeb/~4/Bwodcau_l6k" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.addicottweb.com/2009/08/4-special-usability-concerns-of-dark-websites/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Create Single Post Pages for Different Categories</title>
		<link>http://www.addicottweb.com/2009/07/create-single-post-pages-for-different-categories/</link>
		<comments>http://www.addicottweb.com/2009/07/create-single-post-pages-for-different-categories/#comments</comments>
		<pubDate>Tue, 14 Jul 2009 15:56:54 +0000</pubDate>
		<dc:creator>Addicott Web</dc:creator>
				<category><![CDATA[How To's]]></category>
		<category><![CDATA[Wordpress]]></category>

		<guid isPermaLink="false">http://www.addicottweb.com/?p=1811</guid>
		<description><![CDATA[Say you have a lot of categories and posts on your Wordpress website, and want to have different single post pages for each category. How would you make this happen? It's pretty simple actually - here's how.]]></description>
			<content:encoded><![CDATA[<p>Say you have a lot of categories and posts on your Wordpress website, and want to have different single post pages for each category. How would you make this happen? It&#8217;s pretty simple actually &#8211; here&#8217;s how.</p>
<p><span id="more-1811"></span></p>
<h2>What you need to know</h2>
<p>The way Wordpress works, it tries to view each single post using your particular theme&#8217;s &#8220;<em>single.php</em>&#8221; file. Normally when you&#8217;re designing a Wordpress theme, you would style that file however you want your posts to appear, and that would be the end of that.</p>
<p>If you want to have single posts display differently based on what category they&#8217;re in, it requires a slightly different approach. It&#8217;s very easy to do &#8211; anyone who has at least a basic knowledge of Wordpress theme files should be able to do it.</p>
<p>Simply put, all you have to do is create a few additional files, add in some conditional code (which you can copy from below), upload to your Wordpress theme directory, and that&#8217;s it &#8211; you&#8217;re good to go!</p>
<h2>Step 1: Create the template pages</h2>
<p>The first thing you want to do is create the different &#8220;<em>single.php</em>&#8221; pages for the posts in a particular category. The code in these should be what&#8217;s already used in your existing &#8220;<em>single.php</em>&#8221; file, although this is where you would style things a bit differently for each category  by adding images, extra content, etc.</p>
<p>There are two things to keep in mind here:</p>
<ul>
<li><strong>Naming conventions</strong> &#8211; Name the different &#8220;<em>single.php</em>&#8221; pages in a way that makes it obvious to you which category they&#8217;re associated with &#8211;  &#8220;<em>single_categoryID.php</em>&#8220;, &#8220;<em>single_categoryNAME.php</em>&#8220;, etc.</li>
<li><strong>Create a default page</strong> &#8211; Call the file &#8220;<em>single_default.php</em>&#8220;, and then use the basic code in your template for how your posts should be displayed. This is a &#8220;fall back&#8221; page &#8211; you&#8217;ll see why in step 2.</li>
</ul>
<h2>Step 2:  Write the conditional code</h2>
<p>What ties together the different single post pages that you just created in step 1 is some conditional code that tells Wordpress what single post page to use. Put the following (and only the following) in your theme&#8217;s &#8220;<em>single.php</em>&#8221; file:</p>
<pre> &lt;?php post;

if ( in_category('2') ) {
include(TEMPLATEPATH . '/single_category2.php'); }

elseif ( in_category('3') ) {
include(TEMPLATEPATH . '/single_category3.php'); }

elseif ( in_category('4') ) {
include(TEMPLATEPATH . '/single_category4.php'); }

else { include(TEMPLATEPATH . '/single_default.php'); } ?&gt;</pre>
<p>Basically, this code is telling Wordpress to do two things:</p>
<ul>
<li><strong>Check the category</strong> &#8211; Wordpress will  check the post to see what category it&#8217;s under. If it&#8217;s in a particular category that you&#8217;ve included in the conditional code above,  Wordpress will display the post using the single post page associated with that category.</li>
<li><strong>Fall back to a default</strong> &#8211; When Wordpress checks the category of a particular post, if it can&#8217;t find a single post page associated with that particular category (or if you haven&#8217;t created one), it will &#8220;fall back&#8221; and use the default single post page that you had created.</li>
</ul>
<p>Note: you can keep adding conditions depending on the number of different single post pages that you need to create &#8211; you&#8217;re not limited to just three as in the example above.</p>
<h2>With this principle, you can also&#8230;</h2>
<p>The same ideas that we used above to create different single post pages  can also be used to create different category pages.</p>
<p>Say you have 5 categories on your blog, and you want each category page to have a different introduction and image on it above the list of posts in the category. According to the <a href="http://codex.wordpress.org/Category_Templates" target="_blank">Wordpress codex page on category templates</a>, all you have to do to make this happen is create separate pages for each category, and just name the files by the category ID &#8211; &#8220;<em>category-2.php</em>&#8220;, &#8220;<em>category-3.php</em>&#8220;, etc.</p>
<p>What&#8217;s happening behind the scenes is that <a href="http://codex.wordpress.org/Template_Hierarchy" target="_blank">Wordpress&#8217;s template hierarchy</a> is automatically checking to see if there are different pages used to display a particular category. If there are, it will use them, and if there aren&#8217;t, it will fall back to either the &#8220;<em>category.php</em>&#8221; page (assuming you have it in your theme) or the &#8220;<em>archive.php</em>&#8221; or &#8220;<em>index.php</em>&#8221; pages.</p>
<h2>Thoughts?</h2>
<p>Has anyone tried this method of using different single post pages on their Wordpress website or blog? Or, have you just tried my method and have any questions about it (or want to share your success)? If so, share your thoughts with everyone by leaving a comment below!</p>
<p>&copy;2009 <a href="http://www.addicottweb.com">Addicott Web</a>. All Rights Reserved.</p>.<div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/AddicottWeb?a=50I88QAL5fE:Bua4dJX1w3c:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/AddicottWeb?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/AddicottWeb?a=50I88QAL5fE:Bua4dJX1w3c:D7DqB2pKExk"><img src="http://feeds.feedburner.com/~ff/AddicottWeb?i=50I88QAL5fE:Bua4dJX1w3c:D7DqB2pKExk" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/AddicottWeb?a=50I88QAL5fE:Bua4dJX1w3c:F7zBnMyn0Lo"><img src="http://feeds.feedburner.com/~ff/AddicottWeb?i=50I88QAL5fE:Bua4dJX1w3c:F7zBnMyn0Lo" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/AddicottWeb?a=50I88QAL5fE:Bua4dJX1w3c:qj6IDK7rITs"><img src="http://feeds.feedburner.com/~ff/AddicottWeb?d=qj6IDK7rITs" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/AddicottWeb?a=50I88QAL5fE:Bua4dJX1w3c:V_sGLiPBpWU"><img src="http://feeds.feedburner.com/~ff/AddicottWeb?i=50I88QAL5fE:Bua4dJX1w3c:V_sGLiPBpWU" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/AddicottWeb/~4/50I88QAL5fE" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.addicottweb.com/2009/07/create-single-post-pages-for-different-categories/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Flash Banners: Content and Design Considerations</title>
		<link>http://www.addicottweb.com/2009/07/flash-banners-content-design-considerations/</link>
		<comments>http://www.addicottweb.com/2009/07/flash-banners-content-design-considerations/#comments</comments>
		<pubDate>Tue, 07 Jul 2009 16:00:58 +0000</pubDate>
		<dc:creator>Addicott Web</dc:creator>
				<category><![CDATA[Web Design]]></category>
		<category><![CDATA[content]]></category>
		<category><![CDATA[design]]></category>
		<category><![CDATA[homepage]]></category>
		<category><![CDATA[images]]></category>
		<category><![CDATA[SEO]]></category>
		<category><![CDATA[usability]]></category>

		<guid isPermaLink="false">http://www.addicottweb.com/?p=1686</guid>
		<description><![CDATA[Flash banners can be a great addition to a website and can be a great way to convey important information in a visually attractive manner. In order to make them as effective as possible, there are some important content and design considerations that should be kept in mind when creating the banner.]]></description>
			<content:encoded><![CDATA[<p>Flash banners can be a great addition to a website and can be a great way to convey important information in a visually attractive manner. In order to make them as effective as possible, there are some important content and design considerations that should be kept in mind when creating the banner.</p>
<p><span id="more-1686"></span></p>
<p>Flash banners are useful because they can convey more information than you would normally be able to if you were using static images and unchanging content alone. This is especially true if you&#8217;re looking to communicate more than one point or display more than one photo, and if you only have a limited amount of space to do that.</p>
<p>As the designer, it&#8217;s important that you convey to a client that while making a Flash banner is easy for you to do, making an effective one (and incorporating it onto the website) is another story.</p>
<p>Here are some of the content and design considerations that I talk about with my clients in order to make their Flash banners as effective as possible.</p>
<h2>Content considerations</h2>
<ul>
<li><strong>Keep it short and simple</strong> &#8211; If you&#8217;re using a banner with transitioning content, keep the written words short enough so that people can read them quickly and so that you can maintain a decent transition pace. Short phrases or no more than 1-2 sentences are ideal.</li>
<li><strong>Use call to action words</strong> &#8211; Flash banners attract attention because the motion catches people&#8217;s attention. Take advantage of that and emphasize your call-to-action in your banner. Keep the content you include in them action-oriented, and you&#8217;ll definitely help your own cause.</li>
<li><strong>They&#8217;re not good for SEO</strong> &#8211; Content embedded in Flash banners can&#8217;t be found by the search engine crawlers, which only find words on a page. Make sure to emphasize any keywords or content within your Flash banner elsewhere on the page where the crawlers will be able to find them.</li>
<li><strong>Remember to style links in them</strong> &#8211; You can include links in your banner, even if the banner itself isn&#8217;t SEO-friendly. Just remember that you should style those links to look like links should &#8211; after all, <a href="http://www.addicottweb.com/2008/12/how-text-links-are-styled-is-important/">how the links are styled</a> helps make them  effective and usable.</li>
</ul>
<h2>Design considerations</h2>
<ul>
<li><strong>Use to shorten the homepage</strong> &#8211; Flash banners are a great way to convey more information in a limited amount of visual space, which is perfect for designers concerned with homepage usability. This will help make your homepage shorter, more concise, and more usable.</li>
<li><strong>Use on the homepage only</strong> &#8211; A Flash banner on a website&#8217;s homepage is a great-looking accent. A Flash banner on every page of a website (in the header, footer, etc.) is just distracting and becomes annoying after only a few visits to the website. Use it once, and leave it at that.</li>
<li><strong>Leave long gaps between transitions</strong> &#8211; When rotating content, leave a long enough gap so that people have time to really notice what the content is saying or what message the photo is trying to convey. Slow and steady is the key &#8211; transitions that come too quickly will overwhelm your visitors.</li>
<li><strong>Use photos to match your message</strong> &#8211; Photos can say a lot about your organization or business, so make sure to use ones that really emphasize what you want to convey about yourself. You don&#8217;t have to use a lot of them &#8211; 4-6 are usually enough to make the point.</li>
<li><strong>Shouldn&#8217;t be overwhelming in size</strong> &#8211; Your Flash banner shouldn&#8217;t be so large that it visually dominates and overwhelms the homepage. Limiting the banner to perhaps 2/3 the width of the main content area and floating it to one side is enough to achieve the effect you want.</li>
</ul>
<h2>2 key things to remember</h2>
<ul>
<li><strong>Get it right the first time</strong> &#8211; You have, at most, one chance to get someone to watch your Flash banner in its entirety, and that&#8217;s when someone is visiting your website for the first time. Once they become return visitors, they&#8217;re much more likely to go right to the content that they&#8217;re looking for and skip your banner &#8211; or your homepage &#8211; altogether.</li>
<li><strong>Not the primary means of delivering content</strong> &#8211; While Flash banners are great as accents, they shouldn&#8217;t be a primary means of delivering content on your homepage. If you want to incorporate content or a vital link within a banner, make sure to place it elsewhere on the page. You should always assume that the banner won&#8217;t be watched in its entirety and the content in it won&#8217;t be delivered.</li>
</ul>
<h2>Thoughts?</h2>
<p>Do you have any suggestions for how make Flash banners more effective that I didn&#8217;t mention here? If so, share them or any other useful information with everyone by leaving a comment below!</p>
<p>&copy;2009 <a href="http://www.addicottweb.com">Addicott Web</a>. All Rights Reserved.</p>.<div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/AddicottWeb?a=7yUtY3jE8LY:RPbgZ4pN37M:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/AddicottWeb?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/AddicottWeb?a=7yUtY3jE8LY:RPbgZ4pN37M:D7DqB2pKExk"><img src="http://feeds.feedburner.com/~ff/AddicottWeb?i=7yUtY3jE8LY:RPbgZ4pN37M:D7DqB2pKExk" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/AddicottWeb?a=7yUtY3jE8LY:RPbgZ4pN37M:F7zBnMyn0Lo"><img src="http://feeds.feedburner.com/~ff/AddicottWeb?i=7yUtY3jE8LY:RPbgZ4pN37M:F7zBnMyn0Lo" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/AddicottWeb?a=7yUtY3jE8LY:RPbgZ4pN37M:qj6IDK7rITs"><img src="http://feeds.feedburner.com/~ff/AddicottWeb?d=qj6IDK7rITs" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/AddicottWeb?a=7yUtY3jE8LY:RPbgZ4pN37M:V_sGLiPBpWU"><img src="http://feeds.feedburner.com/~ff/AddicottWeb?i=7yUtY3jE8LY:RPbgZ4pN37M:V_sGLiPBpWU" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/AddicottWeb/~4/7yUtY3jE8LY" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.addicottweb.com/2009/07/flash-banners-content-design-considerations/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Last Things I Do Before Launching a Website</title>
		<link>http://www.addicottweb.com/2009/06/last-things-i-do-before-launching-a-website/</link>
		<comments>http://www.addicottweb.com/2009/06/last-things-i-do-before-launching-a-website/#comments</comments>
		<pubDate>Tue, 30 Jun 2009 16:00:17 +0000</pubDate>
		<dc:creator>Addicott Web</dc:creator>
				<category><![CDATA[SEO]]></category>
		<category><![CDATA[Web Content]]></category>
		<category><![CDATA[Web Design]]></category>
		<category><![CDATA[clients]]></category>
		<category><![CDATA[content]]></category>
		<category><![CDATA[Google]]></category>
		<category><![CDATA[navigation]]></category>
		<category><![CDATA[website]]></category>

		<guid isPermaLink="false">http://www.addicottweb.com/?p=1566</guid>
		<description><![CDATA[Launching a website can be a very exciting, yet frantic, time for both my clients and myself. With the end of the project in sight, it&#8217;s easy to forget to do some of the basic things that can greatly affect the initial success of the new website. Here is my list of what I do [...]]]></description>
			<content:encoded><![CDATA[<p>Launching a website can be a very exciting, yet frantic, time for both my clients and myself. With the end of the project in sight, it&#8217;s easy to forget to do some of the basic things that can greatly affect the initial success of the new website. Here is my list of what I do before I launch a new website.</p>
<p><span id="more-1566"></span></p>
<p>While some of these things fall into what I would call basic design practices that should always be done, others are what I think of as the little extra touches the designer can do to make a website that much better.</p>
<p>No matter what you call them, what everything on this list has in common is that they&#8217;re extra value that clients are receiving for their financial investment. It&#8217;s something that I communicate to them when giving a cost estimate for their project because it shows both how I&#8217;ll be spending the time and what they&#8217;re getting for what they&#8217;re paying.</p>
<p>See how many of these things you do when working on a website for a client &#8211; and if you&#8217;re not doing them, consider adding them to your regular design process.</p>
<h2>Design and Navigation</h2>
<ul>
<li><strong>Create an error page</strong> &#8211; You may have checked every single link on your website, but it&#8217;s still inevitable that some visitors will type a URL wrong or somehow get to a page that doesn&#8217;t exist. A custom 404 error page will help your users find what they&#8217;re looking for when that happens.</li>
<li><strong>Add a favicon</strong> &#8211; Favicons are the little icons that you see at the top of a browser window and in your bookmarks list. They&#8217;re a great finishing touch for any website to have, and can even have some small usability benefits &#8211; great reasons for <a href="http://www.addicottweb.com/2009/01/why-use-a-favicon-on-your-website/">why websites should always use favicons</a>.</li>
<li><strong>Validate the site markup</strong> &#8211; Make sure your website adheres to web standards before you launch. Validated websites load faster, better, and on more web browsers, and are also &#8220;future proof&#8221; in the sense that all web browsers will handle the website as you designed it.</li>
<li><strong>Cross-browser test</strong> &#8211; Your website should look and functions the same in all of the major web browsers and on all of the popular operating systems. Most of the popular cross-browser testing tools, such as <a href="http://www.browsershots.org" target="_blank">Browser Shots</a>, also test your website in various screen resolutions as well.</li>
</ul>
<h2>Server Optimization</h2>
<ul>
<li><strong>Resize images accordingly </strong>- If you&#8217;re calling an image from the server and the image files is really large even though it&#8217;s being displayed much smaller, resizing ahead of time will speed up the load time of that page, and help keep the amount of server space you&#8217;re using up at a minimum.</li>
<li><strong>Put javascript in the footer</strong> &#8211; If you&#8217;re calling external Javascript within your website, putting them in the header means that the server will try to load them first before loading your content. Putting them in the footer loads the content first before fetching the script &#8211; much more desirable.</li>
<li><strong>Clean up server of working files</strong> &#8211; While developing a website, I often find myself with extra files on the server that I had used at some point but am not using any longer. I delete those unnecessary files so that what&#8217;s on the server is only what&#8217;s being used somewhere on the website.</li>
</ul>
<h2>Search Engine Optimization</h2>
<ul>
<li><strong>Generate a sitemap</strong> &#8211; Creating a sitemap is useful for your users as a navigation tool, but for the search engines perspective it will help them find new content on your website faster than by relying on their crawler to find it. This will help you get more of content noticed and more links followed.</li>
<li><strong>Submit URL to search engines</strong> &#8211; If you&#8217;re launching a new website, the search engines won&#8217;t know about it unless you tell them to come and crawl your website. This one of the <a href="http://www.addicottweb.com/2009/01/simple-steps-to-bolster-seo-on-your-website/">simple steps to bolster SEO on your website</a>, so at a minimum submit the URL to Google, Yahoo, and MSN.</li>
<li><strong>Create a robots.txt file</strong> &#8211; This file tells the search engine spiders what they can and can&#8217;t crawl on your website. If you don&#8217;t want them to look at certain directories, this is where you would specify that. One way this might be useful for SEO is as a way to avoid duplicate content on your website.</li>
</ul>
<h2>Content</h2>
<ul>
<li><strong>Proofread your content one last time</strong> &#8211; There&#8217;s no excuse for spelling or grammar mistakes on a website. If you&#8217;ve written content for a website, such as links, <a href="http://www.addicottweb.com/2009/04/why-your-content-needs-intro-text-in-it/">intro text</a>, etc., having extra eyes looking at it to make sure everything sounds good and is written properly will make sure any errors are caught.</li>
<li><strong>Check for broken links one last time</strong> &#8211; You can spend all the time in the world making your website as great as possible, but if you have broken links on it, the website looks bad. Before you launch, click through all the links on the website to verify that everything works properly.</li>
<li><strong>Set up Google analytics</strong> &#8211; Understanding what content your visitors are looking at on your website is absolutely essential in order to make it as effective as possible. Google Analytics is not only free, but incredibly popular and easy to use, which is why I use it on all my client websites.</li>
</ul>
<h2>Thoughts?</h2>
<p>Is there anything that I didn&#8217;t list here that your normally do when you launch a new website for a client? Share your thoughts with everyone by leaving a comment below!</p>
<p>&copy;2009 <a href="http://www.addicottweb.com">Addicott Web</a>. All Rights Reserved.</p>.<div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/AddicottWeb?a=rpKLWQuBj4Y:0sCct8U9DoA:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/AddicottWeb?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/AddicottWeb?a=rpKLWQuBj4Y:0sCct8U9DoA:D7DqB2pKExk"><img src="http://feeds.feedburner.com/~ff/AddicottWeb?i=rpKLWQuBj4Y:0sCct8U9DoA:D7DqB2pKExk" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/AddicottWeb?a=rpKLWQuBj4Y:0sCct8U9DoA:F7zBnMyn0Lo"><img src="http://feeds.feedburner.com/~ff/AddicottWeb?i=rpKLWQuBj4Y:0sCct8U9DoA:F7zBnMyn0Lo" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/AddicottWeb?a=rpKLWQuBj4Y:0sCct8U9DoA:qj6IDK7rITs"><img src="http://feeds.feedburner.com/~ff/AddicottWeb?d=qj6IDK7rITs" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/AddicottWeb?a=rpKLWQuBj4Y:0sCct8U9DoA:V_sGLiPBpWU"><img src="http://feeds.feedburner.com/~ff/AddicottWeb?i=rpKLWQuBj4Y:0sCct8U9DoA:V_sGLiPBpWU" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/AddicottWeb/~4/rpKLWQuBj4Y" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.addicottweb.com/2009/06/last-things-i-do-before-launching-a-website/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss><!-- Dynamic page generated in 0.754 seconds. --><!-- Cached page generated by WP-Super-Cache on 2009-11-12 13:16:40 -->
