<?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:slash="http://purl.org/rss/1.0/modules/slash/" 
>

<channel>
	<title>archGFX &#187; design</title>
	<atom:link href="http://archgfx.net/blog/category/design/feed" rel="self" type="application/rss+xml" />
	<link>http://archgfx.net</link>
	<description>Austin web designer - Adam Freetly</description>
	<pubDate>Sat, 06 Sep 2008 14:41:16 +0000</pubDate>
	<generator>http://wordpress.org/?v=2.6.1</generator>
	<language>en</language>
			<item>
		<title>A List Apart &#124; The Survey 2008: I Took It</title>
		<link>http://archgfx.net/blog/2008/asides/a-list-apart-the-survey-2008-i-took-it</link>
		<comments>http://archgfx.net/blog/2008/asides/a-list-apart-the-survey-2008-i-took-it#comments</comments>
		<pubDate>Tue, 29 Jul 2008 13:20:28 +0000</pubDate>
		<dc:creator>adam</dc:creator>
		
		<category><![CDATA[Asides]]></category>

		<category><![CDATA[design]]></category>

		<category><![CDATA[web design]]></category>

		<guid isPermaLink="false">http://archgfx.net/?p=1336</guid>
		<description><![CDATA[
Other posts you might like ...Walk in the Shadows for Wordpress.comPromised Land for Wordpress.comCompetition EntriesDisconnected 1.2]]></description>
			<content:encoded><![CDATA[<p><a title="The Web Design Survey, 2008" href="http://www.alistapart.com/articles/survey2008"><img src="http://aneventapart.com/webdesignsurvey/templates/ala/images/i-took-the-2008-survey.gif" alt="" /></a></p>
<h3>Other posts you might like ...</h3><ul class="related_post"><li><a href="http://archgfx.net/blog/2007/design/walk-in-the-shadows-for-wordpresscom" title="Walk in the Shadows for Wordpress.com">Walk in the Shadows for Wordpress.com</a></li><li><a href="http://archgfx.net/blog/2007/design/promised-land-for-wordpresscom" title="Promised Land for Wordpress.com">Promised Land for Wordpress.com</a></li><li><a href="http://archgfx.net/blog/2007/design/competition-entries" title="Competition Entries">Competition Entries</a></li><li><a href="http://archgfx.net/blog/2007/design/disconnected-12" title="Disconnected 1.2">Disconnected 1.2</a></li></ul>]]></content:encoded>
			<wfw:commentRss>http://archgfx.net/blog/2008/asides/a-list-apart-the-survey-2008-i-took-it/feed</wfw:commentRss>
	<slash:comments>1</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, [...]]]></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 name="code" class="css">

