<?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/"
	xmlns:creativeCommons="http://backend.userland.com/creativeCommonsRssModule"
>

<channel>
	<title>Jarrett House North &#187; WebDesign</title>
	<atom:link href="http://www.jarretthousenorth.com/category/webdesign/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.jarretthousenorth.com</link>
	<description>Now with 80% less politics!</description>
	<lastBuildDate>Thu, 18 Mar 2010 01:59:20 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.2</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<creativeCommons:license>http://creativecommons.org/licenses/by-nc-sa/3.0/us/</creativeCommons:license>
		<item>
		<title>Obscure HTML element of the day: dfn</title>
		<link>http://www.jarretthousenorth.com/2008/12/03/obscure-html-element-of-the-day-dfn/</link>
		<comments>http://www.jarretthousenorth.com/2008/12/03/obscure-html-element-of-the-day-dfn/#comments</comments>
		<pubDate>Wed, 03 Dec 2008 14:54:29 +0000</pubDate>
		<dc:creator>Tim Jarrett</dc:creator>
				<category><![CDATA[WebDesign]]></category>
		<category><![CDATA[css]]></category>
		<category><![CDATA[html]]></category>

		<guid isPermaLink="false">http://www.jarretthousenorth.com/?p=7231</guid>
		<description><![CDATA[I&#8217;ve had an opportunity to do a little static HTML + CSS work recently, and have had a few educational and reeducational moments about the joys of doing basic web development&#8211;all the stuff that a good CMS like WordPress hides from you.
Today&#8217;s educational moment was a question of footnote treatments. My application had footnotes at [...]]]></description>
			<content:encoded><![CDATA[<p id="top" />I&#8217;ve had an opportunity to do a little static HTML + CSS work recently, and have had a few educational and reeducational moments about the joys of doing basic web development&#8211;all the stuff that a good CMS like WordPress hides from you.</p>
<p>Today&#8217;s educational moment was a question of footnote treatments. My application had footnotes at the very bottom of its page, with nothing beneath them, and did inpage links to the footnotes. But it was linking to the footnotes from a part of the text that was close to the bottom of the page, so the footnote was already visible. As a result, when a user clicked a link to get to the footnotes, nothing happened&#8211;the footnote was already there, and there was no more page to scroll up.</p>
<p>There are ways around this. <a href="http://daringfireball.net/2005/07/footnotes#fn1-2005-07-20">Daring Fireball has a lot of empty space on its pages below its footnotes</a>, meaning that the page can scroll to place the footnote at the top. But the bug got me thinking again about why I was doing the footnotes and how I could change the user experience. What if I moved the footnote text&#8211;which was generally some sort of quick definition&#8211;into a mouseover? I knew I could do it with <code>acronym</code>, but the text I was footnoting wasn&#8217;t an acronym so it wouldn&#8217;t have been semantically correct. Was there a semantic way to mark up the word or phrase being footnoted so that when moused over, a definition would show?</p>
<p>Enter <dfn title="definition: Indicates that this is the defining instance of the enclosed term.">dfn</dfn>. See what that does? The <a href="http://www.w3.org/TR/html4/struct/text.html#edef-DFN">dfn tag</a> is basically tailor made for what I wanted to do, and is even <a href="http://code.google.com/p/doctype/wiki/DfnElement">reasonably well supported</a>. FF3 and IE7 even automatically italicize the term.</p>
<p>I made one more change to my stylesheet to make it really explicit that more information was there for the mouseover, and applied the same rule that I had for abbreviations:</p>
<blockquote>
<pre>dfn {
   border-bottom: 1px dotted #333;
   cursor: help;
}</pre>
</blockquote>
<p>With that, the user got a dotted underline on the term, and a help cursor when they moused over.</p>
<p>I would probably make one more change if the application was expected to be printed, which would be to introduce some styles or JavaScript in the print stylesheet that would do an inline expansion of the definition. But for what I needed to do, dfn worked pretty well by itself. Yay obscure HTML elements!</p>
]]></content:encoded>
			<wfw:commentRss>http://www.jarretthousenorth.com/2008/12/03/obscure-html-element-of-the-day-dfn/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	<creativeCommons:license>http://creativecommons.org/licenses/by-nc-sa/3.0/us/</creativeCommons:license>
	</item>
		<item>
		<title>CSS fixin&#8217;: toward a vertical grid</title>
		<link>http://www.jarretthousenorth.com/2008/06/10/css-fixin-toward-a-vertical-grid/</link>
		<comments>http://www.jarretthousenorth.com/2008/06/10/css-fixin-toward-a-vertical-grid/#comments</comments>
		<pubDate>Tue, 10 Jun 2008 19:02:52 +0000</pubDate>
		<dc:creator>Tim Jarrett</dc:creator>
				<category><![CDATA[WebDesign]]></category>
		<category><![CDATA[Website]]></category>
		<category><![CDATA[css]]></category>
		<category><![CDATA[typography]]></category>

		<guid isPermaLink="false">http://www.jarretthousenorth.com/?p=6466</guid>
		<description><![CDATA[It should be theoretically possible with CSS to design a page where the type falls on a vertical grid. In reality, you rarely see this happen because multi-column sites make matching the grid values across the columns difficult, and browsers, particularly IE, have awkward ways of inserting inconsistent space around some block elements.
But the basic [...]]]></description>
			<content:encoded><![CDATA[<p id="top" />It should be theoretically possible with CSS to design a page where the type falls on a vertical grid. In reality, you rarely see this happen because multi-column sites make matching the grid values across the columns difficult, and browsers, particularly IE, have awkward ways of inserting inconsistent space around some block elements.</p>
<p>But the basic theory is simple enough. Decide the base unit of height of the page, and go through your stylesheet, making sure that everything there is a multiple of the base unit of height. Your tools are <code>line-height</code>, <code>padding-top</code> and <code>padding-bottom</code>. For example, if your base measurement is 20 pixels between lines of type, and you want space between your paragraphs, you might define a style like <code>p { line-height: 20px; padding-bottom: 20px;}</code> or even <code>p { line-height: 20px; padding: 10px 0;}</code> (where the latter splits the padding above and below the paragraph).</p>
<p>Getting it to work right can be a real bitch, though. What if you have a heading that you want to set larger than 20 points? The naïve approach (which I just implemented) might be to implement a rule like this: <code>h3 { font-size: 24px; line-height: 28px; padding: 8px 0 4px;}</code> where the 28 pixels of line height are padded with a total of 12 pixels to make up 40, or two lines. But this only works if all your h3s are less than one line in height; a heading spanning two lines will take up 66 pixels, or a little more than three lines, messing up the grid. The recipe for success is to avoid setting multi-line headings too closely&#8211;or perhaps to use smaller font-sizes for headings.</p>
<p>Here, as in all things related to web typography, a valuable resource is <em>The Elements of Typographic Style Applied to the Web</em>, the brilliant adaptation of Robert Bringhurst&#8217;s essential typography rulebook to CSS+HTML+ (occasionally) JavaScript. In this case, the sections on vertical motion (<a href="http://webtypography.net/Rhythm_and_Proportion/Vertical_Motion/2.2.1/">Choose a basic leading that suits the typeface, text and measure</a> and <a href="http://webtypography.net/Rhythm_and_Proportion/Vertical_Motion/2.2.2/">Add and delete vertical space in measured intervals</a>) are invaluable, and I&#8217;m going through this theme&#8217;s stylesheet and working on applying the principles now. So if things look odd, don&#8217;t worry, it&#8217;s not just you.</p>
<p>I should also point to <a href="http://www.3point7designs.com/blog/2008/05/08/8-fonts-you-probably-dont-use-in-css-but-should/">8 fonts you probably don&#8217;t use in CSS, but should</a> as the inspiration to change my sidebar headers to Gill Sans (though I might pick a different sans in a day or two), and <a href="http://www.3point7designs.com/blog/2008/06/02/10-examples-of-beautiful-css-typography-and-how-they-did-it/">10 Examples of Beautiful CSS Typography and How They Did It</a> for the specific inspiration to use small, capitalized, letterspaced sans serif for the headings. Both are quite well written posts from the <a href="http://www.3point7designs.com/blog">blog at 3.7 Designs</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.jarretthousenorth.com/2008/06/10/css-fixin-toward-a-vertical-grid/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	<creativeCommons:license>http://creativecommons.org/licenses/by-nc-sa/3.0/us/</creativeCommons:license>
	</item>
		<item>
		<title>Ongoing minor site maintenance</title>
		<link>http://www.jarretthousenorth.com/2008/05/29/ongoing-minor-site-maintenance/</link>
		<comments>http://www.jarretthousenorth.com/2008/05/29/ongoing-minor-site-maintenance/#comments</comments>
		<pubDate>Thu, 29 May 2008 17:44:39 +0000</pubDate>
		<dc:creator>Tim Jarrett</dc:creator>
				<category><![CDATA[WebDesign]]></category>
		<category><![CDATA[Website]]></category>
		<category><![CDATA[css]]></category>

		<guid isPermaLink="false">http://www.jarretthousenorth.com/?p=6441</guid>
		<description><![CDATA[I&#8217;m putting enough energy into this particular theme that I think I might keep it around a while. Today I addressed a problem with my daily link posts, which come from del.icio.us with some embedded markup. The formatting of that markup was causing some bogus line breaks (on Firefox, the list bullet displayed on a [...]]]></description>
			<content:encoded><![CDATA[<p id="top" />I&#8217;m putting enough energy into this particular theme that I think I might keep it around a while. Today I addressed a problem with my daily link posts, which come from <a href="http://del.icio.us/tjarrett">del.icio.us</a> with some embedded markup. The formatting of that markup was causing some bogus line breaks (on Firefox, the list bullet displayed on a line by itself), which I eliminated with some simple CSS rules. I&#8217;m probably not done playing with the formatting of the link posts, but I&#8217;ve fixed the immediate problem for now.</p>
<p>I&#8217;ve also created some linkage to <a href="/apocrypha/">parts of the site that used to be exposed in my main navigation</a>, and added a few more top navigation links. Enjoy&#8230;</p>
]]></content:encoded>
			<wfw:commentRss>http://www.jarretthousenorth.com/2008/05/29/ongoing-minor-site-maintenance/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	<creativeCommons:license>http://creativecommons.org/licenses/by-nc-sa/3.0/us/</creativeCommons:license>
	</item>
		<item>
		<title>Excel theme fix list</title>
		<link>http://www.jarretthousenorth.com/2008/05/22/excel-theme-fix-list/</link>
		<comments>http://www.jarretthousenorth.com/2008/05/22/excel-theme-fix-list/#comments</comments>
		<pubDate>Thu, 22 May 2008 16:05:59 +0000</pubDate>
		<dc:creator>Tim Jarrett</dc:creator>
				<category><![CDATA[WebDesign]]></category>
		<category><![CDATA[Website]]></category>
		<category><![CDATA[css]]></category>
		<category><![CDATA[themes]]></category>
		<category><![CDATA[typography]]></category>
		<category><![CDATA[wordpress]]></category>

		<guid isPermaLink="false">http://www.jarretthousenorth.com/?p=6378</guid>
		<description><![CDATA[I&#8217;m writing this working list so that I can keep a record of what I did to the Excel theme to get it the way I like it, as well as for anyone else who&#8217;s interested in learning how to hack up WordPress themes.
Issues:

The amount of vertical space consumed by the header region (seems to [...]]]></description>
			<content:encoded><![CDATA[<p id="top" />I&#8217;m writing this working list so that I can keep a record of what I did to the <a href="http://www.jarretthousenorth.com/2008/05/21/todays-theme-excel/">Excel theme</a> to get it the way I like it, as well as for anyone else who&#8217;s interested in learning how to hack up WordPress themes.</p>
<p>Issues:</p>
<ul>
<li>The amount of vertical space consumed by the header region (seems to be a common trend among the themes I&#8217;ve tried so far)</li>
<li>Need to tweak styles &#8212; <span style="text-decoration: line-through;">tags and recent comments run into each other,</span> headings in the sidebar are too prominent, need some custom style work for the Delicious widget</li>
<li>The dark borders around images and the big blocky links make the top of the page feel too heavy</li>
<li><span style="text-decoration: line-through;">Category and single post pages missing blog title</span></li>
</ul>
<p><strong>Fixes to date:</strong><em></em></p>
<p><em>Tags</em>: I replaced the function call for tags that was in the theme to specify the following: <code>the_tags('&lt;ul class="pmeta-tags"&gt;&lt;li&gt;Tags: ',',&lt;/li&gt; &lt;li&gt;','&lt;/li&gt;&lt;/ul&gt;');</code>. This basically made the tag a true unordered list with a new class, pmeta-tags, and inserted a comma and a space after each item in the list except the last one. Then I edited the stylesheet to define <code>ul.pmeta-tags</code> as display:inline. So the tags now displays as a comma separated list. I tried a <a href="http://annevankesteren.nl/2005/01/comma-separated-list">different, very handy, css-only approach</a> (<a href="http://annevankesteren.nl/test/examples/css/comma-separated.html">example</a>) first, but the browser didn&#8217;t pick up the specified commas or spaces as cues to break the line, and so the content disappeared off the right hand side of the box.</p>
<p><em>Recent comments</em>: I used the CSS-only example cited above to style the comments and provide a semicolon as a separator between comments. Alas, IE doesn&#8217;t understand this approach so I&#8217;ll have to do something else here.</p>
<p><em>Blog title on other pages</em>: I edited the <code>header.php</code> file to include the blog title in parens after the title of the object (post, category, etc.)</p>
]]></content:encoded>
			<wfw:commentRss>http://www.jarretthousenorth.com/2008/05/22/excel-theme-fix-list/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
	<creativeCommons:license>http://creativecommons.org/licenses/by-nc-sa/3.0/us/</creativeCommons:license>
	</item>
		<item>
		<title>You might notice something different today&#8230;</title>
		<link>http://www.jarretthousenorth.com/2007/04/05/you-might-notice-something-different-today/</link>
		<comments>http://www.jarretthousenorth.com/2007/04/05/you-might-notice-something-different-today/#comments</comments>
		<pubDate>Thu, 05 Apr 2007 13:47:44 +0000</pubDate>
		<dc:creator>Tim Jarrett</dc:creator>
				<category><![CDATA[WebDesign]]></category>

		<guid isPermaLink="false">http://www.jarretthousenorth.com/?p=5217</guid>
		<description><![CDATA[
Today is CSS Naked Day 2007, a day when some thousand-plus web sites have cast off their styling to illustrate their semantically-beautiful bones beneath.
Which is why my site looks, um, weird. All the normal styling has been stripped out.
We do this to illustrate that the Web ain&#8217;t all pretty colors; at its root, it&#8217;s about [...]]]></description>
			<content:encoded><![CDATA[<p id="top" />
<p>Today is <a href="http://naked.dustindiaz.com/">CSS Naked Day 2007</a>, a day when some thousand-plus web sites have cast off their styling to illustrate their semantically-beautiful bones beneath.</p>
<p>Which is why my site looks, um, weird. All the normal styling has been stripped out.</p>
<p>We do this to illustrate that the Web ain&rsquo;t all pretty colors; at its root, it&rsquo;s about markup that is easy to read and portable across multiple devices. It&rsquo;s all about separating style from content, baby.</p>
<p>Hat tip to Zalm, who <a href="http://fromthesalmon.com/ripples/naked/">turned me on to this concept</a>, and whose markup is just fine.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.jarretthousenorth.com/2007/04/05/you-might-notice-something-different-today/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	<creativeCommons:license>http://creativecommons.org/licenses/by-nc-sa/3.0/us/</creativeCommons:license>
	</item>
		<item>
		<title>Georgian revival</title>
		<link>http://www.jarretthousenorth.com/2006/07/13/georgian-revival/</link>
		<comments>http://www.jarretthousenorth.com/2006/07/13/georgian-revival/#comments</comments>
		<pubDate>Thu, 13 Jul 2006 19:17:38 +0000</pubDate>
		<dc:creator>Tim Jarrett</dc:creator>
				<category><![CDATA[WebDesign]]></category>

		<guid isPermaLink="false">http://www.jarretthousenorth.com/?p=4769</guid>
		<description><![CDATA[
International Herald Tribune: Quirky serifs aside, Georgia fonts win on Web. The thesis of the article is that, because of its use in some fairly high profile redesigns (the New York Times website   among others), the font Georgia is undergoing a comeback. A slim thread on which to hang an article, particularly when [...]]]></description>
			<content:encoded><![CDATA[<p id="top" />
<p>International Herald Tribune: <a href="http://iht.com/articles/2006/07/09/features/dlede10.php">Quirky serifs aside, Georgia fonts win on Web</a>. The thesis of the article is that, because of its use in some fairly high profile redesigns (the <a href="http://www.nytimes.com/">New York Times website  </a> among others), the font Georgia is undergoing a comeback. A slim thread on which to hang an article, particularly when you consider that Georgia has been the font of this blog since at least its <a href="http://www.jarretthousenorth.com/2003/12/28#a3039">redesign in January 2004</a> (the <a href="http://www.jarretthousenorth.com/2002/03/15#a754">original custom CSS design</a> used Verdana or Helvetica, depending on availability, as my <a href="http://static.redjupiter.com/gems/jarretthousenorth/jhn.css">old stylesheet</a> reveals).</p>
<p>It is sad, as Dave Shea at Mezzoblue notes, that there is practically speaking only a <a href="http://www.mezzoblue.com/archives/2006/07/13/georgia_revi/">pool of eight or nine fonts</a> through which we can rotate for web typography. In this vein, I have to go back and give Hakon Lie partial credit for at least trying to move the ball forward on web typography, as <a href="http://www.jarretthousenorth.com/2006/06/20#a7584">wrongheaded</a>  as he was about the business model implications of what he proposed.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.jarretthousenorth.com/2006/07/13/georgian-revival/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	<creativeCommons:license>http://creativecommons.org/licenses/by-nc-sa/3.0/us/</creativeCommons:license>
	</item>
		<item>
		<title>DRM or Free&#8217;n&#039;Ugly: why Hakon Lie is wrong about web fonts</title>
		<link>http://www.jarretthousenorth.com/2006/06/20/drm-or-freenugly-why-hakon-lie-is-wrong-about-web-fonts/</link>
		<comments>http://www.jarretthousenorth.com/2006/06/20/drm-or-freenugly-why-hakon-lie-is-wrong-about-web-fonts/#comments</comments>
		<pubDate>Tue, 20 Jun 2006 14:15:19 +0000</pubDate>
		<dc:creator>Tim Jarrett</dc:creator>
				<category><![CDATA[WebDesign]]></category>

		<guid isPermaLink="false">http://www.jarretthousenorth.com/?p=4724</guid>
		<description><![CDATA[
As I keep forgetting to prove by posting some old work, I was once an ardent amateur typographer before the web rendered that pastime, as well as most desktop publishing, all but obsolete. As someone who used to code my favorite font family into my stylesheets on the off chance that someone would have Minion [...]]]></description>
			<content:encoded><![CDATA[<p id="top" />
<p>As I keep forgetting to prove by posting some old work, I was once an ardent amateur typographer before the web rendered that pastime, as well as most desktop publishing, all but obsolete. As someone who used to code my favorite font family into my stylesheets on the off chance that someone would have Minion installed on their machine, I should be right in the target market for <a href="http://news.com.com/2010-1032_3-6085417.html?part=rss&#038;tag=6085417&#038;subj=news">Opera CTO Hakon Lie&rsquo;s write-up on improving web typography</a>.</p>
<p>And yet, I find myself with some misgivings. Not because there aren&rsquo;t problems with web typography. To cite one example, several sites that I visit from my home browser used to appear strange to the point of being unreadable because Safari read the type family and found the nearest match&mdash;but as you can see, <a href="http://www.veer.com/products/typedetail.aspx?image=ADT0003146">Myriad Wild</a> is no substitute for Adobe&rsquo;s elegant <a href="http://www.veer.com/products/typedetail.aspx?image=ADT0005376">Myriad </a> sans serif, and when the browser identifies the music-font variant of Minion as the right text in which to set a page of text it&rsquo;s time to give up.</p>
<p>But the biggest problem with fonts online for me is the same as the biggest problem offline: quality and readability. And for this cause I think Hakon&rsquo;s suggestion that free fonts should be accessible by browsers to render web pages is not the best idea. The best example I can think of is the one Hakon used: <a href="http://www.myfonts.com/fonts/larabie/goodfish/regular/">Goodfish</a>. I may be a font snob, but I can&rsquo;t help but think a web page set in this font would drive me to turn off font downloading&mdash;or stop visiting the page. It&rsquo;s not a bad font, it&rsquo;s just not a good font for setting text. In fact, it was the general unavailability of good fonts for reading text on screen that drove Microsoft to commission Verdana, Georgia and the other fonts in their Web type set in the first place. Display faces are a dime a dozen, and I happily use freely available ones where necessary&mdash;but good fonts for setting text are worth their weight in gold, and the odds of them being released for free use without some sort of DRM are minimal. (That I can name only two exceptions, the highly useful <a href="http://scripts.sil.org/Gentium">Gentium</a> and <a href="http://www.gnome.org/fonts/">Bitstream&rsquo;s Vera</a>, proves the rule.)</p>
<p>And speaking of DRM and free, there are two unattractive possibilities that would come from the institution of standards for downloading Web fonts. First, there is a long history of ripping off and undercompensating font designers (think of all those collections of 1001 free fonts that consist entirely of cheap knock offs of gold standard fonts that cost money) that can only get worse if the pressure to provide free fonts for Web use grows. I think that a flood of even more cheap knock-off fonts falls in the category of really bad unintended consequences. At the same time, the last thing I want to see is an even more restrictive set of DRM schemes around font technologies. And think of the challenges of enforcing &ldquo;web only&rdquo; font licenses through DRM when more and more of the user&rsquo;s desktop applications are migrating to the Web.</p>
<p>I also think the point that is made on Big Patterns about the <a href="http://bigpatterns.blogspot.com/2006/06/switching-masters-isnt-freedom.html">difference between free-as-in-beer and free-as-in-speech fonts</a> is well made. But at the end of the day what I want is good fonts that can be used online without resorting to PDF, Flash, or <a href="http://www.mezzoblue.com/tests/revised-image-replacement/">various CSS image replacement techniques</a>&mdash;and without paying an ASCAP-style yearly license for the right to do so. I don&rsquo;t see this happening under Hakon&rsquo;s suggestion without some extremely creative thinking on the part of the font foundries and software engineers.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.jarretthousenorth.com/2006/06/20/drm-or-freenugly-why-hakon-lie-is-wrong-about-web-fonts/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	<creativeCommons:license>http://creativecommons.org/licenses/by-nc-sa/3.0/us/</creativeCommons:license>
	</item>
		<item>
		<title>The elements of (online) Typographic Style</title>
		<link>http://www.jarretthousenorth.com/2006/03/17/the-elements-of-online-typographic-style/</link>
		<comments>http://www.jarretthousenorth.com/2006/03/17/the-elements-of-online-typographic-style/#comments</comments>
		<pubDate>Fri, 17 Mar 2006 15:02:25 +0000</pubDate>
		<dc:creator>Tim Jarrett</dc:creator>
				<category><![CDATA[WebDesign]]></category>

		<guid isPermaLink="false">http://www.jarretthousenorth.com/?p=4526</guid>
		<description><![CDATA[
I&#8217;ve meant to blog The Elements of Typographic Style Applied to the Web for quite a while but now (thanks to a sick day while I fight off the remnants of this cold) am finally getting around to it. The site is just what it says, a work in progress that takes each of the [...]]]></description>
			<content:encoded><![CDATA[<p id="top" />
<p>I&rsquo;ve meant to blog <a href="http://webtypography.net/">The Elements of Typographic Style Applied to the Web</a> for quite a while but now (thanks to a sick day while I fight off the remnants of this cold) am finally getting around to it. The site is just what it says, a work in progress that takes each of the lessons of good typography in Robert Bringhurst&rsquo;s classic <em>Elements of Typographic Style</em> and shows how to address them online. Some fairly advanced topics like kerning with CSS are covered, and the whole thing is pretty darned cool&mdash;and a beautiful site, as you would expect.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.jarretthousenorth.com/2006/03/17/the-elements-of-online-typographic-style/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	<creativeCommons:license>http://creativecommons.org/licenses/by-nc-sa/3.0/us/</creativeCommons:license>
	</item>
		<item>
		<title>Redesigns 2: CNet&#8217;s News.com: ho-hum design, good blogs</title>
		<link>http://www.jarretthousenorth.com/2005/10/06/redesigns-2-cnets-newscom-ho-hum-design-good-blogs/</link>
		<comments>http://www.jarretthousenorth.com/2005/10/06/redesigns-2-cnets-newscom-ho-hum-design-good-blogs/#comments</comments>
		<pubDate>Thu, 06 Oct 2005 17:45:43 +0000</pubDate>
		<dc:creator>Tim Jarrett</dc:creator>
				<category><![CDATA[WebDesign]]></category>

		<guid isPermaLink="false">http://www.jarretthousenorth.com/?p=4157</guid>
		<description><![CDATA[
The second notable redesign today is at News.com. Reviewing this design is a little more difficult, because it&#8217;s harder to spot what has changed. The yellow is still there, now actually looking a little orange. The front page is still a total mess, and it&#8217;s still impossible to find an individual headline there. The URLs [...]]]></description>
			<content:encoded><![CDATA[<p id="top" />
<p>The second <a href="http://www.jarretthousenorth.com/2005/10/06#a6739">notable redesign today</a> is at <a href="http://news.com.com/Note+from+the+editor+Your+new+News.com/2010-1038_3-5889716.html?part=rss&#038;tag=5889716&#038;subj=news">News.com</a>. Reviewing this design is a little more difficult, because it&rsquo;s harder to spot what has changed. The yellow is still there, now actually looking a little orange. The front page is still a total mess, and it&rsquo;s still impossible to find an individual headline there. The URLs are still impossibly long and impossible to remember.</p>
<p>But there are three killer features. The <a href="http://hot.news.com/">treemap view of the hottest stories on News.com is brilliant</a>, as is its placement as a sidebar on every story. It&rsquo;s interesting to watch popularity change in real time, too, as the current hottest story (<a href="http://news.com.com/Network+feud+leads+to+Net+blackout/2100-1038_3-5889592.html?tag=newsmap">Network feud leads to Net blackout</a>) gets hotter. I hope that CNet thought about the effect that this treemap has on their most viewed statistics, or they might just be getting into a self reinforcing loop here.</p>
<p>The <a href="http://bigpicture.news.com/?tag=st.bp">Big Picture</a> is even cooler, at least at first. This moving relationship map between stories is fun to use to explore the Related Stories that CNet has long featured at the bottom of every article. Two things are keeping me from being hyper-enthusiastic about the feature, though. I don&rsquo;t always understand why the connections are drawn the way they are, or what popularity has to do with the relationship between the stories. Second, like all such spider graphs, the relationships are really hard to read once <a href="http://news.com.com/2104-1006_3-5731398.html?tag=st.bp">too many of them appear on screen</a>.</p>
<p>The <a href="http://news.com.com/2310-10784_3-0.html">third feature</a> has the potential to be the most controversial among  bloggers. That&rsquo;s because it&rsquo;s yet another Top 100 list of blogs that are &ldquo;worth reading.&rdquo; The results are interesting, especially the Blog 100 Stream (recent posts from all 100 blogs in <a href="http://www.reallysimplesyndication.com/riverOfNews">river of news</a> format). Even if <a href="http://www.fark.com/">Fark.com</a> is flooding that river right now. I&rsquo;d like to see more interactivity though. <a href="http://news.com.com/2310-10784_3-0.html#talkback">Agree or disagree</a>? What would have been cool would be if CNet partnered with <a href="http://www.bloglines.com/">Bloglines</a> or <a href="http://www.kinja.com/">Kinja</a> to allow readers to build their own lists, not just talk about them.</p>
<p>Final note: I wholeheartedly approve of News.com&rsquo;s shift in focus from Tech News First to News of Change. In 2005, focusing on technology means focusing on law, politics, and the sciences as well.</p>
<p>In fact, the only obviously dumb move I see from this redesign is the My News feature. I&rsquo;m not going to take the time to customize my view of News.com, folks. I&rsquo;m putting that time into my RSS reader instead, because the payback is better.</p>
<p>Overall score: Intentions A, execution B+. Great features, but the basic page design, particularly on the home page, could still improve to make finding information easier.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.jarretthousenorth.com/2005/10/06/redesigns-2-cnets-newscom-ho-hum-design-good-blogs/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	<creativeCommons:license>http://creativecommons.org/licenses/by-nc-sa/3.0/us/</creativeCommons:license>
	</item>
		<item>
		<title>Redesigns Part 1: Salon misses an opportunity</title>
		<link>http://www.jarretthousenorth.com/2005/10/06/redesigns-part-1-salon-misses-an-opportunity/</link>
		<comments>http://www.jarretthousenorth.com/2005/10/06/redesigns-part-1-salon-misses-an-opportunity/#comments</comments>
		<pubDate>Thu, 06 Oct 2005 17:02:21 +0000</pubDate>
		<dc:creator>Tim Jarrett</dc:creator>
				<category><![CDATA[WebDesign]]></category>

		<guid isPermaLink="false">http://www.jarretthousenorth.com/?p=4156</guid>
		<description><![CDATA[
Two big sites unveiled new designs today. Salon (as pointed to by BoingBoing) and CNET&#8217;s News.com both rolled out new user interfaces. I&#8217;m a little mixed on the design effectiveness of both, but there are a few interesting corners in the mix too. I&#8217;ll write a quick post on CNET but want to focus on [...]]]></description>
			<content:encoded><![CDATA[<p id="top" />
<p>Two big sites unveiled new designs today. Salon (as pointed to by <a href="http://www.boingboing.net/2005/10/06/salon_redesigns_for_.html">BoingBoing</a>) and CNET&rsquo;s News.com both rolled out new user interfaces. I&rsquo;m a little mixed on the design effectiveness of both, but there are a few interesting corners in the mix too. I&rsquo;ll write a quick post on CNET but want to focus on Salon&rsquo;s moves now, because frankly they annoy me more.</p>
<p>First the graphic identity. It&rsquo;s cleaner, but some of the elements, particularly on the <a href="http://www.salon.com/">front page</a>, appear unanchored and somehow floating&mdash;as though the former black boxes of the design were containing the content and it&rsquo;s now just kind of drifting around the page. There&rsquo;s not a good sense of an underlying grid. Take a look at the community sidebar for an example&mdash;it seems to bear little relation to what&rsquo;s going on around it. I&rsquo;m also getting lost in the headlines on the left&mdash;too much bold text, not enough visual separation or something. It&rsquo;s hard to scan. Finally, the new design and branding doesn&rsquo;t carry through to all the content, particularly <a href="http://www.salon.com/ent/audiofile/">Audiofile</a>. Visual design: A for intentions, B- for execution.</p>
<p>I also don&rsquo;t appreciate the &ldquo;ghetto-ization&rdquo; of Salon&rsquo;s blogs, which are now (especially <a href="http://www.salon.com/ent/audiofile/">Audiofile</a> and <a href="http://www.salon.com/politics/war_room/">War Room</a>) the major daily draw for me. While they&rsquo;ve moved into the main column and feature updated headlines, they&rsquo;re only small text links in a mass of illustrated spots and thus easy to overlook. Don&rsquo;t get me wrong, I enjoy Salon&rsquo;s other articles. I still click through on the RSS feed for some other articles, such as today&rsquo;s <a href="http://www.salon.com/opinion/blumenthal/2005/10/06/rovean_empire/index.html">Fall of the Rovean Empire</a> by Sidney Blumenthal and last week&rsquo;s article on the <a href="http://www.salon.com/opinion/feature/2005/10/03/gaysvatican/index.html">implications of the Vatican&rsquo;s crackdown on homosexuality in seminaries</a>. But for me <a href="http://www.salon.com/feed/RDF/salon_net.rdf">Salon&rsquo;s steady, unglamorous RSS feed</a> (OK, it&rsquo;s actually RDF) is much better at making their content findable than the redesign. And the link to the RSS feed is now gone from the front page! It&rsquo;s not even in the meta tags, so you can&rsquo;t use autodiscovery. This is brain dead. Discoverability: intentions A, execution D.</p>
<p>Finally, functionality. I like the addition of the font size controls and the print and email links. But they aren&rsquo;t on pages that don&rsquo;t have the new design. Intention B+ (page tools are ok but not revolutionary, really. How about telling us about your most emailed articles with those stats you&rsquo;re collecting through Hotbox?) and execution A-.</p>
<p>Overall score: intentions A, execution C-. Not a good way to start your next ten years, folks.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.jarretthousenorth.com/2005/10/06/redesigns-part-1-salon-misses-an-opportunity/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	<creativeCommons:license>http://creativecommons.org/licenses/by-nc-sa/3.0/us/</creativeCommons:license>
	</item>
	</channel>
</rss>
