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

<channel>
	<title>The CodeGeek Blog &#187; Design</title>
	<atom:link href="http://www.codegeek.net/blog/category/design/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.codegeek.net/blog</link>
	<description>Just another WordPress weblog</description>
	<lastBuildDate>Tue, 10 Jan 2012 22:14:05 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3</generator>
		<item>
		<title>Responsive Web Design Techniques</title>
		<link>http://www.codegeek.net/blog/2011/responsive-web-design-techniques/</link>
		<comments>http://www.codegeek.net/blog/2011/responsive-web-design-techniques/#comments</comments>
		<pubDate>Mon, 19 Dec 2011 17:59:13 +0000</pubDate>
		<dc:creator>Ron</dc:creator>
				<category><![CDATA[Resources]]></category>
		<category><![CDATA[Responsive Web Design]]></category>

		<guid isPermaLink="false">http://www.codegeek.net/blog/?p=227</guid>
		<description><![CDATA[In the always awesome 24ways.org (the advent calendar for web geeks) there have been three excellent articles on specific Responsive Web Design techniques so far this month. The first is by Jeremy Keith and discusses conditional loading of content for websites designed using Responsive Web Design techniques. The technique Jeremy describes allows you to have [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.codegeek.net/blog/wp-content/uploads/2011/12/24ways-three-authors-dec-2011.jpg"><img class="left" src="http://www.codegeek.net/blog/wp-content/uploads/2011/12/24ways-three-authors-dec-2011.jpg" alt="" width="255" height="85" /></a>In the always awesome 24ways.org (the advent calendar for web geeks) there have been three excellent articles on specific Responsive Web Design techniques so far this month.</p>
<p>The first is by Jeremy Keith and discusses conditional loading of content for websites designed using Responsive Web Design techniques. The technique Jeremy describes allows you to have one web page for mobile devices and desktop browsers alike, show just the necessary content on the small form factor mobile web browsers, but show additional content for the larger sized browsers too loading that additional website content only when needed. This saves on bandwidth for people viewing your website using a mobile web browser allowing your site to load quickly and not cost them more time or data than necessary.<br />
<a href="http://bit.ly/siNiYY"> http://bit.ly/siNiYY</a></p>
<p>Two solutions to the RWD Image Problem. One challenge when designing using Responsive Web Design techniques is the issue of serving appropriately sized images for different devices. The basic RWD technique is to use the largest images required for any device in the HTML, and just change the scale at which the image is displayed to make it smaller for smaller devices. The problem with this basic approach is that it&#8217;s not very mobile-friendly. All devices would be downloading images with large file sizes. This is particularly an issue with mobile devices that are likely to have slower internet connections and caps on bandwidth. Your site will take longer to load than necessary and for users who are paying for every bit of data as they go, downloading all those large images can add up to a substantial penalty.</p>
<p>Techniques continue to be refined for downloading small images for mobile devices and the largest images only when appropriate. Here are two of the latest techniques available:</p>
<p>The first by Matt Wilcox is a server-side solution involving PHP, cookies, and Javascript on the client:<br />
<a href="http://bit.ly/uEioLu"> http://bit.ly/uEioLu</a></p>
<p>The second by Jake Archibald is a client-side only solution with fascinating benefits. But in the words of the author, it&#8217;s a dirty, dirty solution:<br />
<a href="http://bit.ly/vJlbcy"> http://bit.ly/vJlbcy</a></p>
<p>Check them out and comment. Which method do you like better?</p>
]]></content:encoded>
			<wfw:commentRss>http://www.codegeek.net/blog/2011/responsive-web-design-techniques/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Responsive Images &#8211; solving the image overhead problem</title>
		<link>http://www.codegeek.net/blog/2011/responsive-images-solving-the-image-overhead-problem/</link>
		<comments>http://www.codegeek.net/blog/2011/responsive-images-solving-the-image-overhead-problem/#comments</comments>
		<pubDate>Sat, 01 Jan 2011 18:06:06 +0000</pubDate>
		<dc:creator>Ron</dc:creator>
				<category><![CDATA[Responsive Web Design]]></category>
		<category><![CDATA[Web development]]></category>

		<guid isPermaLink="false">http://www.codegeek.net/blog/?p=158</guid>
		<description><![CDATA[When implementing responsive web design techniques, one issue raised by detractors is that the largest image needed for any layout gets downloaded automatically resulting in potentially large bandwidth overhead &#8211; an undesirable side effect especially for mobile devices that may be using slower or expensive data connections. Here&#8217;s one solution: https://github.com/filamentgroup/Responsive-Images#readme The technique explained and [...]]]></description>
			<content:encoded><![CDATA[<p>When implementing <a href="http://www.alistapart.com/articles/responsive-web-design/">responsive web design</a> techniques, one issue raised by detractors is that the largest image needed for any layout gets downloaded automatically resulting in potentially large bandwidth overhead &#8211; an undesirable side effect especially for mobile devices that may be using slower or expensive data connections.</p>
<p>Here&#8217;s one solution: <a href="https://github.com/filamentgroup/Responsive-Images#readme">https://github.com/filamentgroup/Responsive-Images#readme</a></p>
<p>The technique explained and demonstrated enables &#8220;developers to start with mobile-optimized images in their HTML and specify a larger size to be used for users with larger screen resolutions &#8212; without requesting both image sizes, and without UA sniffing.&#8221; Pretty nifty.</p>
<p>The technique should work for Safari (desktop, iPhone, iPad), Chrome, Internet Explorer (8+), and Opera but results in <em>larger bandwidth overhead</em> in Firefox as well as IE 7 and earlier.</p>
<p>I&#8217;d like to hear if you give this a try, send me a link to your site or demo.</p>
<p>I&#8217;m cautiously optimistic about this approach. While is has limitations, it&#8217;s a good start on solving an important problem.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.codegeek.net/blog/2011/responsive-images-solving-the-image-overhead-problem/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>The Year in Pictures – USA Today 2010</title>
		<link>http://www.codegeek.net/blog/2010/the-year-in-pictures-usa-today-2010/</link>
		<comments>http://www.codegeek.net/blog/2010/the-year-in-pictures-usa-today-2010/#comments</comments>
		<pubDate>Fri, 31 Dec 2010 16:47:44 +0000</pubDate>
		<dc:creator>Ron</dc:creator>
				<category><![CDATA[Responsive Web Design]]></category>
		<category><![CDATA[Web development]]></category>

		<guid isPermaLink="false">http://www.codegeek.net/blog/?p=152</guid>
		<description><![CDATA[http://projects.usatoday.com/gallery/news/2010-news/ &#8220;A really nice example of responsive web design from an unexpected source.&#8221; &#8211; via http://adactio.com/links/tags/responsive A photo gallery website using responsive web design techniques.]]></description>
			<content:encoded><![CDATA[<p><a href="http://projects.usatoday.com/gallery/news/2010-news/">http://projects.usatoday.com/gallery/news/2010-news/</a></p>
<p>&#8220;A really nice example of responsive web design from an unexpected source.&#8221; &#8211; via <a href="http://adactio.com/links/tags/responsive">http://adactio.com/links/tags/responsive</a></p>
<p>A photo gallery website using responsive web design techniques.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.codegeek.net/blog/2010/the-year-in-pictures-usa-today-2010/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Just say &#8220;no&#8221; to speculative design</title>
		<link>http://www.codegeek.net/blog/2010/just-say-no-to-speculative-design/</link>
		<comments>http://www.codegeek.net/blog/2010/just-say-no-to-speculative-design/#comments</comments>
		<pubDate>Mon, 15 Nov 2010 16:30:42 +0000</pubDate>
		<dc:creator>Ron</dc:creator>
				<category><![CDATA[Articles]]></category>
		<category><![CDATA[Business of Webdesign]]></category>
		<category><![CDATA[Design]]></category>
		<category><![CDATA[Web development]]></category>

		<guid isPermaLink="false">http://www.codegeek.net/blog/?p=146</guid>
		<description><![CDATA[Does your web design company do speculative design work? We don&#8217;t. What I&#8217;m talking about is creating potential website layouts to show a prospect how their new website might look during the sales process. It&#8217;s not uncommon in our experience for a prospect to ask for this type of work, especially when they are talking [...]]]></description>
			<content:encoded><![CDATA[<h2>Does your web design company do speculative design work? <br />
We don&#8217;t.</h2>
<p>What I&#8217;m talking about is creating potential website layouts to show a prospect how their new website might look during the sales process. It&#8217;s not uncommon in our experience for a prospect to ask for this type of work, especially when they are talking to several web design agencies and making a decision about who choose as their new web designer.</p>
<p>We recently won some web design work where the client asked exactly for this. It was a competitive bid process, and we had been informed that we made the cut to the final three agencies. At this stage they asked if we could create a wireframe mockup or examples of what we envision the site would look like&#8230;</p>
<h2>The Explanation</h2>
<p>Here&#8217;s how we explained to them why we don&#8217;t do speculative design work: </p>
<blockquote><p>We would be pleased to show you and your team sites we&#8217;ve designed in the past, as well as review other existing sites with elements that could be useful. I&#8217;m sorry to say that one thing we don&#8217;t do as a matter of policy is create speculative wireframes or rough layouts. There are quite a few reasons why we find this doesn&#8217;t work. </p>
<p>- Creating wireframes and design layouts for a business is precisely what our designers do, and they have an established process for creating fantastic work. To get those fantastic results, we need to go through the whole process. If we attempt to do something &#8220;quick&#8221;, it&#8217;s not going to be representative of what they would actually come up with after completing our process.</p>
<p>- If we were to spend the proper time to create initial layouts, well, that&#8217;s a large amount of the time you are hiring us to do. Doing that speculatively would be a large expense, and given that no agency wins every job they bid on, adding that labor to every estimate or bid would drive up the cost of every website we do. So by not doing speculative design or wireframes we are able to keep your costs lower.</p>
<p>We believe that our extensive portfolio of past work will provide evidence of our capabilities and give you the confidence that we can create a perfectly-fitting web site for your unique company. We are more than happy to demonstrate that during our upcoming meeting.</p></blockquote>
<h2>Strengths and Differentiators</h2>
<p>We further shared that one of our key strengths is that our design team is capable of creating a wide variety of layouts, each appropriate to the company we are serving and specifically designed to meet the needs of their website visitors. Many designers are good at one type of layout, or creating variations of one general look and feel of a website. Our designers have a very wide range of design styles which is a key differentiator for us compared with our competitors. We shared examples across the range of our designs with the prospect, with the goal of giving them the confidence that we could create a design that would be perfect for their company and the constituents of their website.</p>
<p>This can be a scary approach to take, knowing that one or both of the other agencies competing for the job may very well create some speculative designs and &#8220;wow&#8221; the client. We stuck to our guns, and in the end, won the work.</p>
<h2>More Resources</h2>
<p>While I was crafting our response, I recalled listening to an article about this on the Boagworld podcast some time ago. Here&#8217;s an excellent blog post from their website that shares some <a href="http://boagworld.com/design/why-speculative-design-is-wrong">additional reasons why speculative design work isn&#8217;t a good idea</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.codegeek.net/blog/2010/just-say-no-to-speculative-design/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Responsive Design – the future of web design</title>
		<link>http://www.codegeek.net/blog/2010/responsive-design-the-future-of-web-design/</link>
		<comments>http://www.codegeek.net/blog/2010/responsive-design-the-future-of-web-design/#comments</comments>
		<pubDate>Fri, 06 Aug 2010 17:00:00 +0000</pubDate>
		<dc:creator>Ron</dc:creator>
				<category><![CDATA[CSS]]></category>
		<category><![CDATA[Presentations]]></category>
		<category><![CDATA[Responsive Web Design]]></category>
		<category><![CDATA[Web development]]></category>
		<category><![CDATA[Web standards]]></category>

		<guid isPermaLink="false">http://www.codegeek.net/blog/?p=94</guid>
		<description><![CDATA[We&#8217;ve entered a new period of transition on the web, just after things seemed to be getting comfortable. I mean things were nice. We reached a least-common-denominator screen size of 1024px. (Good riddance 800 x 600!) All the modern browsers are using page zoom by default rather than text zoom. Designers could breathe easy and [...]]]></description>
			<content:encoded><![CDATA[<p>We&#8217;ve entered a new <strong>period of transition</strong> on the web, just after things seemed to be getting comfortable. I mean things were nice. We reached a least-common-denominator screen size of 1024px. (Good riddance 800 x 600!) All the modern browsers are using page zoom by default rather than text zoom. Designers could breathe easy and crank out 960px wide layouts and pretty much everyone could see the site as intended without horizontal scrolling or other nastiness.</p>
<p>Even the browsers were getting easier. Webkit and Mozilla based browsers were the most standards-compliant we&#8217;ve ever seen. IE8? Not bad for a Microsoft browser. IE7 was a bit of a mess, but nothing like IE6 which finally fell below 10% usage. Mobile? To some extent there were so many different phone operating systems and phone browsers that many of us had given up bothering. Call it a head-in-the-sand approach. But it sure made things nice.</p>
<p>Then Apple sold 3 million iPads in 80 days.</p>
<p>#*@&amp;!</p>
<p>Oh yeah, and the iPhone4 is out with a super high-res screen. And mobile seems to be consolidating. The big three (in no particular order) are Android running Chrome (webkit), iOS running Safari (webkit), and Blackberry running who-knows-what but people who care can download Opera which is right there with webkit when it comes to web standards. So guess what. Mobile matters. It matters a lot. And the mobile space is clearly not as fragmented as before.</p>
<p><strong>All of this adds up to a big problem</strong>. People are viewing our web sites on all kinds of screen sizes. 1024 is no longer a magic number. Not when mobile growth is 8x that of desktop growth. The pace is so hot that it looks like mobile web access will eclipse desktop web access in just 3 to 5 years. So yeah mobile matters. And size matters. The number of screen sizes we should care about just jumped through the roof given the variations of phones, iPads, tablets-yet-to-come, netbooks, laptops, desktops and external monitors that are already out in the field.</p>
<p>So what&#8217;s a designer to do? How can we avoid being thrown back to the horrid days of browser-sniffing and coding completely different HTML layouts for different browsers and devices?</p>
<p><strong>The answer is blowing in the wind, and it&#8217;s called Responsive Design.</strong></p>
<p>The core principles of Responsive Design for the web are using a <strong>flexible grid</strong>, sizing design elements as <strong>proportions (%)</strong> rather than pixels, and using <strong>CSS3 media queries</strong> to make your design responsive to the size of the viewport or device.</p>
<p>Wait wait wait you say: this sounds a lot like fluid layouts which have been around forever. Sort of, but in the words of Jeffrey Zeldman &#8220;It’s what some of us were going for with &#8216;liquid&#8217; web design back in the 1990s, only it doesn’t suck.&#8221;</p>
<p>The lynchpin in this technique that doesn&#8217;t suck is the use of media queries, a CSS3 feature, that allows you to change how elements are displayed based on the size of the viewport. This even works dynamically while you are dragging the corner of your web browser around. This lets you create a design that morphs into a one column layout for small viewport or device sizes, and a three column layout for large viewports, but not TOO wide if you are on a 1920px wide browser. Yep, you can even keep line lengths readable.</p>
<p>But CSS3 isn&#8217;t supported by IE8. Or IE7. Or IE6. No problem. Turns out there a Javascript workaround that enables IE5+ (yes, that&#8217;s right, IE5+) to interpret media queries. http://code.google.com/p/css3-mediaqueries-js/ Now we&#8217;re talking!</p>
<p>Media queries are supported in the latest versions of all the other browsers that matter including: Opera 9.5+, Firefox 3.5+, Safari 3+, Chrome and Mobile Webkit.</p>
<p>And to sweeten the deal, the Javascript workaround mentioned above also allows Firefox 1+ and Safari 2 to use media queries</p>
<p><strong>Ready to learn more?</strong> Start with the definitive article by Ethan Marcotte:<br /><a href="http://www.alistapart.com/articles/responsive-web-design/">http://www.alistapart.com/articles/responsive-web-design/</a></p>
<p><strong>Follow up here</strong>, which includes links to some related articles, shares the history of the very recent evolution of the technique, and includes links to several sites already using the technique:<br /><a href="http://www.zeldman.com/2010/06/23/responsive-design-is-the-new-black/">http://www.zeldman.com/2010/06/23/responsive-design-is-the-new-black/</a></p>
<p><strong>I&#8217;ll be demonstrating the techniques at the upcoming Fort Collins Internet Pros Meetup on Thursday, August 12.</strong> Learn more and RSVP here:<br/><a href="http://www.meetup.com/goFCIP/calendar/12297128/">http://www.meetup.com/goFCIP/calendar/12297128/</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.codegeek.net/blog/2010/responsive-design-the-future-of-web-design/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>24Ways.org: Working with RBGA Color</title>
		<link>http://www.codegeek.net/blog/2009/24ways-working-with-rbga-color/</link>
		<comments>http://www.codegeek.net/blog/2009/24ways-working-with-rbga-color/#comments</comments>
		<pubDate>Fri, 04 Dec 2009 17:55:13 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[CSS]]></category>
		<category><![CDATA[Design]]></category>
		<category><![CDATA[Web development]]></category>

		<guid isPermaLink="false">http://aaawebdesign.net/blog/?p=70</guid>
		<description><![CDATA[The awesome &#8220;advent calendar for web geeks&#8221; can be found at 24ways.org. December is my favorite time of year for many reasons, one of which is getting to read this great series of 24 web-related articles from around the world, one each day starting Dec 1 every year. The first article this year is &#8220;Working [...]]]></description>
			<content:encoded><![CDATA[<p>The awesome &#8220;advent calendar for web geeks&#8221; can be found at <a href="http://24ways.org">24ways.org</a>. December is my favorite time of year for many reasons, one of which is getting to read this great series of 24 web-related articles from around the world, one each day starting Dec 1 every year.</p>
<p>The first article this year is &#8220;<a href="http://24ways.org/2009/working-with-rgba-colour">Working with RGBA Color</a>&#8221; by Drew McLellan.</p>
<p>Key points:</p>
<ul>
<li>This is one technique for setting the opacity/transparency of HTML elements</li>
<li>The CSS <em>opacity</em> property is available starting with CSS3</li>
<li><em>opacity</em> adjusts opacity for all parts of the selector (HTML element), so if opacity is set to 0.5 for a heading element, the opacity of both the text color and background color are 50%.</li>
<li>Using RGBA color specification allows finer control. The &#8220;A&#8221; part = &#8220;alpha channel&#8221;, which controls opacity, and can be applied to each color declaration as opposed to the entire selector. RGBA allows you to specify different opacity values for the text color vs. the background color.</li>
</ul>
<p>Quick CSS terminology review, CSS syntax:<br />
Selector {declaration1; declaration2;}<br />
declaration = property:value;</p>
<p>example:</p>
<p>h1 { color: #000000;}<br />
selector = &#8220;h1&#8243;<br />
declaration = &#8220;color:#000000;&#8221;<br />
property=&#8221;color:&#8221;<br />
value=&#8221;#00000;&#8221;</p>
<p>Back to Working with RGBA color:</p>
<ul>
<li>To specify RGBA, use rgba(0-255, 0-255, 0-255, 0-1) as the value in your CSS declaration instead of hex codes, see the article for examples</li>
<li>RGBA is supported by the latest versions of Firefox, Safari, Chrome and Opera, but is not supported by IE (of course)</li>
<li>See article for ways to specify fallback colors or PNGs when RGBA is not supported (important)</li>
<li><span>Opacity/RGBA can be changed on :hover or manipulated with JavaScript for elegant rollover effects<br />
</span></li>
<li><span>RGBA can be applied to text color, background color, and border color</span></li>
</ul>
]]></content:encoded>
			<wfw:commentRss>http://www.codegeek.net/blog/2009/24ways-working-with-rbga-color/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Web browser testing: It doesn&#8217;t have to look the same</title>
		<link>http://www.codegeek.net/blog/2009/web-browser-testing-it-doesnt-have-to-look-the-same/</link>
		<comments>http://www.codegeek.net/blog/2009/web-browser-testing-it-doesnt-have-to-look-the-same/#comments</comments>
		<pubDate>Wed, 24 Jun 2009 02:37:28 +0000</pubDate>
		<dc:creator>Ron</dc:creator>
				<category><![CDATA[Browser testing]]></category>
		<category><![CDATA[Design]]></category>
		<category><![CDATA[Web development]]></category>

		<guid isPermaLink="false">http://www.codegeek.net/blog/?p=66</guid>
		<description><![CDATA[A trend is clear in the web design and development world: web sites do not need to look the same in all web browsers. An Event Apart Boston 2009 &#8220;the design conference for people who make web sites&#8221; just wrapped up today, and that was a strong message from no less than four of the [...]]]></description>
			<content:encoded><![CDATA[<p>A trend is clear in the web design and development world: web sites do not need to look the same in all web browsers.</p>
<p>An Event Apart Boston 2009 &#8220;the design conference for people who make web sites&#8221; just wrapped up today, and that was a strong message from no less than four of the fifteen presenters. In the past there has been a tacit assumption in the web design community that web sites should look the same, pixel for pixel, in the web browsers used by the majority of web site visitors. That would currently include Internet Explorer 8 (IE8), IE7, IE6, Firefox, Google Chrome, and Safari. One of those six browsers are used by approximately 97% of web site users according to the <a href="http://www.w3schools.com/browsers/browsers_stats.asp">W3 Schools browser statistics page</a> as of May 2009.</p>
<p>The new trend is a more realistic approach to web site design and development issues. &#8220;Different does not mean broken&#8221; said Andy Clarke, one of numerous presenters at the conference making the point that it is okay for web sites to not look identical in different web browsers.</p>
<p>What matters is that the content and functionality of a web site be made available to the largest number of web site visitors possible. If a button has rounded corners in Firefox but not in IE6, it&#8217;s not a big deal.</p>
<p>This approach allows web developers to start using some of the new features available in CSS3 right away, including creating rounded corners and drop shadows on both text and containers. Implementing these style elements in CSS saves time in the development process when initially creating a web site, and over time when maintaining it. The problem is that CSS3 features are not supported by IE7 and earlier. Many CSS3 features are supported by IE8, Firefox 3.5 and above, and Safari 3 and above. So going forward, support for these features will continue to improve.</p>
<p>Web site owners will be interested to know that implementing these features, like rounded corners, using CSS3 saves them money both in the short term (during development) and in the long term (considering web site maintenance). Design elements like rounded corners can be made to work in older browsers that don&#8217;t support CSS3, but that requires the designer to create separate special background images for each of the four corners of the box, and requires the coder to use extra HTML markup to apply those images. These images mask the &#8220;natural&#8221; square corners of the box giving them a rounded appearance.</p>
<p>While this looks great in more browsers, there are many downsides. In addition to taking more labor to create the effect in the first place, if changes need to be made to the corners in the future it takes more time than changing a few digits in a style sheet. There is also a slight performance hit to the web server, as more graphics have to be downloaded to the user&#8217;s computer in addition to a slightly more complex and therefore larger HTML file.</p>
<p>I am very much in favor of the new direction. What it does is focus our attention on what matters more as web site owners and web site designers: the content of the web site and the functionality of the web site. That is what we should be striving to deliver effectively to our web site visitors. Using the new techniques, if web site visitors are also using modern software, they will be rewarded with an enhanced appearance to the page.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.codegeek.net/blog/2009/web-browser-testing-it-doesnt-have-to-look-the-same/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Good Design in Ten Commandments</title>
		<link>http://www.codegeek.net/blog/2009/good-design-in-ten-commandments/</link>
		<comments>http://www.codegeek.net/blog/2009/good-design-in-ten-commandments/#comments</comments>
		<pubDate>Sun, 01 Mar 2009 19:31:08 +0000</pubDate>
		<dc:creator>Ron</dc:creator>
				<category><![CDATA[Design]]></category>

		<guid isPermaLink="false">http://www.codegeek.net/blog/?p=53</guid>
		<description><![CDATA[This list of the ten most important criteria for good design by Dieter Rams is applicable to web site design, web development, web applications, and software development even though he&#8217;s writing in the context of physical products. Wonderful. http://www.vitsoe.com/en/gb/about/gooddesign]]></description>
			<content:encoded><![CDATA[<p>This list of the <a href="http://www.vitsoe.com/en/gb/about/gooddesign">ten most important criteria for good design</a> by Dieter Rams is applicable to web site design, web development, web applications, and software development even though he&#8217;s writing in the context of physical products. Wonderful. <a href="http://www.vitsoe.com/en/gb/about/gooddesign">http://www.vitsoe.com/en/gb/about/gooddesign</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.codegeek.net/blog/2009/good-design-in-ten-commandments/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>CodeGeek’s Design Capabilities Are Broader Than Our Portfolio</title>
		<link>http://www.codegeek.net/blog/2008/codegeek%e2%80%99s-design-capabilities-are-broader-than-our-portfolio/</link>
		<comments>http://www.codegeek.net/blog/2008/codegeek%e2%80%99s-design-capabilities-are-broader-than-our-portfolio/#comments</comments>
		<pubDate>Wed, 25 Jun 2008 04:14:09 +0000</pubDate>
		<dc:creator>Regina Zasadzinski</dc:creator>
				<category><![CDATA[Design]]></category>

		<guid isPermaLink="false">http://www.codegeek.net/blog/?p=33</guid>
		<description><![CDATA[If you are looking to have a website developed or re-designed, you are most likely confronted with a wide variety of web development firms from which to choose.  Additionally, you may feel that there are equally as many design possibilities to creating your website. Perhaps you have done your research, and know very specifically what [...]]]></description>
			<content:encoded><![CDATA[<p>If you are looking to have a website developed or re-designed, you are most likely confronted with a wide variety of web development firms from which to choose.  Additionally, you may feel that there are equally as many design possibilities to creating your website.</p>
<p>Perhaps you have done your research, and know very specifically what you are looking to have created.  Perhaps, you are looking to become educated through the process of web development.  Or perhaps, you have no idea how to even get your project started.  Whatever perspective you are coming from, CodeGeek has had experience with a vast array of clientèle.</p>
<p>Our clients are as unique as snowflakes and daisies…no two are alike.  Each CodeGeek client comes to us with their own individual set of website needs that has to ultimately be crafted into a website.  Because each business is diverse, and the presentation of that business must be distinctive, the final look of each CodeGeek project is, therefore, unique.</p>
<p>When looking through our portfolio, you will see a wide array of designs, content, layout, and presentation.  Perhaps you have viewed our portfolio and think that we don’t offer what it is you’re looking to have created.<br />
Each project accurately reflects what our clients have asked for and needed in a website.  And we deliver exactly what our clients want.</p>
<p>Here are just some of the various sites that CodeGeek has been a proud participant in creating…<br />
<a href="http://www.designingbeautyacademy.com/">www.designingbeautyacademy.com</a><br />
<a href="http://www.dlssystems.com/">www.dlssystems.com</a><br />
<a href="http://www.scandinaviahouse.org/">www.scandinaviahouse.org</a><br />
<a href="http://lpfadvisor.com/">www.lpfadvisor.com</a><br />
<a href="http://www.mwlogfurniturecolorado.com/index.aspx">www.mwlogfurniturecolorado.com</a><br />
<a href="http://www.secondwindconsulting.net/">www.glenivy.org<br />
www.secondwindconsulting.net</a></p>
<p>Whatever type of site you are aspiring to have developed, CodeGeek can help. Contact us today.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.codegeek.net/blog/2008/codegeek%e2%80%99s-design-capabilities-are-broader-than-our-portfolio/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>DYK (Did You Know?) &#8211; part 2</title>
		<link>http://www.codegeek.net/blog/2008/dyk-did-you-know-part-2/</link>
		<comments>http://www.codegeek.net/blog/2008/dyk-did-you-know-part-2/#comments</comments>
		<pubDate>Sun, 03 Feb 2008 23:59:25 +0000</pubDate>
		<dc:creator>Regina Zasadzinski</dc:creator>
				<category><![CDATA[Design]]></category>

		<guid isPermaLink="false">http://www.codegeek.net/blog/?p=22</guid>
		<description><![CDATA[Web site development can be categorized into two distinctive types: E-commerce and Informational. We previously explored e-commerce website development. This month we will look at important considerations for informational websites. A great informational website is the difference between a web surfer becoming your customer or going to your competitor’s site. “Conversions” are an important metric [...]]]></description>
			<content:encoded><![CDATA[<p>Web site development can be categorized into two distinctive types:  E-commerce and Informational.</p>
<p>We previously explored e-commerce website development.  This month we will look at important considerations for informational websites.</p>
<p>A great informational website is the difference between a web surfer becoming your customer or going to your competitor’s site.</p>
<p>“Conversions” are an important metric for informational websites, just as they are for ecommerce websites. For an ecommerce site a conversion is more obvious – a conversion occurs every time a visitor makes a purchase.  In the case of an informational website, a conversion means the visitor has been persuaded to do what you want them to do.  It could be having them read your Blog, be educated by your opinion (through an advocacy or political site), join your on-line community, or subscribe to your newsletter.  What does a “conversion” mean for your web site? It should reflect your website’s business objectives.</p>
<p>Informational sites can be broken down into a few main categories:</p>
<ol>
<li>Content sites: These are sites whose business is the creation and distribution of content.  Generally speaking, the main objective of a content site is to increase the public’s awareness of or interest in your business and/or website, sell subscription services, or increase the number of readers.</li>
<li>Self-service sites:  These are sites that allow people to easily and independently serve themselves.  Examples include blogs, research sites (such as Wikipedia), on line media sites, or advocacy sites.</li>
<li>Directories:  A company can register itself with a directory that is appropriate to its line of business in order to gain qualified leads.</li>
<li>Other informational sites can include entertainment, forums, community building sites, photo sharing sites, and more.</li>
</ol>
<p>Informational sites exist to inform users.  When developing a great informational site, it is important to focus on the conversion factor, specifically keep in mind what the visitor (prospective customer) is wanting, and to fulfill that want/need.  Becoming clear on what type of informational site you’re building will help you develop the proper elements to create conversions.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.codegeek.net/blog/2008/dyk-did-you-know-part-2/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

