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

<channel>
	<title>Evolution Web Development</title>
	<atom:link href="http://www.evowebdev.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.evowebdev.com</link>
	<description>web design/development for New Mexico business</description>
	<lastBuildDate>Fri, 12 Mar 2010 01:30:23 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.2</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>Basic Custom Fields Technique to Enhance WordPress as a CMS</title>
		<link>http://www.evowebdev.com/blog/2010/03/custom-fields-wordpress-cms/</link>
		<comments>http://www.evowebdev.com/blog/2010/03/custom-fields-wordpress-cms/#comments</comments>
		<pubDate>Fri, 12 Mar 2010 01:30:23 +0000</pubDate>
		<dc:creator>Ray Gulick</dc:creator>
				<category><![CDATA[CSS]]></category>
		<category><![CDATA[Design/Development]]></category>
		<category><![CDATA[PHP for Designers]]></category>
		<category><![CDATA[WordPress]]></category>
		<category><![CDATA[Custom Fields]]></category>
		<category><![CDATA[WordPress as CMS]]></category>

		<guid isPermaLink="false">http://www.evowebdev.com/?p=942</guid>
		<description><![CDATA[
This is not a new trick, and I certainly did not invent it. It&#8217;s been used before, but when I went searching for information about how to do it, it was hard to find. In fact, I finally had to ask a friend who is much better at PHP than I am to help me [...]]]></description>
			<content:encoded><![CDATA[<div class="alignright"><img alt="WordPress" src="/images/wpchrome.jpg" /></div>
<p>This is not a new trick, and I certainly did not invent it. It&#8217;s been used before, but when I went searching for information about how to do it, it was hard to find. In fact, I finally had to ask a friend who is <em>much</em> better at PHP than I am to help me (I only recently learned to spell P-H-P). This is really basic stuff, but for a lot of us, basic is what we need to get on with our projects.</p>
<p>Sometimes, you need things to NOT appear on a page unless something else that goes with it appears on the page. This is a pretty basic capability for most CMS systems, but I had never done it with WordPress on a page-by-page basis.</p>
<p>Here&#8217;s the scenario. I wanted to add a highlighted note in the subnavigation area of my WordPress theme, <a href="http://www.evowpthemes.com/evo4">Evo4 CMS</a>, and I wanted it to be tied to the content of the page it appeared on. I hadn&#8217;t used custom fields much, but it seemed to me that was the way to go. Here is an example of the code I wanted to appear below the subnavigation items on the pages:</p>
<p class="code">&lt;div class=&quot;sub-note&quot;&gt;</p>
<p class="code">&lt;h5&gt;Subnav Note Heading&lt;/h5&gt;</p>
<p class="code">&lt;p&gt;Sed do eiusmod tempor incididunt velit esse cillum dolore duis aute irure dolor.&lt;/p&gt;</p>
<p class="codelast">&lt;/div&gt;</p>
<p>Pretty simple, right? I decided that, for greater flexibility, my client would have to be responsible for the HTML formatting within the div (this particular client is capable), but I did not want them to be responsible for the div itself, as things can get ugly when someone forgets to close a div or attaches the wrong class to it. In the WordPress backend, on the page on which I wanted the note to appear, I created a custom field named &quot;subnavnote&quot; and added the value (same as above, but without the div):</p>
<p class="code">&lt;h5&gt;Subnav Note Heading&lt;/h5&gt;</p>
<p class="codelast">&lt;p&gt;Sed do eiusmod tempor incididunt velit esse cillum dolore duis aute irure dolor.&lt;/p&gt;</p>
<p>On the page template in my theme (page.php), in the subnavigation column, I added the following:</p>
<p class="code">&lt;div class=&quot;<strong>sub-note</strong>&quot;&gt;</p>
<p class="code">&lt;?php echo get_post_meta($post-&gt;'ID, '<strong>subnavnote</strong>', true); ?&gt;</p>
<p class="codelast">&lt;/div&gt;</p>
<p>Woohoo! That displayed the text from the custom field in the subnavigation area. But there was a problem: when I went to other pages, an empty &quot;sub-note&quot; div displayed (CSS specified padding and a background color for the div, which caused it to be visible even when empty). And that was definitely NOT something to yell &quot;woohoo&quot; about.</p>
<p>I needed a way to make the div appear on a page <em>only</em> if there was a value for &quot;subnavnote.&quot; No note, no need for the note container. This was where Googling left me high and dry, as I didn&#8217;t know the right terms to use, or how to ask the question so that I was able to find a usable answer. I have no doubt the answer was and is out there, but it remained outside my grasp.</p>
<p>After fiddling and failing with some PHP code snippets, I asked a friend who is a PHP coder for help. Here&#8217;s the solution she gave me:</p>
<p class="code">&lt;?php $<strong>subnavnote_value</strong> = get_post_meta($post-&gt;ID, '<strong>subnavnote</strong>', true); ?&gt;</p>
<p class="codelast">&lt;?php echo ($<strong>subnavnote_value</strong> != '') ? &quot;&lt;div class='<strong>sub-note</strong>'&gt;&quot;.$<strong>subnavnote_value</strong>.&quot;&lt;/div&gt;&quot; : ''; ?&gt;</p>
<p>Basically, if there is no value for the custom field on a particular page, this code prevents the div that contains the custom field content from appearing. And if there is a value for the custom field, both the value and its container div appear on the page.</p>
<p>I would break down the code and explain it if I was competent to do so, but I&#8217;m not (P&#8230; uhh&#8230; H&#8230; um&#8230;). I can see how it works, however, and have adapted it to other similar circumstances, which greatly increases my ability to use custom fields. I hope this solution is similarly useful for you.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.evowebdev.com/blog/2010/03/custom-fields-wordpress-cms/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Throwing the Yellow Flag for Improper Use of Images in a Blog Post</title>
		<link>http://www.evowebdev.com/blog/2010/02/using-images-in-blog-posts/</link>
		<comments>http://www.evowebdev.com/blog/2010/02/using-images-in-blog-posts/#comments</comments>
		<pubDate>Tue, 23 Feb 2010 00:07:45 +0000</pubDate>
		<dc:creator>Ray Gulick</dc:creator>
				<category><![CDATA[Blogging]]></category>
		<category><![CDATA[Communication]]></category>
		<category><![CDATA[Design/Development]]></category>
		<category><![CDATA[Marketing]]></category>

		<guid isPermaLink="false">http://www.evowebdev.com/?p=941</guid>
		<description><![CDATA[
One of the best things you can do to set the tone of a blog post and encourage people to read beyond the heading is to include an image. Most bloggers understand this, because an awful lot of them use images in their posts. But &#34;misuse&#34; of images is more common than &#34;use&#34; of images, [...]]]></description>
			<content:encoded><![CDATA[<div class="alignright"><img alt="rules violation" src="/images/referee_yellow_flag.jpg" /></div>
<p>One of the best things you can do to set the tone of a blog post and encourage people to read beyond the heading is to include an image. Most bloggers understand this, because an awful lot of them use images in their posts. But &quot;misuse&quot; of images is more common than &quot;use&quot; of images, if you have the perspective that the purpose of an image in a blog post is to communicate.</p>
<p>Here, then, are 6 rules (I could have called them guidelines, but then no one would argue with  me) for using images in your blog posts which deserve a yellow flag when violated:</p>
<h3>1. One image per post.</h3>
<p>Blog posts are usually short; 300-800 words is a commonly suggested length. That small amount of text simply does not create enough screen real estate to accommodate several images without looking cluttered and unreadable (you DID want people to read your post, right?). The idea of &quot;less is more&quot; has never been more applicable. In cases where multiple images are <em>truly</em> called for (e.g., you have a series of photos showing attendees at an event), you can use one anchor image with a link to launch a Thickbox slideshow (or similar). This is also a good technique to use when you need a large image to show critical detail.</p>
<h3>2. Put the image at the top of the post.</h3>
<p>Put the image where visitors can see it immediately, right below the heading of your post. I personally like to align the image to the right at the top of the first paragraph: the image is where they can see it and connect it to the heading, but it doesn&#8217;t block their entry into the post text as it might if it were aligned left.</p>
<h3>3. Make sure the image relates to the heading of the post.</h3>
<p>An image should not leave your readers wondering what the connection is with the post, either before or after (or if) they read it. The image should immediately and clearly support or illustrate an idea in your post heading. Most people view disconnects and non sequiturs as annoying, rather than intriguing. If you can&#8217;t find an image to relate to your heading, consider changing your heading.</p>
<h3>4. When looking for images, bring along your sense of humor.</h3>
<p>A little humor or irony in an image (as long as it&#8217;s obvious: reread no. 3) can draw people into the post. It&#8217;s a bit like telling a little joke before a speech. Of course, if the &quot;joke&quot; is inappropriate or misleading, then you&#8217;ve created another issue. So don&#8217;t do that.</p>
<h3>5. Crop and size images appropriately <em>before</em> uploading.</h3>
<p>Any time you see an image that seems to take forever to load in a post, chances are you&#8217;re looking at a big image that has been scaled to fit, rather than sized to fit (i.e., the blogger uploaded a 1200-pixel-wide image and scaled it down to 220 pixels wide in the blog editor, instead of resizing the image to 220 pixels before uploading). Get an image editor and learn to use it to crop and size images, at minimum.</p>
<h3>6. Don&#8217;t use clipart or stock photos. Unless they&#8217;re pretty good.</h3>
<p>A lot of clip art and stock photography is trite and awful and over-used. But some of it is clever and very good and it perfectly illustrates your concept. Put your photo-editor hat on and refuse to use the former. Under no circumstances should you use an image of a multi-ethnic and gender-balanced group of young people with perfect teeth dressed in business casual gaping in awe at the screen of an open laptop in a brightly-lit conference room.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.evowebdev.com/blog/2010/02/using-images-in-blog-posts/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
		<item>
		<title>Keeping Safari (and Chrome) Hacks Out of Your Stylesheets</title>
		<link>http://www.evowebdev.com/blog/2010/01/keeping-safari-and-chrome-hacks-out-of-your-stylesheets/</link>
		<comments>http://www.evowebdev.com/blog/2010/01/keeping-safari-and-chrome-hacks-out-of-your-stylesheets/#comments</comments>
		<pubDate>Thu, 14 Jan 2010 02:29:22 +0000</pubDate>
		<dc:creator>Ray Gulick</dc:creator>
				<category><![CDATA[CSS]]></category>
		<category><![CDATA[Design/Development]]></category>
		<category><![CDATA[PHP for Designers]]></category>

		<guid isPermaLink="false">http://www.evowebdev.com/?p=939</guid>
		<description><![CDATA[
Although I design and develop on a Mac Powerbook, I mostly ignore Safari for two reasons:

Safari is about as standards compliant as browsers get, so it rarely needs any special attention.
Safari is used on fewer than 4% of all computers (and it seems to have peaked).

I use Firefox almost exclusively (although I&#8217;m now experimenting with [...]]]></description>
			<content:encoded><![CDATA[<div class="alignright"><img alt="Safari" src="/images/safari_logo.jpg" /></div>
<p>Although I design and develop on a Mac Powerbook, I mostly ignore Safari for two reasons:</p>
<ol>
<li>Safari is about as standards compliant as browsers get, so it rarely needs any special attention.</li>
<li>Safari is used on fewer than 4% of all computers (<a href="http://www.w3schools.com/browsers/browsers_stats.asp">and it seems to have peaked</a>).</li>
</ol>
<p>I use Firefox almost exclusively (although I&rsquo;m now experimenting with Chrome for Mac), because it&rsquo;s very standards compliant, and it gives me about 99% of the same results as a PC version of Firefox. Using FF in my development process means I have the biggest browser covered (that&rsquo;s right, FF has over 46% of the market, with IE6-IE8 combining for just over 37%). I use crossbrowsertesting.com to hunt for problems in IE. Ideally, I want my work to look the same in all browsers (but I&rsquo;ll settle for &ldquo;close&rdquo; in IE6).</p>
<p>That said, I try to keep in mind an old saying in the web design business: The most important browser to develop for is the browser on your client&rsquo;s screen. One of my clients is an ad agency, and they are completely tied to Safari (I&rsquo;m pretty sure they&rsquo;ve heard of Firefox, but&#8230;). So, looking good in Safari is a priority on their projects. Rarely is there a need for a hack, but occasionally it happens.</p>
<p>There seems to be only <a href="http://dustinbrewer.com/css-hackgetting-safari-to-behave/">one reliable CSS-only way to target Safari</a> (incidentally, it also targets Chrome, which has almost 3x as many users), outlined way back in 2007 by Dustin Brewer. You can put this in your style sheet to enclose Safari-targeted rules:</p>
<p class="code">@media screen and (-webkit-min-device-pixel-ratio:0) {<br />
/* Safari 3.0 and Chrome rules here */<br />
}</p>
<p>But then you have a hack in your style sheet. I find it&rsquo;s easier to maintain (and find) hacks by putting them into a different file, and your basic style sheet is more likely to validate. I experimented with using the above selector in the header to point to a different stylesheet, but had some issues (don&rsquo;t remember now what they were). Finally, I settled on putting the following in the header, following the basic style sheet link:</p>
<p class="code">&lt;style type=&quot;text/css&quot; media=&quot;@media screen and (-webkit-min-device-pixel-ratio:0)&quot;&gt;<br />
&lt;!&ndash;&ndash;<br />
&lt;?php include(&quot;includes/safariCSS.php&quot;); ?&gt;<br />
&ndash;&ndash;&gt;<br />
&lt;/style&gt;</p>
<p>This displays the contents of an include file, displaying CSS rules in the header as an &quot;internal style sheet.&quot; The contents of the php include file consists of CSS rules, but is not a CSS document. Internal style sheets in the header are usually to be avoided due to maintenance and consistency issues, but by using an include, the Safari CSS for all pages is editable in one file.</p>
<p>By the way, the CSS rules from the include appear in the header for <em>all browsers,</em> but the &ldquo;@media&#8230;&rdquo; statement means all but Safari and Chrome ignore the styles. Given that I&rsquo;ve done websites with some extremely complex CSS and only needed 2-3 rules targeting Safari, I don&rsquo;t think this approach risks adding much overhead.</p>
<p><a href="http://evowebdev.com/safarihacks/">View a Demo</a> | <a href="http://evowebdev.com/safarihacks/safarihacks.zip">Download Demo Files</a></p>
<p><strong>Server Side Scripting Reminder:</strong> Because the include is PHP, which renders on the server, the files will not work locally on your computer. To see the results of your experiments, upload the files to a server that supports PHP.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.evowebdev.com/blog/2010/01/keeping-safari-and-chrome-hacks-out-of-your-stylesheets/feed/</wfw:commentRss>
		<slash:comments>18</slash:comments>
		</item>
		<item>
		<title>I&#8217;d Like to Say Nice Things About HostGator&#8217;s Support, but&#8230;</title>
		<link>http://www.evowebdev.com/blog/2010/01/id-like-to-say-nice-things-about-hostgators-support-but/</link>
		<comments>http://www.evowebdev.com/blog/2010/01/id-like-to-say-nice-things-about-hostgators-support-but/#comments</comments>
		<pubDate>Fri, 08 Jan 2010 03:00:16 +0000</pubDate>
		<dc:creator>Ray Gulick</dc:creator>
				<category><![CDATA[Business]]></category>
		<category><![CDATA[Marketing]]></category>
		<category><![CDATA[HostGator]]></category>
		<category><![CDATA[Support]]></category>
		<category><![CDATA[Webhosting]]></category>

		<guid isPermaLink="false">http://www.evowebdev.com/?p=937</guid>
		<description><![CDATA[
Update 2/4/2010: I had reason for some support help from HostGator, so I tried out their chat support. It&#8217;s an entirely different experience. Dedicated attention from a single support tech who stays with you until the problem is resolved. The result? The problem was resolved quickly and efficiently.
Update 1/8/2010: when I returned to HG&#8217;s contact [...]]]></description>
			<content:encoded><![CDATA[<div class="alignright"><img src="/images/hostgator.gif" alt="HostGator, again" /></div>
<p><em>Update 2/4/2010: I had reason for some support help from HostGator, so I tried out their chat support. It&#8217;s an entirely different experience. Dedicated attention from a single support tech who stays with you until the problem is resolved. The result? The problem was resolved quickly and efficiently.</em></p>
<p><em>Update 1/8/2010: when I returned to HG&#8217;s contact page this morning (still not resolved and I need to get beyond the ticket system), I noted that the email addresses </em>did<em> carry the instruction to &quot;submit a ticket by emailing us.&quot; Like most people, when I want help, I tend not to see the details but go straight to the info that looks like it will get me help, without reading (or even seeing) the supplementary info: when I see an &quot;Email Us&quot; heading, I expect the process to act like email. There is a usability lesson in that for me as a web developer/information architect.</em></p>
<p>This is not the first time I have complained in my blog about Hostgator&#8217;s support ticket system. Last time, a nice person from HG even responded to that post, but nothing in the system has changed since then, so nice responses that seem to offer understanding don&#8217;t amount to much.</p>
<p>On HG&#8217;s behalf, let me say they are very reliable, and I don&#8217;t have more support issues than I&#8217;ve experienced with other webhosts. I&#8217;m just not happy with their support system and/or processes, and probably all that can be traced to whoever is managing their support function.</p>
<p>What&#8217;s the issue? HG seems to have a single support channel: a ticket system. And no way around it when it does not fit the need. Here&#8217;s the story:</p>
<blockquote>
<p class="normal"><strong>4:28pm:</strong> I submit a ticket on a problem with a hosted site after spending half an hour trying to determine for myself what the problem might be and what I need to do to fix it.</p>
<p class="normal"><strong>4:35pm: Representative A responds and requests more info.</strong></p>
<p class="normal"><strong>4:41pm:</strong> I respond with requested info.</p>
<p class="normal"><strong>5:36pm: (note increased time) Representative B responds with partial fix and partial explanation.</strong></p>
<p class="normal"><strong>5:39pm:</strong> I respond with questions to clarify what happened.</p>
<p class="normal"><strong>5:43pm: </strong>After noticing that some problems remain, I respond outlining remaining problems.</p>
<p class="normal"><strong>7:38pm: (that was one long dinner break) Representative C responds with additional partial fix, but no requested explanation.</strong></p>
<p class="normal"><strong>7:42pm:</strong> I respond with remaining issues that are apparent.</p>
<p class="normal"><strong>7:59pm:</strong> I share repeated error that has been showing up in error logs.</p>
<p class="normal"><strong>9:28pm:</strong> I&#8217;m still waiting&#8230;</p>
<p class="normal"><em>(Note: times are in HG&#8217;s time zone, an hour ahead of mine)</em></p>
</blockquote>
<p>Does anyone besides me see a problem here with lack of continuity in HG&#8217;s support responses, both in terms of time and personnel? Anyway, <em>I</em> see such a problem, so I decided to go to HG&#8217;s website and send an email to the support contact email, with a little &quot;constructive critcism.&quot; Copied from my email:</p>
<blockquote>
<p class="normal"><em>I&#8217;m a fan of Hostgator. I currently host a few dozen websites on Hostgator. I spend a fair amount of time telling my clients how reliable and rocksolid  Hostgator is.</em></p>
<p class="normal"><em>But that may have to change, because HG does not have its support act  together. At this point, I have several support issues behind me, and the  record shows this is the usual experience:</em></p>
<p class="normal"><em>1. submit support ticket to the support dept<br />
2. receive first response in approx 10 minutes, from rep A (so far, so good)<br />
3. respond and receive next response in approx 1 hour, from rep B (not so  good)<br />
4. respond and receive next response in 1-2 hours, from rep C (not even  close to acceptable)<br />
5. there may be 2-3 additional cycles, extending the support process up to  5-6 hours</em></p>
<p class="normal"><em>The upshot is that relatively simple matters can easily take 2-3 hours (more  is not unusual) to resolve. Between the lack of continuity (because of  extended times and different support reps) and the slow response times, the  support, well, it sucks.</em></p>
<p class="normal"><em>(BTW, my one experience with support from your billing dept shows response  times always in the 10-15 minute range, with greater continuity with support  personnel)</em></p>
<p class="normal"><em>Can you not see the value of going to a different system for a customer for  whom the first response does not resolve the issue? I guarantee you are  about to lose at least one customer entirely, or at minimum, cease to see  any additional growth in this account.</em></p>
</blockquote>
<p>Would you like to guess what happened to this email? It was directed to HG&#8217;s ticket system. That&#8217;s right: an email complaint about HG&#8217;s ticket system opened a ticket. I&#8217;m currently awaiting a ticket response on my original ticket, AND this ticket. Can anyone here spell &quot;INFLEXIBLE?&quot; Can everyone here say &quot;It&#8217;s time to look for a webhost with a better support system?&quot;</p>
]]></content:encoded>
			<wfw:commentRss>http://www.evowebdev.com/blog/2010/01/id-like-to-say-nice-things-about-hostgators-support-but/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
		<item>
		<title>Business in 2010: Still Evolving After All These Years*</title>
		<link>http://www.evowebdev.com/blog/2010/01/business-in-2010/</link>
		<comments>http://www.evowebdev.com/blog/2010/01/business-in-2010/#comments</comments>
		<pubDate>Sat, 02 Jan 2010 21:30:55 +0000</pubDate>
		<dc:creator>Ray Gulick</dc:creator>
				<category><![CDATA[Blogging]]></category>
		<category><![CDATA[Business]]></category>
		<category><![CDATA[Communication]]></category>
		<category><![CDATA[Marketing]]></category>
		<category><![CDATA[Zeitgeist]]></category>
		<category><![CDATA[Blogging for Business]]></category>
		<category><![CDATA[Change]]></category>
		<category><![CDATA[Economy]]></category>
		<category><![CDATA[Entrepreneurs]]></category>
		<category><![CDATA[Future]]></category>

		<guid isPermaLink="false">http://www.evowebdev.com/?p=935</guid>
		<description><![CDATA[
New Year&#8217;s resolutions aren&#8217;t part of my tradition. They&#8217;re too easily forgotten or ignored, and they seem to focus primarily on end results rather than on underlying issues that create the need for improvement.
However, because the end-of-year holidays include more days off than I&#8217;m used to in a 2-week period, I usually do end up [...]]]></description>
			<content:encoded><![CDATA[<div class="alignright"><img src="/images/partystuff.jpg" alt="New Years Party" /></div>
<p>New Year&#8217;s resolutions aren&#8217;t part of my tradition. They&#8217;re too easily forgotten or ignored, and they seem to focus primarily on end results rather than on underlying issues that create the need for improvement.</p>
<p>However, because the end-of-year holidays include more days off than I&#8217;m used to in a 2-week period, I usually <em>do</em> end up thinking about how things have gone over the previous year and where I&#8217;m going in the next. While I don&#8217;t exclusively think about business at such times, I&#8217;ll restrict this post to my reflections about Evo&#8217;s business (believe me, it&#8217;s better for both of us <img src='http://www.evowebdev.com/blognew/wp-includes/images/smilies/icon_wink.gif' alt=';-)' class='wp-smiley' /> ).</p>
<p>My business has changed fairly dramatically in the past year, and blogging and blogs have played a big role. Evo has been in business since May, 2000&mdash;nearly 10 years. In terms of business activity, 2009 was not awful, but not great (until the last couple of months). My long-time business partner left the company in August and, while that has limited Evo&#8217;s ability to do some things, it&#8217;s also created profitable opportunities for collaboration with other companies.</p>
<p>I originally selected &quot;Evolution&quot; as part of the business name because I knew we&#8217;d have to evolve to be effective, as well as to stay in business. Back in 2000, I thought of websites primarily as online brochures. A lot of people <em>still</em> want static, set-it-and-forget-it websites that somehow bring them tons of business. It doesn&#8217;t work that way in 2010, and it really never did. I&#8217;m excited that websites can play an <em>active role</em> in marketing for a price that is well within the reach of most small businesses and organizations. My focus is now primarily on helping businesses and organizations incorporate blogging and blog-based websites into their marketing mix. In September, I developed and released a highly-customizable WordPress theme, <a target="_blank" href="http://www.evowpthemes.com/evo4/">Evo4 CMS</a>, specifically for creating blog-based websites, and it&#8217;s greatly increased both my flexibility and efficiency in the implementation phase.</p>
<p>The challenge is that blogging, engaging online with customers, and keeping your website updated requires some time and effort. Definitely not a set-it-and-forget-it scenario. In 2010, I have to do a better job of communicating the benefits that kind of time and effort can bring about. Depending on how well I&#8217;m able to do that, next year should be a great year for Evo. And, I will have put some real tools in the hands of people to help them manage their business, which is a good feeling.</p>
<p>So, I&#8217;m focusing on two things in 2010:</p>
<ol>
<li>collaboration with other developers, marketers, and consultants</li>
<li>helping businesses and organizations acquire the web-based tools and knowledge that allows them to manage their own marketing</li>
</ol>
<p>I&#8217;m looking forward to it. Still evolving (and maybe still a little bit crazy) after all these years.</p>
<p><em>*apologies to <a target="_blank" href="http://www.youtube.com/watch?v=46bkXgxb66E">Paul Simon</a></em></p>
]]></content:encoded>
			<wfw:commentRss>http://www.evowebdev.com/blog/2010/01/business-in-2010/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>If My Reader Could Contain Only 10 Feeds</title>
		<link>http://www.evowebdev.com/blog/2009/12/if-my-reader-contain-only-10-feeds/</link>
		<comments>http://www.evowebdev.com/blog/2009/12/if-my-reader-contain-only-10-feeds/#comments</comments>
		<pubDate>Fri, 25 Dec 2009 20:30:50 +0000</pubDate>
		<dc:creator>Ray Gulick</dc:creator>
				<category><![CDATA[Blogging]]></category>
		<category><![CDATA[Business]]></category>
		<category><![CDATA[Communication]]></category>
		<category><![CDATA[Design/Development]]></category>
		<category><![CDATA[Marketing]]></category>
		<category><![CDATA[Search/SEO]]></category>
		<category><![CDATA[Education]]></category>
		<category><![CDATA[RSS Feeds]]></category>

		<guid isPermaLink="false">http://www.evowebdev.com/?p=933</guid>
		<description><![CDATA[I have a lot of blogs and news sources in my reader. So many I can&#8217;t possibly read them all every day and stil get any work done. But there are relatively few I consider indispensable, and on the face of it, they don&#8217;t seem to have a lot in common. Subject-matter-wise, they&#8217;re all over [...]]]></description>
			<content:encoded><![CDATA[<p>I have a lot of blogs and news sources in my reader. So many I can&#8217;t possibly read them all every day and stil get any work done. But there are relatively few I consider indispensable, and on the face of it, they don&#8217;t seem to have a lot in common. Subject-matter-wise, they&#8217;re all over the board. There is a common thread, however; or maybe a couple of threads. Each of the following does at least one of two things on a consistent basis:</p>
<ol>
<li>challenges me to think about something in a new way</li>
<li>offers usable information that I can incorporate into what I&#8217;m doing</li>
</ol>
<p>Now that I think of it, those [apparently] rare ingredients comprise a recipe for blogging success. I know my own posts can&#8217;t boast of either more than occasionally, and perhaps it&#8217;s the consistency that&#8217;s the real trick with the recipe. Each of these are very successful blogs with lots of readers, so they&#8217;re obviously doing something right.</p>
<p>My most valued feeds, in alphabetical order:</p>
<p class="image"><a href="http://www.chrisbrogan.com" target="_blank&quot;"><img src="/images/chrisbrogan.jpg" alt="chrisbrogan.com" /></a></p>
<p><a target="_blank" href="http://www.chrisbrogan.com"><strong>Chris Brogan</strong></a> &#8211; The guy is practically synonymous with social media in general, and blogging in particular. He preaches the word on social media as a marketing strategy to the faithful, the backsliders, and the non-believers. And he knows what he&#8217;s talking about. A must-read for people involved even peripherally with online or social media marketing.</p>
<p class="image"><a target="_blank" href="http://www.css-tricks.com"><img src="/images/css-tricks.jpg" alt="css-tricks.com" /></a></p>
<p><a target="_blank" href="http://www.css-tricks.com"><strong>CSS-Tricks</strong></a> &#8211; One of the few web dev blogs that consistently presents useful and interesting information. Chris Coyier puts out nuts-and-bolts stuff, like explanations of absolute and relative positioning, centering a navigation bar, etc. But he also offers code snippets, downloads, and a forum. Worth a daily visit.</p>
<p class="image"><a target="_blank" href="http://www.ducttapemarketing.com"><img src="/images/ducttape.jpg" alt="ducttapemarketing.com" /></a></p>
<p><a target="_blank" href="http://www.ducttapemarketing.com"><strong>Duct Tape Marketing</strong></a> &#8211; John Jantsch offers practical and pragmatic advice for small businesses. He&#8217;s packaged his approach in a book, webinars, and a 14-lesson training program. I have bought and read the book, and recommend it highly for small business owners. His blog posts prod and educate. His website is full of links and resources. If you own a small business, you should be reading this blog.</p>
<p class="image"><a target="_blank" href="http://www.fuelyourcreativity.com/"><img alt="fuelyourcreativity.com" src="/images/fuelcreativity.jpg" /></a></p>
<p><a target="_blank" href="http://www.fuelyourcreativity.com/"><strong>Fuel Your Creativity</strong></a> &#8211; For me, FYC is more about inspiration than anything else&mdash;a site that feeds the designer part of my soul.</p>
<p class="image"><a target="_blank" href="http://www.hubspot.com"><img src="/images/hubspot.jpg" alt="hubspot.com" /></a></p>
<p><a href="http://www.hubspot.com" target="_blank"><strong>Hubspot</strong></a> &#8211; Hubspot is working to bring measurability to social media marketing. Their blog is a major training resource for business people trying to figure out how to benefit from &quot;attraction&quot; marketing, as opposed to &quot;interruption&quot; marketing. They sell a service that helps measure the effectiveness of online marketing efforts, but they&#8217;re not pushy about it. And they offer free webinars and a lot of great how-to-market-online information.</p>
<p class="image"><a target="_blank" href="http://sethgodin.typepad.com/seths_blog/"><img src="/images/sethsblog.jpg" alt="seth's blog" /></a></p>
<p><a href="http://sethgodin.typepad.com/seths_blog/" target="_blank"><strong>Seth&#8217;s Blog</strong></a> &#8211; Seth Godin does blogging all wrong. He doesn&#8217;t allow comments on his posts, his blog is hosted on Typepad rather than on a webhosting platform he controls, and he apparently spent no more than a couple of minutes customizing his blog&#8217;s appearance. But Seth is a marketing guru&#8217;s guru and an iconoclast&#8217;s iconoclast. He can succeed by doing things differently because he&#8217;s Seth Godin. He delights in flipping concepts on their heads. He turns kvetching into a useful exercise in logic. And often, he asks some interesting questions. His posts and observations are usually short, often simple, and almost always thought-provoking (consider that a warning).</p>
<p class="image"><a target="_blank" href="http://www.themegrade.com/"><img src="/images/themegrade.jpg" alt="themegrade.com" /></a></p>
<p><a href="http://www.themegrade.com/" target="_blank"><strong>ThemeGrade</strong></a> &#8211; ThemeGrade fills an important need in the world of WordPress blogs: it reviews and rates WordPress themes on code and SEO compliance based on standardized testing. Before ThemeGrade, it was up to you to figure out if  it was a good idea to install and spend time modifying that cool theme you loved the look of. TG ranks themes with gold (currently about 3% of submitted themes), silver (13%), bronze (31%), or no rating (currently 53% of submitted themes). We&#8217;re proud to say our <a href="http://www.evowpthemes.com/evo4/">Evo4 CMS WordPress theme</a> was rated silver.</p>
<p class="image"><a target="_blank" href="http://blogs.wnyc.org/radiolab/"><img src="/images/radiolab.gif" alt="Radio Lab" /></a></p>
<p><a href="http://blogs.wnyc.org/radiolab/" target="_blank"><strong>WNYC&#8217;s Radio Lab</strong></a> &#8211; Maybe the most interesting audio on the Internet. Jad Abumrad and Robert Krulwich have fun exploring interesting ideas and we get to go along for the ride. The audio programs get posted about every other week, so this isn&#8217;t a daily listen. The podcasts are 15-60 minutes each, and every one is more than worth the time.</p>
<p class="image"><a target="_blank" href="http://www.wpbeginner.com"><img src="/images/wpbeginner.gif" alt="wpbeginner.com" /></a></p>
<p><a target="_blank" href="http://www.wpbeginner.com"><strong>WP Beginner</strong></a> &#8211; There are several &quot;How-to&quot; WordPress sites, and a lot of them are good, but WP Beginner is my favorite, because it usually serves up something I need or have wondered about. And though it&#8217;s suitable for beginners as its name suggests, there is plenty of advanced information there also, simply and straightforwardly presented.</p>
<p class="image"><a target="_blank" href="http://zenhabits.net"><img src="/images/zenhabits.gif" alt="zenhabits.com" /></a></p>
<p><a href="http://zenhabits.net" target="_blank"><strong>Zen Habits</strong></a> &#8211; I&#8217;m a regular reader of Buddhist and zen materials. Being mindful and present, appreciating simplicity: these are things that are difficult to bring into our working lives. But that&#8217;s what Leo Babauta&#8217;s blog is about, and I appreciate its quiet, gentle, and practical advice about working, living, and balance.</p>
<p>So that&#8217;s my list of indispensable feeds. I hope there&#8217;s something on it that helps you. If not, well, we don&#8217;t have a complaint department, but feel free to tell me what should have been included on the list. And Merry Christmas.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.evowebdev.com/blog/2009/12/if-my-reader-contain-only-10-feeds/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Creating a Faux Double Background with Absolute and Relative Position</title>
		<link>http://www.evowebdev.com/blog/2009/12/creating-a-faux-background-image-with-absolute-and-relative-position/</link>
		<comments>http://www.evowebdev.com/blog/2009/12/creating-a-faux-background-image-with-absolute-and-relative-position/#comments</comments>
		<pubDate>Mon, 21 Dec 2009 14:00:39 +0000</pubDate>
		<dc:creator>Ray Gulick</dc:creator>
				<category><![CDATA[CSS]]></category>
		<category><![CDATA[Design/Development]]></category>

		<guid isPermaLink="false">http://www.evowebdev.com/?p=931</guid>
		<description><![CDATA[Recently, I had a need for two background images on a page I was asked to create to display a client&#8217;s online Christmas card. The background required a blend, easily made with a vertical gradient image. On top of that, another background image was to appear partially hidden behind a horizontally centered div that held [...]]]></description>
			<content:encoded><![CDATA[<p>Recently, I had a need for two background images on a page I was asked to create to display a client&#8217;s online Christmas card. The background required a blend, easily made with a vertical gradient image. On top of that, another background image was to appear partially hidden behind a horizontally centered div that held a Flash movie. Further, the second background image had to adjust position as the browser window was made narrower or wider.</p>
<p>First, I Googled &quot;two background images CSS.&quot; The solutions I found were complicated, or the background images didn&#8217;t move, or making them work with all browsers (I&#8217;m looking at you, IE6 and IE7) required some hacks. I&#8217;m not completely above using hacks, but I&#8217;d rather avoid them if possible.</p>
<p>Then I remembered that absolute and relative positioning create some interesting effects in layering elements. By specifying the second &quot;background&quot; image with absolute position, and applying a percentage on the right, I was able to make the image slide across the screen as the browser window was made narrower or wider. Applying relative position to subsequent elements allows them to appear &quot;on top&quot; of the image. <strong><a target="_blank" href="http://www.evowebdev.com/fauxbkgrd/" title="opens in new window">See the demo here</a></strong>.</p>
<p>For the demo, the original client info has been replaced with Evo info (to protect the innocent, and because this is my blog post, so there!). Also, the content div does not include a Flash movie, and the div is transparent so the partially hidden image can be seen in full.</p>
<p>Here is the basic page structure as rendered by the CSS, numbered in the order in which the elements appear on the page:</p>
<p style="padding-bottom: 12px;"><img src="/images/absoluterelative.gif" alt="page structure" /></p>
<p>Following is the CSS (classes important for the faux background effect are bolded):</p>
<p class="css">* { margin:0; padding:0; }</p>
<p class="css"><strong>body</strong> { font-family:helvetica,arial,sans-serif; background:#ccc url(images/bkgrd.jpg) 0 0 repeat-x; text-align:center; color:#777; }</p>
<p class="css"><strong>.background2</strong> { position:absolute; top:0; right:65%; }</p>
<p class="css"><strong>.logo</strong> { width:740px; text-align:left; margin:0 auto; position:relative; }</p>
<p class="css"><strong>.content</strong> { width:740px; height:370px; margin:0 auto; position:relative; background:#555; filter:alpha(opacity=60); -moz-opacity:.6; opacity:.6; }</p>
<p class="css">.content p { color:#fff; padding:80px 80px 0 80px; line-height:150%; }</p>
<p class="css"><strong>.links</strong> { width:740px;&nbsp; text-align:left; margin:0 auto; position:relative; }</p>
<p class="css">.links p.left { float:left; display:inline; font-size:11px; letter-spacing:.1em; padding:18px 0; }</p>
<p class="css">.links p.right { float:right; display:inline; font-size:11px; letter-spacing:.1em; padding:18px 0; }</p>
<p class="css">a { text-decoration:none; border:none; }</p>
<p class="css">a:link, a:visited { color:#777; }</p>
<p class="css">a:hover { color:#000; }</p>
<p class="css">.content a:link, .content a:visited { color:#ccc; }</p>
<p class="css">.content a:hover { color:#000; }</p>
<p style="padding-top: 6px;"><strong><a href="http://www.evowebdev.com/download/fauxbkgrd.zip">Download the files</a></strong>&raquo;</p>
]]></content:encoded>
			<wfw:commentRss>http://www.evowebdev.com/blog/2009/12/creating-a-faux-background-image-with-absolute-and-relative-position/feed/</wfw:commentRss>
		<slash:comments>5</slash:comments>
		</item>
		<item>
		<title>The Surest (and most common) Way for Companies to Shackle Their Social Media Efforts</title>
		<link>http://www.evowebdev.com/blog/2009/12/surest-way-for-companies-to-shackle-their-social-media-efforts/</link>
		<comments>http://www.evowebdev.com/blog/2009/12/surest-way-for-companies-to-shackle-their-social-media-efforts/#comments</comments>
		<pubDate>Fri, 18 Dec 2009 14:00:25 +0000</pubDate>
		<dc:creator>Ray Gulick</dc:creator>
				<category><![CDATA[Blogging]]></category>
		<category><![CDATA[Business]]></category>
		<category><![CDATA[Communication]]></category>
		<category><![CDATA[Marketing]]></category>
		<category><![CDATA[social media]]></category>

		<guid isPermaLink="false">http://www.evowebdev.com/?p=929</guid>
		<description><![CDATA[
More and more companies seem to be getting the message: social media (blogging, Facebook, Twitter, etc.) presents great opportunities for making connections with their customers and would-be customers. And yet, many of them get it wrong, mostly because they fail to grasp that social media is not just another variation on broadcast media.
There is a [...]]]></description>
			<content:encoded><![CDATA[<div class="alignright"><img alt="the warden" src="/images/Cool_Hand_Luke_Martin.jpg" /></div>
<p>More and more companies seem to be getting the message: social media (blogging, Facebook, Twitter, etc.) presents great opportunities for making connections with their customers and would-be customers. And yet, many of them get it wrong, mostly because they fail to grasp that social media is not just another variation on broadcast media.</p>
<p>There is a scene in <em>Cool Hand Luke</em>, in which the warden (Strother Martin) says to Paul Newman&#8217;s character, Luke: &quot;You ain&#8217;t gonna need no third set [of shackles], &#8217;cause you&#8217;re gonna get your mind right. And I mean RIGHT.&quot; That&#8217;s what needs to happen with corporate marketing managers and small business owners before they venture into social media: they need to get their minds right.</p>
<p>Here&#8217;s an all-too-common scenario:</p>
<ol>
<li>Marketing executive, experienced in managing marketing campaigns, ad campaigns, and PR campaigns, decides to &quot;get into social media.&quot;</li>
<li>She has her ad agency create a blog and set up a Facebook fanpage. She gets her PR group to develop some social media-flavored promotional and marketing messages.</li>
<li>She assigns some junior staffers to create social media content using the messages: blog posts, Facebook updates, tweets, etc. All of this content has the hollow, promotional, not-fully-human, fingernails-on-chalkboard sound of corporate messages delivered out of context.</li>
<li>After several unfruitful months trying to make her messages &quot;go viral,&quot; the marketing executive believes there is no ROI for social media. She tried it, and it doesn&#8217;t work. And she&#8217;s right. Her old-school, promotional, broadcast media approach to social media is guaranteed to fail. Every. Single. Time.</li>
</ol>
<p>What marketing people and business owners need to understand is that creating an effective social media presence is like <em>joining a conversation</em>. Conversations happen between people who listen and respond to one another; they are not a series of carefully polished and self-interested messages. These kinds of conversations, based on listening and responding, generally lead to relationships, <em>because we all value someone who listens to us</em>.</p>
<p>Think of it this way:</p>
<p>How would you react if you were in a conversation with another person about how to barbecue spare ribs, and someone walked up to butt into the conversation with &quot;I know you&#8217;re interested in spare ribs! This week only, I&#8217;m offering customers 20% off on all spare ribs, limit 5 lbs. per customer, offer void in combination with all other promotions.&quot; If you&#8217;re like most of us, you&#8217;d ignore that person in the hope that he would go away. If he persisted in pressing his own interests without making an honest attempt to form a relationship with you, eventually you&#8217;d probably excuse yourself. If you&#8217;re more direct, you might let him know that he&#8217;s interrupting a private conversation in which he is not welcome.</p>
<p>On the other hand, what if he walked up and hovered near you and the person you were talking with, listening intently for a few minutes before asking, &quot;Excuse me, but how do you make sure your ribs stay juicy? Mine are often dry.&quot;? Most people would welcome him into the conversation, and  within a relatively short period of time, would welcome any information of value that he brought to it (assuming he continued to listen and respond appropriately in your conversation).</p>
<p>You gotta get your <em>mind</em> right. And I mean <em>RIGHT</em>. <em>Then</em> start blogging and setting up Facebook fanpages.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.evowebdev.com/blog/2009/12/surest-way-for-companies-to-shackle-their-social-media-efforts/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>An Invitation to All New Mexico Business and Professional Bloggers</title>
		<link>http://www.evowebdev.com/blog/2009/12/inviting-all-new-mexico-bloggers/</link>
		<comments>http://www.evowebdev.com/blog/2009/12/inviting-all-new-mexico-bloggers/#comments</comments>
		<pubDate>Wed, 16 Dec 2009 16:47:36 +0000</pubDate>
		<dc:creator>Ray Gulick</dc:creator>
				<category><![CDATA[Blogging]]></category>
		<category><![CDATA[Business]]></category>
		<category><![CDATA[Blogging for Business]]></category>
		<category><![CDATA[LinkedIn]]></category>
		<category><![CDATA[Networking]]></category>

		<guid isPermaLink="false">http://www.evowebdev.com/?p=928</guid>
		<description><![CDATA[
I did something out of character a couple of days ago. I started a LinkedIn group: New Mexico Bloggers. For the most part, I&#8217;m not a group kind of guy (at least not in an active sort of way), but I want to encourage business and professional blogging in New Mexico, and this is one [...]]]></description>
			<content:encoded><![CDATA[<div class="alignright"><a href="http://www.linkedin.com/groupRegistration?gid=2579164"><img src="/images/NMbloggers.gif" alt="New Mexico Bloggers" /></a></div>
<p>I did something out of character a couple of days ago. I started a LinkedIn group: <a href="http://www.linkedin.com/groupRegistration?gid=2579164">New Mexico Bloggers</a>. For the most part, I&#8217;m not a group kind of guy (at least not in an active sort of way), but I want to encourage business and professional blogging in New Mexico, and this is one way of doing it. Ideally, such a group could provide both support and connections for New Mexico bloggers.</p>
<p>A lot of what happens with the group depends on me getting the ball rolling. So I have some work to do. LinkedIn is not quite the platform I had hoped it would be (a lot of spammers and blatant self-promoters), but it&#8217;s possible to have meaningful group interaction in a self-policing group.</p>
<p>The group will be platform-agnostic. We really don&#8217;t care whether your blog is on WordPress, Blogger, TypePad, Drupal, or any other platform. All bloggers have certain things in common, from the &quot;blank screen&quot; to strategic issues about how to grow your audience and how to utilize your blog to reach business and professional goals.</p>
<p>And then of course, there is the issue of blogging in New Mexico, a state that&#8217;s often behind the curve in technology and related trends. While I don&#8217;t see blogging as primarily a technological activity (the technology aspect is relatively trivial), most of the people I&#8217;ve talked to who don&#8217;t blog cite technology as one of the barriers for them (&quot;I&#8217;m just not a computer person!&quot;). To me that&#8217;s like refusing to drive to a restaurant because you&#8217;re &quot;not a car person,&quot; but that&#8217;s another blog post.</p>
<p>So this is an invitation to all business and professional bloggers: meet me (and hopefully a lot of other New Mexico bloggers) on LinkedIn for discussions and other forms of group therapy. I&#8217;d like to create some in-person meetups as well, if the interest level supports them.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.evowebdev.com/blog/2009/12/inviting-all-new-mexico-bloggers/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Five Fundamental Website Design Principles We Think About at Evo</title>
		<link>http://www.evowebdev.com/blog/2009/12/five-fundamental-website-design-principles-we-think-about-at-evo/</link>
		<comments>http://www.evowebdev.com/blog/2009/12/five-fundamental-website-design-principles-we-think-about-at-evo/#comments</comments>
		<pubDate>Tue, 08 Dec 2009 19:04:42 +0000</pubDate>
		<dc:creator>Ray Gulick</dc:creator>
				<category><![CDATA[Accessibility]]></category>
		<category><![CDATA[Communication]]></category>
		<category><![CDATA[Design/Development]]></category>

		<guid isPermaLink="false">http://www.evowebdev.com/?p=927</guid>
		<description><![CDATA[
Disclaimer: not an actual Evo 
web designer.

There are lots of approaches to website design. Other designers may legitimately find much to disagree with in this short list, or have items to add (please!). But these are the over-arching principles I try to adhere to in designing sites. At least they&#8217;re the ones I can think [...]]]></description>
			<content:encoded><![CDATA[<div class="alignright"><img src="/images/thinking.jpg" alt="thinking" about="" web="" design="" /></p>
<p class="caption">Disclaimer: not an actual Evo <br />
web designer.</p>
</div>
<p>There are lots of approaches to website design. Other designers may legitimately find much to disagree with in this short list, or have items to add (please!). But these are the over-arching principles I try to adhere to in designing sites. At least they&#8217;re the ones I can think of right now.</p>
<p><strong>The header, footer, and side navigation or subnav areas should be thought of as a &quot;frame&quot; for website content.</strong> They should be attractive, well-organized, functional, and support the brand, but visually, they should <em>not</em> compete strongly with page content for attention. If you have a boring website, the way to fix it is not to make the header and footer more exciting (which does not necessarily preclude the need to redesign the header and footer). If your website lacks excitement or interest, put your time, budget, and energy into making your <em>content</em> more exciting and useful.</p>
<p><strong>Be semantic with content structure.</strong> When the style sheet is turned off, the content on the page still needs to make sense. If it doesn&#8217;t, it impacts our next principle:</p>
<p><strong>Accessibility is not optional.</strong> Accessibility starts with recognizing that not every website visitor sees or experiences websites the same way you do, and caring about their experience. The next step is to understand how their experiences may differ, and making accommodations so they can access the content. It&#8217;s easy to overlook accessibility if it&#8217;s an after-thought: it has to be a priority.</p>
<p><strong>Prioritize content.</strong> What&#8217;s the most important content on each page? If it&#8217;s important, make it prominent, because expecting people to read carefully to extract the nuggets is unrealistic. This means highllighting content by various methods, including subheads, boxed content, color, scale, and bullet lists. And white space.</p>
<p><strong>Footers are useful for other things besides holding copyright info.</strong> It used to be that footers were barely used and little noticed. Blogs have changed that, and the aesthetic works well on &quot;traditional&quot; websites and blog-based websites. While they are still not (and shouldn&#8217;t be) a place to put content that needs to be emphasized, footers have become a good place to put tags, social media links, contact info, marketing messages, and other information in addition to the copyright statement and links to the privacy policy.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.evowebdev.com/blog/2009/12/five-fundamental-website-design-principles-we-think-about-at-evo/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
	</channel>
</rss>
