<?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>Boxcar Press - Us &#187; about Boxcar&#8217;s site</title>
	<atom:link href="http://boxcarpress.com/us/blog/category/about-boxcars-site/feed/" rel="self" type="application/rss+xml" />
	<link>http://boxcarpress.com/us/blog</link>
	<description>Just another WordPress weblog</description>
	<lastBuildDate>Tue, 24 Aug 2010 16:21:04 +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>CSS &#064;font-face flickering in Firefox, somewhat solved</title>
		<link>http://boxcarpress.com/us/blog/2009/11/05/css-font-face-flickering-in-firefox-somewhat-solved/</link>
		<comments>http://boxcarpress.com/us/blog/2009/11/05/css-font-face-flickering-in-firefox-somewhat-solved/#comments</comments>
		<pubDate>Thu, 05 Nov 2009 16:58:27 +0000</pubDate>
		<dc:creator>harold</dc:creator>
				<category><![CDATA[about Boxcar's site]]></category>
		<category><![CDATA[css]]></category>
		<category><![CDATA[firefox]]></category>
		<category><![CDATA[font-face]]></category>
		<category><![CDATA[fout]]></category>
		<category><![CDATA[typography]]></category>
		<category><![CDATA[typotheque]]></category>
		<category><![CDATA[websites]]></category>

		<guid isPermaLink="false">http://boxcarpress.com/us/blog/?p=633</guid>
		<description><![CDATA[OK this is off the beaten track, but I&#8217;ve been trying to get one of our websites free from the Georgia/Verdana death grip through using CSS  &#064;font-face and Typotheque web fonts. I had some problems getting a CSS  &#064;font-face formatted text to look right in Firefox because it first loads in the fallback [...]]]></description>
			<content:encoded><![CDATA[<p>OK this is off the beaten track, but I&#8217;ve been trying to get one of our websites free from the Georgia/Verdana death grip through using CSS <code> &#064;font-face</code> and <a href="http://www.typotheque.com/webfonts">Typotheque web fonts</a>. I had some problems getting a CSS <code> &#064;font-face</code> formatted text to look right in Firefox because it first loads in the fallback font; this is a Firefox issue that&#8217;s well documented, and I&#8217;m comfortable with how Safari and IE are loading the page. Since there are a lot of images on the page, it can take a few seconds before the text &#8220;jumps&#8221; into the right typeface. None of <a href="http://paulirish.com/2009/fighting-the-font-face-fout/">these tricks</a> really improved the situation, so I decided to hide the content until the page loaded. Here is the code I&#8217;d used.<br />
<br />
<code>(all the examples assume that you're loading the jQuery javascript library)</code><br />
<br />
<code style="margin-left:10px;">$(document).ready(function(){</code><br />
<code style="margin-left:30px;">$("body").hide();</code><br />
<code style="margin-left:50px;">$(window).load(function(){</code><br />
<code style="margin-left:30px;">$("body").fadeIn();</code><br />
<code style="margin-left:30px;">});</code><br />
<code style="margin-left:10px;">});</code></p>
<p>Since the body was hidden while other scripts were running, though, other elements of the page broke (specifically a jQuery plugin and a YUI component). This wasn&#8217;t ideal either because the browser screen had to go blank between every page for every visitor. This code affects all visitors to the site when I&#8217;m really only worried about the 30% who use Firefox. So I came up with this solution which only affects Firefox users and which doesn&#8217;t hide the body elements (so that nothing breaks):</p>
<p><code style="margin-left:10px;">$(document).ready(function(){</code><br />
<code style="margin-left:30px;">$("body").css("-moz-opacity","0"); //this css is only used by Mozilla browsers like Firefox</code><br />
<code style="margin-left:50px;">$(window).load(function(){</code><br />
<code style="margin-left:30px;">$("body").css("-moz-opacity","1");</code><br />
<code style="margin-left:30px;">});</code><br />
<code style="margin-left:10px;">});</code></p>
<p>It doesn&#8217;t seem to be working when I use this &#8220;-moz-opacity&#8221; style in a &#8220;loading&#8221; CSS class (and then use <code>$("body").addClass("loading")</code> and <code>$("body").removeClass("loading")</code> to change the styling). Perhaps this is because <a href="https://developer.mozilla.org/en/CSS/opacity">Mozilla has deprecated this style</a>. I also don&#8217;t like reading that <code>Gecko 1.9.1/ Firefox 3.5 and later do not support -moz-opacity.  By now, you should be using simply opacity.</code> However, it seems to be working when jQuery applies this style with css. Just to make sure this trick works in the future, I&#8217;ll instead use the css opacity style after doing a jQuery browser detect:<br />
<br />
<code>In the stylesheet:</code><br />
<code style="margin-left:10px;">.loading{opacity:0;}</code><br />
<br />
<code>In the javascript:</code><br />
<code style="margin-left:10px;">if($.browser.mozilla){</code><br />
<code style="margin-left:30px;">$("body").addClass("loading");</code><br />
<code style="margin-left:30px;">$(window).load(function() {</code><br />
<code style="margin-left:50px;">$("body").removeClass("loading",500);//I'm using the jQuery UI animation here to fade content in, omit the ",500" if you aren't loading jqueryui.1.7.2.js.</code><br />
<code style="margin-left:30px;">});</code><br />
<code style="margin-left:10px;">};</code></p>
<p>Ah. This appears to be working and only will affect the Firefox users with the screen going blank. But once the fonts are formatted, the body will gracefully fade in. Your thoughts or suggestions are appreciated!</p>
]]></content:encoded>
			<wfw:commentRss>http://boxcarpress.com/us/blog/2009/11/05/css-font-face-flickering-in-firefox-somewhat-solved/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>Improve our site</title>
		<link>http://boxcarpress.com/us/blog/2008/03/19/improve-our-site/</link>
		<comments>http://boxcarpress.com/us/blog/2008/03/19/improve-our-site/#comments</comments>
		<pubDate>Thu, 20 Mar 2008 03:18:25 +0000</pubDate>
		<dc:creator>harold</dc:creator>
				<category><![CDATA[about Boxcar's site]]></category>

		<guid isPermaLink="false">http://64.71.179.224/us/blog/?p=10</guid>
		<description><![CDATA[If you discover any bugs, or if you have any requests for any part of our website, please report them here. Thanks for helping us make www.boxcarpress.com a better site!
]]></description>
			<content:encoded><![CDATA[<p>If you discover any bugs, or if you have any requests for any part of our website, please <a href="http://www.boxcarpress.com/bug">report them here</a>. Thanks for helping us make www.boxcarpress.com a better site!</p>
]]></content:encoded>
			<wfw:commentRss>http://boxcarpress.com/us/blog/2008/03/19/improve-our-site/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Website update</title>
		<link>http://boxcarpress.com/us/blog/2008/03/17/website-update/</link>
		<comments>http://boxcarpress.com/us/blog/2008/03/17/website-update/#comments</comments>
		<pubDate>Tue, 18 Mar 2008 00:25:57 +0000</pubDate>
		<dc:creator>harold</dc:creator>
				<category><![CDATA[about Boxcar's site]]></category>

		<guid isPermaLink="false">http://64.71.179.224/us/blog/?p=8</guid>
		<description><![CDATA[Thanks to everyone who placed orders over the weekend and today! Here&#8217;s an update of the status of website problems that we&#8217;ve corrected and the ones we&#8217;re still working on. 
 
I know that we had some issues with our upload page not working, but these appear to be resolved now. Thanks for your patience [...]]]></description>
			<content:encoded><![CDATA[<p>Thanks to everyone who placed orders over the weekend and today! Here&#8217;s an update of the status of website problems that we&#8217;ve corrected and the ones we&#8217;re still working on. </p>
<p> <span id="more-8"></span></p>
<p>I know that we had some issues with our upload page not working, but these appear to be resolved now. Thanks for your patience while we resolved this. It ended up not being our code to blame, but a configuration file on our new server (long story, full of swashbuckling IT adventure). In the meantime, Cathy and Carrie (despite her laryngitis) were able to field everyone&#8217;s orders over the phone and keep things running. Great work guys!</p>
<p>Over the weekend some other people experienced problems accessing our site from the URL www.boxcarpress.com. These were normal effects from changing our server and should be working right at this point. Let us know if you still receive &#8220;server not found&#8221; or invalid security certificate issues. We&#8217;ve been monitoring our error logs to make sure things are running smoothly. That said, we would love to know if you discover any bugs on our site.</p>
<p>The one last we haven&#8217;t resolved is accepting credit cards for our supply orders. Our credit card merchant denied our transactions after we changed our server. It makes sense (to prevent fraud), but we didn&#8217;t realize this until after the launch, and are working now to restore online credit card processing. In the meantime, you can place your order online and phone in your credit card number. This should be up and running by the end of the day Tuesday March 18.</p>
<p>That&#8217;s it! Thanks for your patience while we sorted things out. And thanks so much for your great feedback&#8211;it sure makes all the work seem worthwhile!</p>
<p>Harold</p>
]]></content:encoded>
			<wfw:commentRss>http://boxcarpress.com/us/blog/2008/03/17/website-update/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>Our favorite places to wander in the new site</title>
		<link>http://boxcarpress.com/us/blog/2008/03/14/our-favorite-places-to-wander-in-the-new-site/</link>
		<comments>http://boxcarpress.com/us/blog/2008/03/14/our-favorite-places-to-wander-in-the-new-site/#comments</comments>
		<pubDate>Fri, 14 Mar 2008 16:09:22 +0000</pubDate>
		<dc:creator>debbie</dc:creator>
				<category><![CDATA[about Boxcar's site]]></category>

		<guid isPermaLink="false">http://64.71.179.224/us/blog/?p=6</guid>
		<description><![CDATA[We commissioned our favorite photographer-superstar  Doug Lloyd to create  portraits of our presses. The results are sigh-inducing works of true love. You’ll also find stories about our presses’ past lives here. 
 Flurry: a Journal Among the Printers  launches with articles about the eco-green letterpress scene; a profile of fine press genius [...]]]></description>
			<content:encoded><![CDATA[<p>We commissioned our favorite photographer-superstar  Doug Lloyd to create <a href="/us/letterpress.html"> portraits of our presses</a>. The results are sigh-inducing works of true love. You’ll also find stories about our presses’ past lives here. </p>
<p><a href="/community/flurry/"> Flurry: a Journal Among the Printers </a> launches with articles about the eco-green letterpress scene; a profile of fine press genius Walter Hamady; and Hamady’s never before published essay that will inspire and rekindle your passion for printing. </p>
<p><span id="more-6"></span> </p>
<p><a href="/community/letterpress-training-video.html"> The Boxcar Institute Training Series </a> features a heart-thumping letterpress music video that’ll make you want to get down and dance to the beat of your platens. You’ll also find original instructional videos on printing topics like adjusting roller height; setting gauge pins and registering your plate; and makeready. </p>
<p>What press do you love most: the Vandercook, Heidelberg, C&#038;P, or the baby Sigwalt? Take a stand with our <a href="/photopolymer-supplies/boxcar-merchandise.html"> choose-your-press t-shirts</a>.</p>
<p>Check out our <a href="/photopolymer-supplies/index.html"> expanded pressroom and platemaking supplies</a>, including a full line of letterpress inks; letterpress starter kits; and functional-but-fashionable printing aprons. And through a partnership with American Forests, you can purchase a tree during checkout to help global warming (and for every tree you plant, we’ll plant a tree too!). </p>
<p>Become an expert in photopolymer by browsing through our almost <a href="/platemaking/faqs.html"> 100 FAQ’s, many of them new to our site. </p>
<p>See Harold <a href="/us/index.html">jumping over a press </a>in a Central New York soy bean field. </p>
<p>Enjoy <a href="/platemaking/index.jsp">a really cool, streamlined way to submit platemaking orders </a> (you’ll need to create an account first, but it’s worth it!). And place a platemaking order over $100, and we’ll plant a tree for you through a donation to American Forests. </p>
<p>And <a href="/us/blog/index.php"> this blog</a>, which we promise to keep updated with shop photos, cool things we print, and other essentials. </p>
<p>Boxcar friends – do send us photos of your shop, your printing aprons, yourselves. Though we find ourselves somewhat fascinating from time to time, we want this blog to be about you as well as us. </p>
<p>Happy wanderings. </p>
]]></content:encoded>
			<wfw:commentRss>http://boxcarpress.com/us/blog/2008/03/14/our-favorite-places-to-wander-in-the-new-site/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>The new site is live!</title>
		<link>http://boxcarpress.com/us/blog/2008/03/14/the-new-site-is-live/</link>
		<comments>http://boxcarpress.com/us/blog/2008/03/14/the-new-site-is-live/#comments</comments>
		<pubDate>Fri, 14 Mar 2008 15:49:20 +0000</pubDate>
		<dc:creator>debbie</dc:creator>
				<category><![CDATA[about Boxcar's site]]></category>
		<category><![CDATA[Brian Eno]]></category>
		<category><![CDATA[Ides of March]]></category>
		<category><![CDATA[prizes]]></category>
		<category><![CDATA[Vosges dark chocolate]]></category>

		<guid isPermaLink="false">http://64.71.179.224/us/blog/?p=4</guid>
		<description><![CDATA[Welcome to the newly birthed Boxcar Press web site!
Just because we’ve been working on our new web site for most of our lives, please don’t feel obliged to go lovingly through every single section and then call us at 315.473.0930 to read us your favorite parts. You are under no obligation to  send us [...]]]></description>
			<content:encoded><![CDATA[<p>Welcome to the newly birthed Boxcar Press web site!</p>
<p>Just because we’ve been working on our new web site for most of our lives, please don’t feel obliged to go lovingly through every single section and then call us at 315.473.0930 to read us your favorite parts. You are under no obligation to <a href="https://californiaorganicflowers.com/product_91" target="blank"> send us flowers</a>, <a href="http://www.vosgeschocolate.com/product/red_fire_exotic_candy_bar/exotic_candy_bars" target="_blank">dark chocolate with a 70% minimum cocoa content</a>, or <a href="mailto:info@boxcarpress.com">long e-mails</a> to explain how pretty the new site is. Under no means should you allow us to bribe you into memorizing the jsp code, tattooing the urls of  your favorite pages across your elbows, writing poetry about the new site, or mailing us hundreds of gold stars.</p>
<p> <span id="more-4"></span> </p>
<p>What we do hope is that you’ll spend some time, alone, with the site. Do you usually spend the Ides of March with your significant other or your family? Spend that time with our web site instead. Light some candles, put on some mood music (suggestions: <a href="http://en.wikipedia.org/wiki/Music_for_Airports" target="blank">  Brian Eno’s Music for Airports</a>), and rediscover us all over again. How long will this take? The new site is pretty darn large. Should you hurry through it in 30 minutes (which, to be honest, sounds uncomfortably rushed)? Or should you lock yourself in your room for two days, refusing to sleep or even eat so you can take your time? This second option sounds more relaxing and fun to us. And that’s what we’ll be doing this weekend. But it’s your call. Enjoy and happy printing. </p>
<p>P.S. Have you heard about the prizes? Five Boxcar medallions are hidden throughout our site. Find them. Send the urls to us at info@boxcarpress.com. If you&#8217;re one of the first 10 people to do this, you&#8217;ll win fame and a very cool <a href="/photopolymer-supplies/tshirt-vandercook.html" > choose-your-press t-shirt. </a></p>
<p>P.P.S. Also, the first 50 platemaking customers to set up their new accounts and place a platemaking order will receive a custom-made Boxcar printing apron.  </p>
]]></content:encoded>
			<wfw:commentRss>http://boxcarpress.com/us/blog/2008/03/14/the-new-site-is-live/feed/</wfw:commentRss>
		<slash:comments>7</slash:comments>
		</item>
	</channel>
</rss>
