<?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:georss="http://www.georss.org/georss" xmlns:geo="http://www.w3.org/2003/01/geo/wgs84_pos#" xmlns:media="http://search.yahoo.com/mrss/"
	>

<channel>
	<title>Below the Line</title>
	<atom:link href="http://alexsavage.wordpress.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://alexsavage.wordpress.com</link>
	<description>A review of technology in the practice of law.</description>
	<lastBuildDate>Mon, 13 Jun 2011 09:06:46 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.com/</generator>
<cloud domain='alexsavage.wordpress.com' port='80' path='/?rsscloud=notify' registerProcedure='' protocol='http-post' />
<image>
		<url>http://0.gravatar.com/blavatar/46e0b2a0adda2adfd72f6cba0724fb0e?s=96&#038;d=http%3A%2F%2Fs2.wp.com%2Fi%2Fbuttonw-com.png</url>
		<title>Below the Line</title>
		<link>http://alexsavage.wordpress.com</link>
	</image>
	<atom:link rel="search" type="application/opensearchdescription+xml" href="http://alexsavage.wordpress.com/osd.xml" title="Below the Line" />
	<atom:link rel='hub' href='http://alexsavage.wordpress.com/?pushpress=hub'/>
		<item>
		<title>Improving Readability in Westlaw</title>
		<link>http://alexsavage.wordpress.com/2010/05/14/improving-readability-in-westlaw/</link>
		<comments>http://alexsavage.wordpress.com/2010/05/14/improving-readability-in-westlaw/#comments</comments>
		<pubDate>Fri, 14 May 2010 18:19:12 +0000</pubDate>
		<dc:creator>Alex Savage</dc:creator>
				<category><![CDATA[Legal Research]]></category>
		<category><![CDATA[css]]></category>
		<category><![CDATA[customization]]></category>
		<category><![CDATA[readability]]></category>
		<category><![CDATA[westlaw]]></category>

		<guid isPermaLink="false">http://savage.unspecified.net/?p=416</guid>
		<description><![CDATA[Westlaw’s default settings fall short in many ways.  One shortcoming is the default text display, which I found difficult to either scan over quickly, or read for any significant length of time. With a settings file on my browser, however, I was able to override the text style and replace it with the style of [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=alexsavage.wordpress.com&amp;blog=11032014&amp;post=416&amp;subd=alexsavage&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Westlaw’s default settings fall short in many ways.  One shortcoming is the default text display, which I found difficult to either scan over quickly, or read for any significant length of time.</p>
<div id="attachment_417" class="wp-caption aligncenter" style="width: 310px"><a href="http://alexsavage.files.wordpress.com/2010/05/westlaw-defaults.png"><img class="size-medium wp-image-417" title="Westlaw Defaults" src="http://alexsavage.files.wordpress.com/2010/05/westlaw-defaults.png?w=300&#038;h=191" alt="" width="300" height="191" /></a><p class="wp-caption-text">The default text display for a retrieved document in Westlaw.</p></div>
<p>With a settings file on my browser, however, I was able to override the text style and replace it with the style of my choice.</p>
<p><span id="more-416"></span>Style sheets (CSS) let Web designers specify the details of how pages are presented in a browser.  Ordinarily, only site creators use CSS, and people browsing sites view the pages as they were designed.  However, most of the popular recent browsers support “user styles&#8221; (<a href="http://www.squarefree.com/userstyles/user-style-sheets.html">Internet Explorer, Firefox, Opera,</a> and <a href="http://webdesign.about.com/od/css/ht/htcssusersafari.htm">Safari</a>) that let you define rules to override web authors’ CSS.</p>
<p>The key to using a user style is knowing what CSS rules to write.  Fortunately, Westlaw’s result pages use a consistent and unique structure that gives us an easy target.  Without getting too deep into CSS details, it’s enough to note that all of the body text in a Westlaw page is inside of a tag with the ID <strong>mDocumentText_ctl00_mContainer</strong>.  It’s then simple to write rules that target only that part of Westlaw.  Here is my user style sheet:</p>
<blockquote><p><code>#mDocumentText_ctl00_mContainer {<br />
line-height: 150% !important;<br />
text-align: justify !important;<br />
margin-left: 2em !important;<br />
margin-right: 2em !important;<br />
}</code></p>
<p><code>#mDocumentText_ctl00_mContainer * {<br />
font-family: "Times New Roman" !important;<br />
font-size: 14px !important;<br />
}</code></p>
<p><code> </code><code>#mDocumentText_ctl00_mContainer a[href*="FNF"]{<br />
position: relative !important;<br />
top: -0.5em !important;<br />
font-size: 70% !important;<br />
}</code></p></blockquote>
<p>This does three things.  First, it sets 1.5 line spacing, justified alignment, and comfortable margins for the entire result document.  Second, it forces the font to 14-point Times New Roman for any child of the “container&#8221; element.  The third one is a little more clever.  In Westlaw, all hyperlinks to footnotes target anchors on the same page that start “FNF”.  The third selector targets any link that matches “FNF” and makes it superscripted, looking more like a footnote marker and less like computer garbage in the middle of the text.</p>
<div id="attachment_419" class="wp-caption aligncenter" style="width: 310px"><a href="http://alexsavage.files.wordpress.com/2010/05/westlaw-stylesheet.png"><img class="size-medium wp-image-419" title="Westlaw Stylesheet" src="http://alexsavage.files.wordpress.com/2010/05/westlaw-stylesheet.png?w=300&#038;h=191" alt="" width="300" height="191" /></a><p class="wp-caption-text">Westlaw with my user styles active.</p></div>
<p>In a later post, I’ll share some of the more easy-to-fix settings that make Westlaw even less of a headache to deal with.</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/alexsavage.wordpress.com/416/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/alexsavage.wordpress.com/416/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/alexsavage.wordpress.com/416/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/alexsavage.wordpress.com/416/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/alexsavage.wordpress.com/416/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/alexsavage.wordpress.com/416/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/alexsavage.wordpress.com/416/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/alexsavage.wordpress.com/416/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/alexsavage.wordpress.com/416/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/alexsavage.wordpress.com/416/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/alexsavage.wordpress.com/416/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/alexsavage.wordpress.com/416/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/alexsavage.wordpress.com/416/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/alexsavage.wordpress.com/416/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=alexsavage.wordpress.com&amp;blog=11032014&amp;post=416&amp;subd=alexsavage&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://alexsavage.wordpress.com/2010/05/14/improving-readability-in-westlaw/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/4351c971a57283e8a699712c03852615?s=96&#38;d=http%3A%2F%2Fs0.wp.com%2Fi%2Fmu.gif&#38;r=R" medium="image">
			<media:title type="html">Alex Savage</media:title>
		</media:content>

		<media:content url="http://alexsavage.files.wordpress.com/2010/05/westlaw-defaults.png?w=300" medium="image">
			<media:title type="html">Westlaw Defaults</media:title>
		</media:content>

		<media:content url="http://alexsavage.files.wordpress.com/2010/05/westlaw-stylesheet.png?w=300" medium="image">
			<media:title type="html">Westlaw Stylesheet</media:title>
		</media:content>
	</item>
	</channel>
</rss>
