<?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>archGFX &#187; themes</title>
	<atom:link href="http://archgfx.net/tag/themes/feed" rel="self" type="application/rss+xml" />
	<link>http://archgfx.net</link>
	<description>Austin web designer - Adam Freetly</description>
	<lastBuildDate>Thu, 19 Apr 2012 18:01:04 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.2</generator>
		<item>
		<title>Yet Another Theme Repository</title>
		<link>http://archgfx.net/blog/2008/asides/yet-another-theme-repository</link>
		<comments>http://archgfx.net/blog/2008/asides/yet-another-theme-repository#comments</comments>
		<pubDate>Fri, 18 Jul 2008 16:58:36 +0000</pubDate>
		<dc:creator>adam</dc:creator>
				<category><![CDATA[Asides]]></category>
		<category><![CDATA[design]]></category>
		<category><![CDATA[themes]]></category>
		<category><![CDATA[wordpress]]></category>

		<guid isPermaLink="false">http://archgfx.net/?p=1326</guid>
		<description><![CDATA[At long last, the formerly dead themes.wordpress.net repository is open-ish again.  Disconnected and Dream in Infrared have been uploaded, and are awaiting approval.  Promised Land, Walk in the Shadows, and The Thin Line may be uploaded later, if TEMPLATE: sandbox themes will work with the new system.  Bus Full of Hippies will naturally be excluded, [...]]]></description>
			<content:encoded><![CDATA[<p>At long last, the formerly dead <a href="http://wordpress.org/development/2008/07/theme-directory/">themes.wordpress.net repository</a> is open-ish again.  Disconnected and Dream in Infrared have been uploaded, and are awaiting approval.  Promised Land, Walk in the Shadows, and The Thin Line may be uploaded later, if <code>TEMPLATE: sandbox</code> themes will work with the new system.  Bus Full of Hippies will naturally be excluded, <a href="http://www.headsetoptions.org/2008/07/18/theme-viewer-alternative-at-httpwordpressorgextendthemes/">due to its <acronym title='GNU General Public License'><span class='caps'>GPL</span></acronym>-incompatability</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://archgfx.net/blog/2008/asides/yet-another-theme-repository/feed</wfw:commentRss>
		<slash:comments>8</slash:comments>
		</item>
		<item>
		<title>New Competencies for Theme Designers</title>
		<link>http://archgfx.net/blog/2008/geek/blogging/new-competencies-for-theme-designers</link>
		<comments>http://archgfx.net/blog/2008/geek/blogging/new-competencies-for-theme-designers#comments</comments>
		<pubDate>Mon, 31 Mar 2008 19:26:08 +0000</pubDate>
		<dc:creator>adam</dc:creator>
				<category><![CDATA[blogging]]></category>
		<category><![CDATA[design]]></category>
		<category><![CDATA[2.5]]></category>
		<category><![CDATA[CSS]]></category>
		<category><![CDATA[semantics]]></category>
		<category><![CDATA[themes]]></category>
		<category><![CDATA[web-standards]]></category>
		<category><![CDATA[wordpress]]></category>

		<guid isPermaLink="false">http://archgfx.net/?p=1302</guid>
		<description><![CDATA[WordPress 2.5's new image uploader solves the longstanding bug of using deprecated XHTML attributes to float images (align="left", etc.), rather than it being done in CSS. This is handled by applying classes to the image when it's inserted into the post, rather than via inline CSS. This is good, in terms of semantics, clean markup, [...]]]></description>
			<content:encoded><![CDATA[<p>WordPress 2.5's new image uploader solves the <a href="http://trac.wordpress.org/ticket/3618">longstanding bug</a> of using deprecated <acronym title='eXtensible HyperText Markup Language'><span class='caps'>XHTML</span></acronym> attributes to float images (<code>align="left"</code>, etc.), rather than it being done in <acronym title='Cascading Style Sheets'><span class='caps'>CSS</span></acronym>.  This is handled by applying classes to the image when it's inserted into the post, rather than via inline <acronym title='Cascading Style Sheets'><span class='caps'>CSS</span></acronym>.  This is good, in terms of semantics, clean markup, and separating presentation from content. It's something that <a href="http://www.plaintxt.org/2007/01/22/special-classes-in-themes/">Scott suggested a while back</a>, that I've been building into my themes and designs since.</p>
<p>This places the responsibility on theme authors to support the new classes. They are:</p>
<ul>
<li><code>alignleft</code></li>
<li><code>alignright</code></li>
<li><code>aligncenter</code></li>
</ul>
<p>I'm not convinced of the need for the align prefix, but it's great progress nonetheless.  If your theme doesn't support those classes, here's the code you can insert at the end to handle them:</p>
<pre><code>
<pre class="brush: css; title: ; notranslate">
.alignleft,.left {
	float:left;
	margin: 0.5em;
}
.alignright,.right {
	float:right;
	margin: 0.5em;
}
.aligncenter, .center {
	display: block;
	text-align: center;
	margin: 0 auto;
}
</pre>
<p></code></pre>
]]></content:encoded>
			<wfw:commentRss>http://archgfx.net/blog/2008/geek/blogging/new-competencies-for-theme-designers/feed</wfw:commentRss>
		<slash:comments>11</slash:comments>
		</item>
		<item>
		<title>Buckshot Ep. 9: Themes</title>
		<link>http://archgfx.net/blog/2008/geek/blogging/buckshot-ep-9-themes</link>
		<comments>http://archgfx.net/blog/2008/geek/blogging/buckshot-ep-9-themes#comments</comments>
		<pubDate>Mon, 18 Feb 2008 14:26:36 +0000</pubDate>
		<dc:creator>adam</dc:creator>
				<category><![CDATA[blogging]]></category>
		<category><![CDATA[charcoal]]></category>
		<category><![CDATA[competitions]]></category>
		<category><![CDATA[disconnected]]></category>
		<category><![CDATA[gravatars]]></category>
		<category><![CDATA[habari]]></category>
		<category><![CDATA[themes]]></category>
		<category><![CDATA[wordpress]]></category>

		<guid isPermaLink="false">http://archgfx.net/blog/2008/geek/blogging/buckshot-ep-9-themes</guid>
		<description><![CDATA[Disconnected 1.3 is out. It includes support for WordPress 2.3's native tagging, and preliminary support for WordPress 2.5's get_avatar() function. I know I said I'd never support gravatars1, but since they're going native in 2.5, there's no point in fighting anymore. At least once 2.5 is released, I can write a plugin to use MyBlogLog [...]]]></description>
			<content:encoded><![CDATA[<ul>
<li><img src="http://disconnected.sf.net/wp-content/themes/disconnected/img/user.gif" alt="default gravatar image" style="width: 32px; height: 32px" class="left" align="left" height="32" width="32" /><a href="https://sourceforge.net/project/platformdownload.php?group_id=188321&amp;sel_platform=201" title="Download from sourceforge">Disconnected 1.3 is out</a>.   It includes support for WordPress 2.3's native tagging, and preliminary support for WordPress 2.5's <code>get_avatar()</code> function.  I know I said I'd never support gravatars<a href="#footnote-1-1287" id="footnote-link-1-1287" title="See the footnote.">1</a>, but since they're going native in 2.5, there's no point in fighting anymore.  At least once 2.5 is released, I can write a plugin to use <a href="http://developer.yahoo.com/mybloglog">MyBlogLog Avatars</a> instead.</li>
<li>The design vitality WordPress Theme Contest ended, <a href="http://www.designvitality.com/blog/2008/01/and-the-award-goes-to/">with some actual results</a>.  I'm kind of shocked.  But then, they did add their own spammy footer link to the themes, which is also shocking, but more what I expected from the outset.</li>
<li>The Lunarpages contest, however, <a href="http://blog.lunarpages.com/2008/01/23/final-12-entries-wordpress-design-contest/">has not yet published results</a>.  This is because, like the many wordpress theme contests before it, it has ended in bitterness and accusations.</li>
<li><a href="http://www.flickr.com/photos/dmondark/2265382720/"><img src="http://farm3.static.flickr.com/2263/2265382720_86431069cb_s.jpg" alt="charcoal theme for habari" style="width: 75px; height: 75px" class="left" align="left" height="75" width="75" /></a>There's a new theme for <a href="http://habariproject.org">habari</a>, I think it's the <a href="http://wiki.habariproject.org/en/Available_Themes">first fully original theme</a>.  It's a beauty, evoking the sleek monochromatic habari dashboard, and including a bunch of custom plugins.  <a href="http://code.google.com/p/charcoal/wiki/Charcoal">It's called Charcoal</a>, and it's hosted on google code, although the code isn't up there, so there's no SVN updating.</li>
</ul>
<br /><ol class="footnotes"><li id="footnote-1-1287">Since they provide identity without authentication, a sure recipe for abuse  <a href="#footnote-link-1-1287"></a></li></ol>]]></content:encoded>
			<wfw:commentRss>http://archgfx.net/blog/2008/geek/blogging/buckshot-ep-9-themes/feed</wfw:commentRss>
		<slash:comments>5</slash:comments>
		</item>
		<item>
		<title>Theme Competitions</title>
		<link>http://archgfx.net/blog/2007/geek/blogging/theme-competitions</link>
		<comments>http://archgfx.net/blog/2007/geek/blogging/theme-competitions#comments</comments>
		<pubDate>Thu, 06 Dec 2007 20:29:20 +0000</pubDate>
		<dc:creator>adam</dc:creator>
				<category><![CDATA[blogging]]></category>
		<category><![CDATA[design]]></category>
		<category><![CDATA[competition]]></category>
		<category><![CDATA[themes]]></category>
		<category><![CDATA[wordpress]]></category>

		<guid isPermaLink="false">http://archgfx.net/blog/2007/geek/blogging/theme-competitions</guid>
		<description><![CDATA[In true wordpress theme competition tradition, Lunarpages is launching a contest, overlapping with Design Vitality contest. Not that many people were entering that one, I guess I wasn't the only one who thought it sounded like a scam. Lunarpages at least has a decent start on terms and conditions. Depending on how much free time [...]]]></description>
			<content:encoded><![CDATA[<p>In true wordpress theme competition tradition,  <a href="http://blog.lunarpages.com/wordpress_themes_contest.php">Lunarpages is launching a contest</a>, overlapping with <a href="http://www.designvitality.com/blog/wordpress-theme-competition/">Design Vitality contest</a>.  Not that <a href="http://wank.wordpress.com/2007/11/27/it-having-been-established-on-multiple-previous-occasions-that-i-am-a-sucker/#comment-82910">many people were entering that one</a>, I guess <a href="http://www.sndbx.org/forums/viewtopic.php?pid=1092#p1092">I wasn't the only one who thought it sounded like a scam</a>.  Lunarpages at least has a <a href="http://blog.lunarpages.com/wordpress_themes_contest_terms.php">decent start on terms and conditions</a>.  Depending on how much free time I have, what with being in Europe for the last half of this month, I may enter.  Then again, if I haven't finished a theme by February, it's probably not worth finishing <img src='http://archgfx.net/wp-includes/images/smilies/icon_wink.gif' alt=';)' class='wp-smiley' /> </p>
<p><cite>h/t <a href="http://alexking.org/blog/2007/12/06/lunarpages-wordpress-theme-contest">Alex King</a></cite></p>
]]></content:encoded>
			<wfw:commentRss>http://archgfx.net/blog/2007/geek/blogging/theme-competitions/feed</wfw:commentRss>
		<slash:comments>8</slash:comments>
		</item>
		<item>
		<title>Selling A GPL product is a bad idea</title>
		<link>http://archgfx.net/blog/2007/geek/blogging/selling-a-gpl-product-is-a-bad-idea</link>
		<comments>http://archgfx.net/blog/2007/geek/blogging/selling-a-gpl-product-is-a-bad-idea#comments</comments>
		<pubDate>Fri, 02 Nov 2007 14:20:17 +0000</pubDate>
		<dc:creator>adam</dc:creator>
				<category><![CDATA[blogging]]></category>
		<category><![CDATA[free beer fundamentalists]]></category>
		<category><![CDATA[GPL]]></category>
		<category><![CDATA[themes]]></category>
		<category><![CDATA[wordpress.com]]></category>

		<guid isPermaLink="false">http://archgfx.net/blog/2007/geek/blogging/selling-a-gpl-product-is-a-bad-idea</guid>
		<description><![CDATA[I would not think this sort of thing would need to be explained to someone like matt mullenweg. Here's the comment I left on his blog, which will probably not make it past the great firewall of matt: I think I'm missing something - so I make this "killer" GPL, CSS only theme. you sell [...]]]></description>
			<content:encoded><![CDATA[<p>I would not think this sort of thing would need to be <a href="http://www.readwriteweb.com/archives/wordpress_launching_theme_mark.php">explained to</a> someone like matt mullenweg. Here's <a href="http://photomatt.net/2007/11/01/wpcom-marketplace-idea/#comments">the comment I left on his blog</a>, <strike>which will probably not make it past <q cite="http://wank.wordpress.com/2007/10/17/you-dont-know-youre-born-a-baby-squirrels-special/">the great firewall of matt</q></strike>:</p>
<blockquote cite="http://photomatt.net/2007/11/01/wpcom-marketplace-idea"><p>I think I'm missing something -<br />
so I make this "killer" <acronym title='GNU General Public License'><span class='caps'>GPL</span></acronym>, <acronym title='Cascading Style Sheets'><span class='caps'>CSS</span></acronym> only theme. you sell it for $50, on the premise that it's not a generic XXL poncho (I know you said pink, but what you meant was gray with a blue hood). Immediately on release, any self-hosted blog can download it and install it themselves. Since it's <acronym title='Cascading Style Sheets'><span class='caps'>CSS</span></acronym>-only, anyone on wordpress.com can pay for the <acronym title='Cascading Style Sheets'><span class='caps'>CSS</span></acronym> Upgrade and start using it. Suddenly it seems like my theme is another XXL poncho, and the guy who bought it trying to get a unique design is seriously screwed.<br />
I must be thinking about this wrong.</p></blockquote>
<p>It's not that there aren't perfectly valid revenue models based on the <acronym title='GNU General Public License'><span class='caps'>GPL</span></acronym>. It's just that this is the <em>only one</em> that isn't.  Once a <acronym title='GNU General Public License'><span class='caps'>GPL</span></acronym> slice of code is released<a href="#footnote-1-1233" id="footnote-link-1-1233" title="See the footnote.">1</a> , it can be redistributed by everyone. There are (very few) projects that actually sell <acronym title='GNU General Public License'><span class='caps'>GPL</span></acronym>-ed code.  <a href="http://xchat.org/windows/">X-chat for windows</a> is the one that comes to mind. It works because compiling source code on windows is such a pain.  The more viable methods of making money from <acronym title='GNU General Public License'><span class='caps'>GPL</span></acronym> software include selling support<a href="#footnote-2-1233" id="footnote-link-2-1233" title="See the footnote.">2</a>, and selling proprietary add-ons.</p>
<p>The way the latter option works with wordpress themes is that the underlying <acronym title='PHP Hypertext Processor'><span class='caps'>PHP</span></acronym> has to be <acronym title='GNU General Public License'><span class='caps'>GPL</span></acronym>, but the <acronym title='Cascading Style Sheets'><span class='caps'>CSS</span></acronym> can be any license.  Matt, instead is looking for <acronym title='Cascading Style Sheets'><span class='caps'>CSS</span></acronym>-only, <acronym title='GNU General Public License'><span class='caps'>GPL</span></acronym> themes.  This gets extra bizarre in that any <acronym title='Cascading Style Sheets'><span class='caps'>CSS</span></acronym>-only theme can be implemented by anyone with the <a href="http://wordpress.com/products/custom-css/"><acronym title='Cascading Style Sheets'><span class='caps'>CSS</span></acronym> upgrade</a>.  Since the themes are <acronym title='GNU General Public License'><span class='caps'>GPL</span></acronym>, automattic can't even legally suggest that they shouldn't do that.</p>
<p><a href="http://www.wpdesigner.com/2007/09/21/what-else-is-there-for-wordpress-designers/">Designing premium themes is already a tough market</a>. At least designers willing to handle the storefront themselves aren't further hampered by having to open-source their graphics. Arpit is right to <a href="http://www.clazh.com/wordpress-to-launch-theme-marketplace-all-themes-to-be-gpl/">question the sensibility of such a marketplace</a>, and <a href="http://www.problogdesign.com/general-tips/paid-theme-directory-is-fine-by-me/">Michael Martin reaches a similar conclusion</a>.</p>
<br /><ol class="footnotes"><li id="footnote-1-1233">Meaning, once it's been bought, but in this context, Matt is saying that it will also be made available to self-hosted users  <a href="#footnote-link-1-1233"></a></li><li id="footnote-2-1233"><acronym title='Cascading Style Sheets'><span class='caps'>CSS</span></acronym> support on wordpress.com is currently volunteer-only, staff refuse to touch it  <a href="#footnote-link-2-1233"></a></li></ol>]]></content:encoded>
			<wfw:commentRss>http://archgfx.net/blog/2007/geek/blogging/selling-a-gpl-product-is-a-bad-idea/feed</wfw:commentRss>
		<slash:comments>16</slash:comments>
		</item>
	</channel>
</rss>

