<?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>Chapter 42 &#187; free stuff</title>
	<atom:link href="http://chapter42.whitewhale.net/tag/free-stuff/feed/" rel="self" type="application/rss+xml" />
	<link>http://chapter42.whitewhale.net</link>
	<description></description>
	<lastBuildDate>Thu, 30 Sep 2010 17:20:47 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.8.4</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>Tables and CSS columns, Part II: Making the best of a bad situation</title>
		<link>http://chapter42.whitewhale.net/2008/06/19/tables-and-css-columns-part-ii-making-the-best-of-a-situation/</link>
		<comments>http://chapter42.whitewhale.net/2008/06/19/tables-and-css-columns-part-ii-making-the-best-of-a-situation/#comments</comments>
		<pubDate>Fri, 20 Jun 2008 00:27:44 +0000</pubDate>
		<dc:creator>Jason</dc:creator>
				<category><![CDATA[Best Practices]]></category>
		<category><![CDATA[CSS]]></category>
		<category><![CDATA[free stuff]]></category>
		<category><![CDATA[tables]]></category>
		<category><![CDATA[whitewhale]]></category>

		<guid isPermaLink="false">http://chapter42.whaleblogs.net/?p=53</guid>
		<description><![CDATA[So having said all that, the way we&#8217;re handling CSS columns these days is actually pretty cool.  Here&#8217;s some sample CSS, from a site in development with a 720px wide content area:
/* Column layouts */
.column { float:left; overflow:hidden;}
.columns { margin-bottom:20px; padding-top:10px; }
.three.columns .first { width:200px; padding-right:20px; }
.three.columns .second { width:200px; padding:0 20px; }
.three.columns .third { [...]]]></description>
			<content:encoded><![CDATA[<p>So <a href="http://chapter42.whaleblogs.net/?p=52">having said all that</a>, the way we&#8217;re handling CSS columns these days is actually pretty cool.  Here&#8217;s some sample CSS, from a site in development with a 720px wide content area:</p>
<pre>/* Column layouts */
.column { float:left; overflow:hidden;}
.columns { margin-bottom:20px; padding-top:10px; }
.three.columns .first { width:200px; padding-right:20px; }
.three.columns .second { width:200px; padding:0 20px; }
.three.columns .third { width:200px; padding-left:20px; }
.two.columns .first { width:300px; padding-right:20px; }
.two.columns .second { width:300px; padding-left:20px; }</pre>
<pre><span style="font-family: 'Lucida Grande'; line-height: 19px; white-space: normal;">This lets us code the XHTML like this:</span></pre>
<pre>&lt;div class="three columns"&gt;
     &lt;div class="first column"&gt;
         Column 1
     &lt;/div&gt;
     &lt;div class="second column"&gt;
         Column 2
     &lt;/div&gt;
     &lt;div class="third column"&gt;
         Column 3
     &lt;/div&gt;
&lt;div style="clear:both;"&gt;&lt;/div&gt;
&lt;/div&gt;  </pre>
<p>&#8230; which is pretty nice semantically.</p>
]]></content:encoded>
			<wfw:commentRss>http://chapter42.whitewhale.net/2008/06/19/tables-and-css-columns-part-ii-making-the-best-of-a-situation/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Quick Access v.1.0</title>
		<link>http://chapter42.whitewhale.net/2008/06/15/quickaccess/</link>
		<comments>http://chapter42.whitewhale.net/2008/06/15/quickaccess/#comments</comments>
		<pubDate>Sun, 15 Jun 2008 23:03:34 +0000</pubDate>
		<dc:creator>Donald</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[downloads]]></category>
		<category><![CDATA[free stuff]]></category>
		<category><![CDATA[javascript]]></category>
		<category><![CDATA[jquery]]></category>
		<category><![CDATA[quickaccess]]></category>

		<guid isPermaLink="false">http://chapter42.whaleblogs.net/?p=50</guid>
		<description><![CDATA[Update: Quick Access continues to get a lot of traffic; thanks, everyone, for using our script!  We&#8217;ve been excited to see some examples of how people are using it out there.
We&#8217;ve changed and tweaked the formula a bit since we posted this, and are thinking of releasing a 1.1.  If there&#8217;s anything any of you [...]]]></description>
			<content:encoded><![CDATA[<p><em>Update: Quick Access continues to get a lot of traffic; thanks, everyone, for using our script!  We&#8217;ve been excited to see some examples of how people are using it out there.</em></p>
<p><em>We&#8217;ve changed and tweaked the formula a bit since we posted this, and are thinking of releasing a 1.1.  If there&#8217;s anything any of you would like to see QA do that it doesn&#8217;t already, please let us know in the comments!</em></p>
<p>Every higher ed website is going to have landing pages with a ton of links. Your various audiences each demand one-click access to what they need, but the resulting page is rarely very scannable and its hard to categorize these sundry links in ways that meet the expectations of all your visitors.</p>
<p><span class="lede">Enter <a href="http://www.babywhale.net/quickaccess/">Quick Access</a>.</span> Quick Access is a lightweight Javascript solution we first created for <a href="http://www.haverford.edu/quickaccess/">Haverford College</a> to address this problem (we later ported this to <a href="http://jquery.com">jQuery</a> for versions for <a href="http://www.kenyon.edu/x40091.xml">Kenyon College</a> and <a href="http://www.southwestern.edu/notwhatyouexpected/">Southwestern University</a>). It&#8217;s best summed up with: &#8220;Just start typing what you&#8217;re looking for.&#8221;<span id="more-50"></span></p>
<p>Quickaccess dynamically searches links in a particular div for text and keyword matches. To add quickaccess to your page, all you need is your existing series of links; to additional keywords, just use standard HTML comments (<span class="code">&lt;!&#8211; &#8211;&gt;</span>) within the links.</p>
<p>I&#8217;ve ported the latest version to a jQuery plugin. You can see a robust example <a href="http://www.babywhale.net/quickaccess/">here</a> and grab the source <a href="http://www.babywhale.net/quickaccess/scripts/quickaccess.js">here</a>. Getting started is as simple as:</p>
<pre>$('input#inputselector').quickaccess({selector:'.searchselector'});</pre>
<p>And of course you&#8217;ll need a recent version of <a href="http://www.jquery.com/">jQuery</a>.</p>
<p>It&#8217;s largely undocumented at the moment but it&#8217;s super-straightforward; configuration settings and examples appear as comments at the start of the JS source.</p>
<p>We hope you find it useful, and let us know if you have any questions!</p>
]]></content:encoded>
			<wfw:commentRss>http://chapter42.whitewhale.net/2008/06/15/quickaccess/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
	</channel>
</rss>