.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>
<h3>Other posts you might like ...</h3><ul class="related_post"><li><a href="http://archgfx.net/blog/2007/design/competition-entries" title="Competition Entries">Competition Entries</a></li><li><a href="http://archgfx.net/blog/2008/chicago/in-defence-of-my-absence" title="In Defence of my Absence">In Defence of my Absence</a></li><li><a href="http://archgfx.net/blog/2007/geek/link-spam-in-wp23" title="Link Spam in WP2.3">Link Spam in WP2.3</a></li><li><a href="http://archgfx.net/blog/2007/geek/i-%e2%99%a5-redirection" title="I ♥ Redirection">I ♥ Redirection</a></li></ul>]]></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>Graded.</title>
		<link>http://archgfx.net/blog/2008/geek/blogging/graded</link>
		<comments>http://archgfx.net/blog/2008/geek/blogging/graded#comments</comments>
		<pubDate>Sun, 30 Mar 2008 03:22:31 +0000</pubDate>
		<dc:creator>adam</dc:creator>
		
		<category><![CDATA[blogging]]></category>

		<category><![CDATA[design]]></category>

		<category><![CDATA[2.5]]></category>

		<category><![CDATA[dashboard]]></category>

		<category><![CDATA[usability]]></category>

		<category><![CDATA[wordpress]]></category>

		<guid isPermaLink="false">http://archgfx.net/?p=1298</guid>
		<description><![CDATA[I wouldn't say up-graded, but WordPress 2.5 is definitely different.  I feel the need to punish myself thusly, since wordpress is now my day job, besides my 'hobby' of supporting the themes I've developed.  I've been playing with the SVN upgrades for a month or so now, making sure my themes work.  [...]]]></description>
			<content:encoded><![CDATA[<p>I wouldn't say up-graded, but <a href="http://wordpress.org/development/2008/03/wordpress-25-brecker/">WordPress 2.5</a> is definitely different.  I feel the need to punish myself thusly, since wordpress is now my day job, besides my 'hobby' of supporting the themes I've developed.  I've been playing with the SVN upgrades for a month or so now, making sure my themes work.  While I was working on Disconnected, my frustration came to a head:</p>
<p><a href="http://archgfx.net/wp-content/uploads/2008/03/errors.gif"><img class="center size-medium wp-image-1299" title="Color Issues" src="http://archgfx.net/wp-content/uploads/2008/03/errors-300x194.gif" alt="Which one is the error?" width="300" height="194" /></a></p>
<p>In that screenshot, there is:</p>
<ol>
<li>A list of things you can do right now</li>
<li>A list of statistics about your blog's history</li>
<li><em>A Message alerting you to upgrade your theme</em>.</li>
</ol>
<p>Guess which one's the alert (*hint: it's not the red one*) ?  I was wrong: nearly all of <a href="http://www.noscope.com/journal/2008/01/wordpress-habari-and-the-iphone">Joen's comments about the wordpress admin</a> are still valid.  Among the other things that I am incredulous that a professional design firm chose:  The <a href="http://www.webpagesthatsuck.com/mysterymeatnavigation.html">mystery meat navigation</a> above the post area:</p>
<p><a href="http://archgfx.net/wp-content/uploads/2008/03/mmn.jpg"><img class="center size-full wp-image-1300" title="Mystery Meat Navigation" src="http://archgfx.net/wp-content/uploads/2008/03/mmn.jpg" alt="What do the icons mean?" width="272" height="93" /></a></p>
<p>Let's be honest: Even if I could tell what the hell those first two images were supposed to represent, years of using Word, WordPerfect, and OpenOffice have taught me to click on the tree when I want to insert a picture.  Why is the same tree there, if it doesn't mean the same thing?</p>
<p>It's disheartening that the design of the dashboard goes on completely behind closed doors, when everyone keeps talking about how big the community has become.  Yes, allowing people to comment directly on the photoshop mocks before coding them out might have yielded a lot of stupid comments, and possibly taken forever.</p>
<p>But listening to the valid comments might have prevented this.  After all that money and effort, <a href="http://www.deanjrobinson.com/projects/fluency-admin/">Fluency is here</a>, taking over for <a href="http://aenonfiredesign.com/blog/afd-wordpress2-admin-theme">AFD admin</a> as my monochromatic dashboard of choice.  And it does usability better than the default.</p>
<h3>Other posts you might like ...</h3><ul class="related_post"><li><a href="http://archgfx.net/blog/2008/chicago/in-defence-of-my-absence" title="In Defence of my Absence">In Defence of my Absence</a></li><li><a href="http://archgfx.net/blog/2007/geek/link-spam-in-wp23" title="Link Spam in WP2.3">Link Spam in WP2.3</a></li><li><a href="http://archgfx.net/blog/2007/geek/i-%e2%99%a5-redirection" title="I ♥ Redirection">I ♥ Redirection</a></li><li><a href="http://archgfx.net/blog/2007/design/competition-entries" title="Competition Entries">Competition Entries</a></li></ul>]]></content:encoded>
			<wfw:commentRss>http://archgfx.net/blog/2008/geek/blogging/graded/feed</wfw:commentRss>
	<slash:comments>2</slash:comments>
	</item>
		<item>
		<title>In Defence of my Absence</title>
		<link>http://archgfx.net/blog/2008/chicago/in-defence-of-my-absence</link>
		<comments>http://archgfx.net/blog/2008/chicago/in-defence-of-my-absence#comments</comments>
		<pubDate>Wed, 30 Jan 2008 14:30:08 +0000</pubDate>
		<dc:creator>adam</dc:creator>
		
		<category><![CDATA[chicago]]></category>

		<category><![CDATA[design]]></category>

		<category><![CDATA[2.0]]></category>

		<category><![CDATA[blueprint]]></category>

		<category><![CDATA[flash]]></category>

		<category><![CDATA[wordpress]]></category>

		<category><![CDATA[work]]></category>

		<guid isPermaLink="false">http://archgfx.net/blog/2008/chicago/in-defence-of-my-absence</guid>
		<description><![CDATA[I haven't been exactly forthcoming with posts this month.  I haven't been lazy, though.  Most of the free time I would normally devote to posting has been spent working on our office's new site.  I think the results are well worth the effort, but click the screenshot to see for yourself:

My design [...]]]></description>
			<content:encoded><![CDATA[<p>I haven't been exactly forthcoming with posts this month.  I haven't been lazy, though.  Most of the free time I would normally devote to posting has been spent working on our office's new site.  I think the results are well worth the effort, but click the screenshot to see for yourself:</p>
<p><a href="http://blueprintds.com/" title="Chicago Web Design Firm"><img src="http://archgfx.net/wp-content/uploads/2008/01/bpds.jpg" alt="Blueprint Design Studio" /></a></p>
<p>My design was the last in a long line of remixes by everyone in the office.  Basically, I poured the trendy web 2.0 juice on top of everyone else's designs <img src='http://archgfx.net/wp-includes/images/smilies/icon_razz.gif' alt=':P' class='wp-smiley' /> <a href="http://www.patrickholbrook.com/" title="Patrick Holbrook">Patrick H.</a> did the really kick-ass blur in the flash menu.  I find myself playing with that for far too long.  Check it out, and <a href="http://blueprintds.com/2008/01/29/launch-of-blueprint-designs-new-site-and-blog/" title="Our First Blog Post">tell us what you think</a>.  Now that the site's done, I'll be posting the promised "beginner" wordpress tutorials starting later this week.</p>
<h3>Other posts you might like ...</h3><ul class="related_post"><li><a href="http://archgfx.net/blog/2007/geek/link-spam-in-wp23" title="Link Spam in WP2.3">Link Spam in WP2.3</a></li><li><a href="http://archgfx.net/blog/2007/geek/i-%e2%99%a5-redirection" title="I ♥ Redirection">I ♥ Redirection</a></li><li><a href="http://archgfx.net/blog/2007/design/competition-entries" title="Competition Entries">Competition Entries</a></li><li><a href="http://archgfx.net/blog/2007/design/disconnected-12" title="Disconnected 1.2">Disconnected 1.2</a></li></ul>]]></content:encoded>
			<wfw:commentRss>http://archgfx.net/blog/2008/chicago/in-defence-of-my-absence/feed</wfw:commentRss>
	<slash:comments>26</slash:comments>
	</item>
		<item>
		<title>Buckshot Ep. 8: Release</title>
		<link>http://archgfx.net/blog/2007/geek/blogging/buckshot-ep-8-release</link>
		<comments>http://archgfx.net/blog/2007/geek/blogging/buckshot-ep-8-release#comments</comments>
		<pubDate>Fri, 14 Dec 2007 02:11:03 +0000</pubDate>
		<dc:creator>adam</dc:creator>
		
		<category><![CDATA[blogging]]></category>

		<category><![CDATA[design]]></category>

		<category><![CDATA[blueprint]]></category>

		<category><![CDATA[fauna]]></category>

		<category><![CDATA[GPL]]></category>

		<category><![CDATA[movable-type]]></category>

		<category><![CDATA[release]]></category>

		<category><![CDATA[wordpress]]></category>

		<guid isPermaLink="false">http://archgfx.net/blog/2007/geek/blogging/buckshot-ep-8-release</guid>
		<description><![CDATA[
The Moose is Loose!  Joen has released Fauna 1.0 Final(ly)  - I doubt Andy's response carries much weight for wordpress.com after a year and a half, but hey,  fauna's still a great theme.
Also overdue, but less so:  Movable Type OS has been released.  WP-super-cache and MT-Burn plugins make it less different from WordPress than it [...]]]></description>
			<content:encoded><![CDATA[<ul>
<li>The Moose is Loose!  Joen has released <a href="http://www.noscope.com/fauna/2007/12/fauna-10-final">Fauna 1.0 Final</a>(ly)  - I doubt <a href="http://en.forums.wordpress.com/topic.php?id=1931&amp;page=2&amp;replies=42#post-13577">Andy's response</a> carries much weight for wordpress.com after a year and a half, but hey,  fauna's still a great theme.</li>
<li>Also overdue, but less so:  <a href="http://www.movabletype.org/2007/12/movable_type_open_source.html">Movable Type OS has been released</a>.  <a href="http://ocaoimh.ie/wp-super-cache/">WP-super-cache</a> and MT-Burn plugins make it less different from WordPress than it used to be.  It's still great to see competition.  Especially in the area of <a href="http://www.movabletype.org/documentation/enterprise/creating-a-sql-server-database.html">database</a> <a href="http://www.movabletype.org/documentation/installation/system-requirements.html#more">agnosticism</a>.</li>
<li>This may be my last post of the year.  As of Monday I'm off to  spend the holidays in England and Belgium.</li>
<li>When I return, the WordPress-powered re-launch of <a href="http://blueprintds.com/" title="Chicago Web Design Firm">Blueprint</a>'s website should be live.  It's looking pretty hot, but there's still a lot of work left.  Eric and I will be writing resources to help clients understand what they can do with their WordPress sites in the blog, and they should be pretty useful to anyone just starting out with WordPress.</li>
</ul>
<h3>Other posts you might like ...</h3><ul class="related_post"><li><a href="http://archgfx.net/blog/2008/chicago/in-defence-of-my-absence" title="In Defence of my Absence">In Defence of my Absence</a></li><li><a href="http://archgfx.net/blog/2007/geek/link-spam-in-wp23" title="Link Spam in WP2.3">Link Spam in WP2.3</a></li><li><a href="http://archgfx.net/blog/2007/geek/i-%e2%99%a5-redirection" title="I ♥ Redirection">I ♥ Redirection</a></li><li><a href="http://archgfx.net/blog/2007/design/competition-entries" title="Competition Entries">Competition Entries</a></li></ul>]]></content:encoded>
			<wfw:commentRss>http://archgfx.net/blog/2007/geek/blogging/buckshot-ep-8-release/feed</wfw:commentRss>
	<slash:comments>3</slash:comments>
	</item>
	</channel>
</rss>
