<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	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/"
		>
<channel>
	<title>Comments on: Firefox 3.0.8 Prints Garbage Fixed-Width Text [Courier]</title>
	<atom:link href="http://blog.twaddington.com/2009/04/firefox-308-prints-garbage-fixed-width-text-courier/feed/" rel="self" type="application/rss+xml" />
	<link>http://blog.twaddington.com/2009/04/firefox-308-prints-garbage-fixed-width-text-courier/</link>
	<description>Web Development and Strategic Communication</description>
	<lastBuildDate>Tue, 09 Mar 2010 16:41:43 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.8</generator>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
		<item>
		<title>By: Stefan</title>
		<link>http://blog.twaddington.com/2009/04/firefox-308-prints-garbage-fixed-width-text-courier/comment-page-1/#comment-783</link>
		<dc:creator>Stefan</dc:creator>
		<pubDate>Thu, 23 Apr 2009 07:00:34 +0000</pubDate>
		<guid isPermaLink="false">http://blog.twaddington.com/?p=274#comment-783</guid>
		<description>I unsuccessfully tried to print after changing the font to Western (Windows-1252).

I have a greasemonkey script which solves my problem. Of course would these need to be adjusted and perhaps handcrafted better for support for all websites.
// ==UserScript==
// @name          MakePrinterFriendly
// @namespace     http://www.example.com/
// @description   Unsets the face attribute of courier font
// @include       https://insupg.bankgirot.se/*
// ==/UserScript==

fonts = document.getElementsByTagName(&#039;font&#039;);
Array.forEach(fonts, function(ele) {
  if (ele.face == &#039;Courier&#039;) {
      ele.face = &quot;Courier new&quot;;
  }
});</description>
		<content:encoded><![CDATA[<p>I unsuccessfully tried to print after changing the font to Western (Windows-1252).</p>
<p>I have a greasemonkey script which solves my problem. Of course would these need to be adjusted and perhaps handcrafted better for support for all websites.<br />
// ==UserScript==<br />
// @name          MakePrinterFriendly<br />
// @namespace     <a href="http://www.example.com/" rel="nofollow">http://www.example.com/</a><br />
// @description   Unsets the face attribute of courier font<br />
// @include       <a href="https://insupg.bankgirot.se/" rel="nofollow">https://insupg.bankgirot.se/</a>*<br />
// ==/UserScript==</p>
<p>fonts = document.getElementsByTagName(&#8217;font&#8217;);<br />
Array.forEach(fonts, function(ele) {<br />
  if (ele.face == &#8216;Courier&#8217;) {<br />
      ele.face = &#8220;Courier new&#8221;;<br />
  }<br />
});</p>
]]></content:encoded>
	</item>
</channel>
</rss>
