<?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>Antidote Creative</title>
	<atom:link href="http://antidotecreative.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://antidotecreative.com</link>
	<description></description>
	<lastBuildDate>Wed, 09 Nov 2011 02:00:11 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.2.1</generator>
		<item>
		<title>CodeKit</title>
		<link>http://antidotecreative.com/2011/codekit/</link>
		<comments>http://antidotecreative.com/2011/codekit/#comments</comments>
		<pubDate>Wed, 09 Nov 2011 01:58:53 +0000</pubDate>
		<dc:creator>Andrew</dc:creator>
				<category><![CDATA[CSS]]></category>
		<category><![CDATA[Tips]]></category>

		<guid isPermaLink="false">http://antidotecreative.com/?p=136</guid>
		<description><![CDATA[CodeKit automatically compiles Less, Sass, Stylus &#038; CoffeeScript files. It effortlessly combines, minifies and error-checks Javascript. It even optimizes images, auto-reloads your browser and lets you use the same files across many projects.]]></description>
			<content:encoded><![CDATA[<p><a href="http://incident57.com/codekit/" title="CodeKit">CodeKit</a> automatically compiles Less, Sass, Stylus &#038; CoffeeScript files. It effortlessly combines, minifies and error-checks Javascript. It even optimizes images, auto-reloads your browser and lets you use the same files across many projects.</p>
]]></content:encoded>
			<wfw:commentRss>http://antidotecreative.com/2011/codekit/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>WordPress Post Formats Admin UI</title>
		<link>http://antidotecreative.com/2011/wordpress-post-formats-admin-ui/</link>
		<comments>http://antidotecreative.com/2011/wordpress-post-formats-admin-ui/#comments</comments>
		<pubDate>Mon, 31 Oct 2011 10:06:34 +0000</pubDate>
		<dc:creator>Andrew</dc:creator>
				<category><![CDATA[Post Formats]]></category>

		<guid isPermaLink="false">http://antidotecreative.com/?p=134</guid>
		<description><![CDATA[Great implementation of a Post Formats Admin UI that Alex King and his team are working on. I&#8217;ll be looking to adopt this for post format support in this website&#8217;s theme.]]></description>
			<content:encoded><![CDATA[<p>Great implementation of a Post Formats Admin UI that Alex King and his team are working on. I&#8217;ll be looking to adopt this for post format support in this website&#8217;s theme.</p>
]]></content:encoded>
			<wfw:commentRss>http://antidotecreative.com/2011/wordpress-post-formats-admin-ui/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How to fix Typekit fonts that don&#8217;t appear when compiling CSS with LESS</title>
		<link>http://antidotecreative.com/2011/how-to-fix-typekit-fonts-that-dont-appear-when-using-less-to-compile-your-css/</link>
		<comments>http://antidotecreative.com/2011/how-to-fix-typekit-fonts-that-dont-appear-when-using-less-to-compile-your-css/#comments</comments>
		<pubDate>Mon, 31 Oct 2011 02:04:40 +0000</pubDate>
		<dc:creator>Andrew</dc:creator>
				<category><![CDATA[CSS]]></category>
		<category><![CDATA[Tips]]></category>

		<guid isPermaLink="false">http://antidotecreative.com/?p=122</guid>
		<description><![CDATA[Recently I hit a roadblock while trying to load Typekit fonts onto a website. No matter I tried, the fonts wouldn&#8217;t appear and replace the headings I wanted them to. I&#8217;m using LESS to write the CSS and compile it using LESS.app on OS X. Usually the following would have worked: h2 { font-family: gooddog-new-1, gooddog-new-2; } However, [...]]]></description>
			<content:encoded><![CDATA[<p>Recently I hit a roadblock while trying to load <a href="http://www.typekit.com">Typekit</a> fonts onto a website. No matter I tried, the fonts wouldn&#8217;t appear and replace the headings I wanted them to. I&#8217;m using <a href="http://lesscss.org/">LESS</a> to write the CSS and compile it using <a href="http://incident57.com/less/">LESS.app</a> on OS X. Usually the following would have worked:</p>
<pre>h2 {
    font-family: gooddog-new-1, gooddog-new-2;
}</pre>
<p>However, while inspecting the h2 headings with Firebug, the selector was completely empty:</p>
<pre>h2 {
}</pre>
<p>The fix is annoyingly easy. You just need to make sure to escape the CSS so LESS can parse it correctly. I&#8217;m not sure if this is isolated to using LESS.app to compile the CSS, as I haven&#8217;t tried any other method. Interestingly enough, it seems you don&#8217;t have to do this when using <a href="http://www.google.com/webfonts">Google&#8217;s web fonts</a>, they load just fine.</p>
<pre>h2 {
    font-family: ~"gooddog-new-1, gooddog-new-2";
}</pre>
<p>If you would like to use nicer fallbacks for browsers that don&#8217;t support the @font-face rule, you would write it like so:</p>
<pre>h2 {
    font-family: ~"gooddog-new-1, gooddog-new-2", "Helvetica Neue", Helvetica, Arial, sans-serif;
}</pre>
<p>Just remember to only escape the Typekit fonts, and not the entire line. Note the quotation marks already wrapped around &#8220;Helvetica Neue&#8221;.</p>
]]></content:encoded>
			<wfw:commentRss>http://antidotecreative.com/2011/how-to-fix-typekit-fonts-that-dont-appear-when-using-less-to-compile-your-css/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Golden Grid System</title>
		<link>http://antidotecreative.com/2011/golden-grid-system/</link>
		<comments>http://antidotecreative.com/2011/golden-grid-system/#comments</comments>
		<pubDate>Sun, 30 Oct 2011 11:13:35 +0000</pubDate>
		<dc:creator>Andrew</dc:creator>
				<category><![CDATA[CSS]]></category>
		<category><![CDATA[Post Formats]]></category>

		<guid isPermaLink="false">http://antidotecreative.com/?p=115</guid>
		<description><![CDATA[A folding grid for responsive design by Joni Korpi. It&#8217;s helped me immensely so far, thanks Joni!]]></description>
			<content:encoded><![CDATA[<p>A folding grid for responsive design by Joni Korpi. It&#8217;s helped me immensely so far, thanks Joni!</p>
]]></content:encoded>
			<wfw:commentRss>http://antidotecreative.com/2011/golden-grid-system/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>A Responsive WordPress Theme Experiment</title>
		<link>http://antidotecreative.com/2011/a-responsive-wordpress-theme-experiment/</link>
		<comments>http://antidotecreative.com/2011/a-responsive-wordpress-theme-experiment/#comments</comments>
		<pubDate>Fri, 28 Oct 2011 13:47:44 +0000</pubDate>
		<dc:creator>Andrew</dc:creator>
				<category><![CDATA[Notes]]></category>

		<guid isPermaLink="false">http://antidotecreative.com/?p=31</guid>
		<description><![CDATA[Ever since reading Ethan Marcotte&#8217;s book on Responsive Web Design, I&#8217;ve wanted to build a website that could adapt to any device it&#8217;s being viewed on. With an ever growing interest in WordPress, I decided to replace my ageing website with the WordPress theme you currently see. I&#8217;ll be updating it as I go, so subscribe [...]]]></description>
			<content:encoded><![CDATA[<p>Ever since reading Ethan Marcotte&#8217;s book on <a href="http://www.abookapart.com/products/responsive-web-design">Responsive Web Design</a>, I&#8217;ve wanted to build a website that could adapt to any device it&#8217;s being viewed on. With an ever growing interest in WordPress, I decided to replace my ageing website with the WordPress theme you currently see.</p>
<p>I&#8217;ll be updating it as I go, so subscribe to my mailing list and I&#8217;ll let you know when it&#8217;s finished. You&#8217;ll also have a chance to snag a free copy.</p>
]]></content:encoded>
			<wfw:commentRss>http://antidotecreative.com/2011/a-responsive-wordpress-theme-experiment/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

<!-- Performance optimized by W3 Total Cache. Learn more: http://www.w3-edge.com/wordpress-plugins/

Page Caching using disk (enhanced)
Object Caching 369/443 objects using disk

Served from: antidotecreative.com @ 2012-02-23 02:16:29 -->
