<?xml version="1.0" encoding="UTF-8"?>
<?xml-stylesheet type="text/xsl" media="screen" href="/~d/styles/rss2full.xsl"?><?xml-stylesheet type="text/css" media="screen" href="http://feeds.feedburner.com/~d/styles/itemcontent.css"?><rss 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/" xmlns:feedburner="http://rssnamespace.org/feedburner/ext/1.0" version="2.0">

<channel>
	<title>Greg Rickaby dESIGN</title>
	
	<link>http://gregrickaby.com</link>
	<description>PSD to Thesis</description>
	<lastBuildDate>Tue, 03 Nov 2009 20:42:06 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.8.5</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<image><link>http://gregrickaby.com</link><url>http://gregrickaby.com//public_html/gregrickaby/wp-content/themes/thesis/custom/images/greg-rickaby-rss-icon.gif</url><title>Greg Rickaby dESIGN</title></image><atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="self" href="http://feeds.feedburner.com/gregrickaby" type="application/rss+xml" /><feedburner:emailServiceId>gregrickaby</feedburner:emailServiceId><feedburner:feedburnerHostname>http://feedburner.google.com</feedburner:feedburnerHostname><atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="hub" href="http://pubsubhubbub.appspot.com" /><item>
		<title>How To: Add/Remove Thesis Elements using custom_functions.php</title>
		<link>http://feedproxy.google.com/~r/gregrickaby/~3/B14vq57hkgg/add-and-remove-thesis-elements.html</link>
		<comments>http://gregrickaby.com/2009/11/add-and-remove-thesis-elements.html#comments</comments>
		<pubDate>Tue, 03 Nov 2009 20:34:15 +0000</pubDate>
		<dc:creator>Greg Rickaby</dc:creator>
				<category><![CDATA[Tutorials]]></category>
		<category><![CDATA[Customization]]></category>
		<category><![CDATA[Thesis]]></category>
		<category><![CDATA[Thesis Tutorials]]></category>

		<guid isPermaLink="false">http://gregrickaby.com/?p=2893</guid>
		<description><![CDATA[If you&#8217;re designing Thesis skins for clients on your own test server, you will find yourself doing a lot of redundant
work when it comes time to export to a live server. I will show you how to add/remove Thesis elements to save
you this headache.


In custom_functions.php you can copy &#38; paste any of these snippets after [...]]]></description>
			<content:encoded><![CDATA[<p></p><div class="tweetmeme_button" style="float: right; margin-right: 0px; padding: 10px;"><a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fgregrickaby.com%2F2009%2F11%2Fadd-and-remove-thesis-elements.html"><img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fgregrickaby.com%2F2009%2F11%2Fadd-and-remove-thesis-elements.html" height="61" width="51" /></a></div><p>If you&#8217;re designing Thesis skins for clients on your own test server, you will find yourself doing a lot of redundant<br />
work when it comes time to export to a live server. I will show you how to add/remove Thesis elements to save<br />
you this headache.</p>
<p><a href="http://gregrickaby.com/2009/11/add-and-remove-thesis-elements.html"><img title="add-and-remove-thesis-elements" src="http://gregrickaby.com/wp-content/uploads/2009/11/add-and-remove-thesis-elements.jpg" alt="add-and-remove-thesis-elements" width="640" height="200" /></a></p>
<p><img title="More..." src="http://gregrickaby.com/wp-includes/js/tinymce/plugins/wordpress/img/trans.gif" alt="" /></p>
<p>In custom_functions.php you can copy &amp; paste any of these snippets after the <strong><span style="color: #993300;">&lt;?php</span></strong></p>
<p><strong>Nav Menu</strong><br />
<code>remove_action('thesis_hook_before_header', 'thesis_nav_menu');</code></p>
<p><strong>Header (Title &amp; Tag-line)</strong><br />
<code>remove_action('thesis_hook_header', 'thesis_default_header');</code></p>
<p><strong>Post Tags</strong><br />
<code>remove_action('thesis_hook_after_post', 'thesis_post_tags');</code></p>
<p><strong>Comment Link</strong><br />
<code>remove_action('thesis_hook_after_post', 'thesis_comments_link');</code></p>
<p><strong>Post Navigation</strong><br />
<code>remove_action('thesis_hook_after_content', 'thesis_post_navigation');</code></p>
<p><strong>Previous/next post navigation</strong><br />
<code>remove_action('thesis_hook_after_content', 'thesis_prev_next_posts');</code></p>
<p><strong>Subscribe to Comments plugin compatibility</strong> (If you’re using the &#8220;Subscribe to Comments&#8221; <a href="http://wordpress.org/extend/plugins/subscribe-to-comments/" target="_blank">plugin</a>)<br />
<code>remove_action('thesis_hook_comment_form', 'show_subscription_checkbox');</code></p>
<p><strong>Archive page information box</strong><br />
<code>remove_action('thesis_hook_archive_info', 'thesis_default_archive_info');</code></p>
<p><strong>Thesis Attribution (Developer license only)</strong><br />
<code>remove_action('thesis_hook_footer', 'thesis_attribution');</code></p>
<p><strong>Footer scripts</strong><br />
<code>remove_action('thesis_hook_after_html', 'thesis_footer_scripts');</code></p>
<p><strong>Custom Homepage Template</strong><br />
<code>remove_action('thesis_hook_custom_template', 'thesis_custom_template_sample');</code></p>
<p><strong>Default 404 Title</strong><br />
<code>remove_action('thesis_hook_404_title', 'thesis_404_title');</code></p>
<p><strong>Default 404 Content</strong><br />
<code>remove_action('thesis_hook_404_content', 'thesis_404_content');</code></p>
<p>Adversely, you can replace &#8220;remove_action&#8221; with &#8220;add_action&#8221; and then type a new hook to move<br />
any of these Thesis Elements around on your skin.</p>
<p><strong>For example: </strong><strong>if you wanted to move the Nav Menu from the Header to the Footer</strong></p>
<p><em>Remove default Nav Menu&#8230;</em><br />
<code>remove_action('thesis_hook_before_header', 'thesis_nav_menu');</code></p>
<p><em>And put it in the footer:</em><br />
<code>add_action('thesis_hook_before_footer', 'thesis_nav_menu');</code></p>
<p>The final output in custom_funtions.php would look like this:</p>
<pre><strong><span style="color: #993300;">&lt;?php</span></strong>
<code>remove_action('thesis_hook_before_header', 'thesis_nav_menu');
add_action('thesis_hook_before_footer', 'thesis_nav_menu');</code></pre>



Share and Enjoy:


	<a rel="nofollow" class="thickbox" href="http://ping.fm/ref/?link=http%3A%2F%2Fgregrickaby.com%2F2009%2F11%2Fadd-and-remove-thesis-elements.html&amp;title=How%20To%3A%20Add%2FRemove%20Thesis%20Elements%20using%20custom_functions.php&amp;body=If%20you%27re%20designing%20Thesis%20skins%20for%20clients%20on%20your%20own%20test%20server%2C%20you%20will%20find%20yourself%20doing%20a%20lot%20of%20redundant%0D%0Awork%20when%20it%20comes%20time%20to%20export%20to%20a%20live%20server.%20I%20will%20show%20you%20how%20to%20add%2Fremove%20Thesis%20elements%20to%20save%0D%0Ayou%20this%20headache.%0D%0A?TB_iframe=true&amp;height=500&amp;width=900"><img src="http://gregrickaby.com/wp-content/plugins/sociable/images/ping.png" title="Ping.fm" alt="Ping.fm" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://twitter.com/home?status=How%20To%3A%20Add%2FRemove%20Thesis%20Elements%20using%20custom_functions.php%20-%20http%3A%2F%2Fgregrickaby.com%2F2009%2F11%2Fadd-and-remove-thesis-elements.html" title="Twitter"><img src="http://gregrickaby.com/wp-content/plugins/sociable/images/twitter.png" title="Twitter" alt="Twitter" class="sociable-hovers" /></a>
	<a rel="nofollow" class="thickbox" href="http://www.facebook.com/share.php?u=http%3A%2F%2Fgregrickaby.com%2F2009%2F11%2Fadd-and-remove-thesis-elements.html&amp;t=How%20To%3A%20Add%2FRemove%20Thesis%20Elements%20using%20custom_functions.php?TB_iframe=true&amp;height=500&amp;width=900"><img src="http://gregrickaby.com/wp-content/plugins/sociable/images/facebook.png" title="Facebook" alt="Facebook" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://www.myspace.com/Modules/PostTo/Pages/?u=http%3A%2F%2Fgregrickaby.com%2F2009%2F11%2Fadd-and-remove-thesis-elements.html&amp;t=How%20To%3A%20Add%2FRemove%20Thesis%20Elements%20using%20custom_functions.php" title="MySpace"><img src="http://gregrickaby.com/wp-content/plugins/sociable/images/myspace.png" title="MySpace" alt="MySpace" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://www.stumbleupon.com/submit?url=http%3A%2F%2Fgregrickaby.com%2F2009%2F11%2Fadd-and-remove-thesis-elements.html&amp;title=How%20To%3A%20Add%2FRemove%20Thesis%20Elements%20using%20custom_functions.php" title="StumbleUpon"><img src="http://gregrickaby.com/wp-content/plugins/sociable/images/stumbleupon.png" title="StumbleUpon" alt="StumbleUpon" class="sociable-hovers" /></a>
	<a rel="nofollow" class="thickbox" href="http://delicious.com/post?url=http%3A%2F%2Fgregrickaby.com%2F2009%2F11%2Fadd-and-remove-thesis-elements.html&amp;title=How%20To%3A%20Add%2FRemove%20Thesis%20Elements%20using%20custom_functions.php&amp;notes=If%20you%27re%20designing%20Thesis%20skins%20for%20clients%20on%20your%20own%20test%20server%2C%20you%20will%20find%20yourself%20doing%20a%20lot%20of%20redundant%0D%0Awork%20when%20it%20comes%20time%20to%20export%20to%20a%20live%20server.%20I%20will%20show%20you%20how%20to%20add%2Fremove%20Thesis%20elements%20to%20save%0D%0Ayou%20this%20headache.%0D%0A?TB_iframe=true&amp;height=500&amp;width=900"><img src="http://gregrickaby.com/wp-content/plugins/sociable/images/delicious.png" title="del.icio.us" alt="del.icio.us" class="sociable-hovers" /></a>
	<a rel="nofollow" class="thickbox" href="http://digg.com/submit?phase=2&amp;url=http%3A%2F%2Fgregrickaby.com%2F2009%2F11%2Fadd-and-remove-thesis-elements.html&amp;title=How%20To%3A%20Add%2FRemove%20Thesis%20Elements%20using%20custom_functions.php&amp;bodytext=If%20you%27re%20designing%20Thesis%20skins%20for%20clients%20on%20your%20own%20test%20server%2C%20you%20will%20find%20yourself%20doing%20a%20lot%20of%20redundant%0D%0Awork%20when%20it%20comes%20time%20to%20export%20to%20a%20live%20server.%20I%20will%20show%20you%20how%20to%20add%2Fremove%20Thesis%20elements%20to%20save%0D%0Ayou%20this%20headache.%0D%0A?TB_iframe=true&amp;height=500&amp;width=900"><img src="http://gregrickaby.com/wp-content/plugins/sociable/images/digg.png" title="Digg" alt="Digg" class="sociable-hovers" /></a>
	<a rel="nofollow" class="thickbox" href="http://reddit.com/submit?url=http%3A%2F%2Fgregrickaby.com%2F2009%2F11%2Fadd-and-remove-thesis-elements.html&amp;title=How%20To%3A%20Add%2FRemove%20Thesis%20Elements%20using%20custom_functions.php?TB_iframe=true&amp;height=500&amp;width=900"><img src="http://gregrickaby.com/wp-content/plugins/sociable/images/reddit.png" title="Reddit" alt="Reddit" class="sociable-hovers" /></a>
	<a rel="nofollow" class="thickbox" href="http://cgi.fark.com/cgi/fark/farkit.pl?h=How%20To%3A%20Add%2FRemove%20Thesis%20Elements%20using%20custom_functions.php&amp;u=http%3A%2F%2Fgregrickaby.com%2F2009%2F11%2Fadd-and-remove-thesis-elements.html?TB_iframe=true&amp;height=500&amp;width=900"><img src="http://gregrickaby.com/wp-content/plugins/sociable/images/fark.png" title="Fark" alt="Fark" class="sociable-hovers" /></a>
	<a rel="nofollow" class="thickbox" href="http://technorati.com/faves?add=http%3A%2F%2Fgregrickaby.com%2F2009%2F11%2Fadd-and-remove-thesis-elements.html?TB_iframe=true&amp;height=500&amp;width=900"><img src="http://gregrickaby.com/wp-content/plugins/sociable/images/technorati.png" title="Technorati" alt="Technorati" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://twitter.com/home/?status=tip%20@Techmeme%20http%3A%2F%2Fgregrickaby.com%2F2009%2F11%2Fadd-and-remove-thesis-elements.html%20How%20To%3A%20Add%2FRemove%20Thesis%20Elements%20using%20custom_functions.php" title="Suggest to Techmeme via Twitter"><img src="http://gregrickaby.com/wp-content/plugins/sociable/images/techmeme.png" title="Suggest to Techmeme via Twitter" alt="Suggest to Techmeme via Twitter" class="sociable-hovers" /></a>
	<a rel="nofollow" class="thickbox" href="http://slashdot.org/bookmark.pl?title=How%20To%3A%20Add%2FRemove%20Thesis%20Elements%20using%20custom_functions.php&amp;url=http%3A%2F%2Fgregrickaby.com%2F2009%2F11%2Fadd-and-remove-thesis-elements.html?TB_iframe=true&amp;height=500&amp;width=900"><img src="http://gregrickaby.com/wp-content/plugins/sociable/images/slashdot.png" title="Slashdot" alt="Slashdot" class="sociable-hovers" /></a>
	<a rel="nofollow" class="thickbox" href="https://favorites.live.com/quickadd.aspx?marklet=1&amp;url=http%3A%2F%2Fgregrickaby.com%2F2009%2F11%2Fadd-and-remove-thesis-elements.html&amp;title=How%20To%3A%20Add%2FRemove%20Thesis%20Elements%20using%20custom_functions.php?TB_iframe=true&amp;height=500&amp;width=900"><img src="http://gregrickaby.com/wp-content/plugins/sociable/images/live.png" title="Live" alt="Live" class="sociable-hovers" /></a>
	<a rel="nofollow" class="thickbox" href="http://gregrickaby.com/feed?TB_iframe=true&amp;height=500&amp;width=900"><img src="http://gregrickaby.com/wp-content/plugins/sociable/images/rss.png" title="RSS" alt="RSS" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="mailto:?subject=How%20To%3A%20Add%2FRemove%20Thesis%20Elements%20using%20custom_functions.php&amp;body=http%3A%2F%2Fgregrickaby.com%2F2009%2F11%2Fadd-and-remove-thesis-elements.html" title="email"><img src="http://gregrickaby.com/wp-content/plugins/sociable/images/email_link.png" title="email" alt="email" class="sociable-hovers" /></a>
	<a rel="nofollow" class="thickbox" href="http://www.printfriendly.com/print?url=http%3A%2F%2Fgregrickaby.com%2F2009%2F11%2Fadd-and-remove-thesis-elements.html&amp;partner=sociable?TB_iframe=true&amp;height=500&amp;width=900"><img src="http://gregrickaby.com/wp-content/plugins/sociable/images/printfriendly.png" title="Print" alt="Print" class="sociable-hovers" /></a>


<br/><br/><div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/gregrickaby?a=B14vq57hkgg:3_MA815w7a4:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/gregrickaby?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/gregrickaby?a=B14vq57hkgg:3_MA815w7a4:F7zBnMyn0Lo"><img src="http://feeds.feedburner.com/~ff/gregrickaby?i=B14vq57hkgg:3_MA815w7a4:F7zBnMyn0Lo" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/gregrickaby?a=B14vq57hkgg:3_MA815w7a4:7Q72WNTAKBA"><img src="http://feeds.feedburner.com/~ff/gregrickaby?d=7Q72WNTAKBA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/gregrickaby?a=B14vq57hkgg:3_MA815w7a4:V_sGLiPBpWU"><img src="http://feeds.feedburner.com/~ff/gregrickaby?i=B14vq57hkgg:3_MA815w7a4:V_sGLiPBpWU" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/gregrickaby?a=B14vq57hkgg:3_MA815w7a4:qj6IDK7rITs"><img src="http://feeds.feedburner.com/~ff/gregrickaby?d=qj6IDK7rITs" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/gregrickaby?a=B14vq57hkgg:3_MA815w7a4:gIN9vFwOqvQ"><img src="http://feeds.feedburner.com/~ff/gregrickaby?i=B14vq57hkgg:3_MA815w7a4:gIN9vFwOqvQ" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/gregrickaby?a=B14vq57hkgg:3_MA815w7a4:l6gmwiTKsz0"><img src="http://feeds.feedburner.com/~ff/gregrickaby?d=l6gmwiTKsz0" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/gregrickaby?a=B14vq57hkgg:3_MA815w7a4:TzevzKxY174"><img src="http://feeds.feedburner.com/~ff/gregrickaby?d=TzevzKxY174" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/gregrickaby/~4/B14vq57hkgg" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://gregrickaby.com/2009/11/add-and-remove-thesis-elements.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://gregrickaby.com/2009/11/add-and-remove-thesis-elements.html</feedburner:origLink></item>
		<item>
		<title>How To: Insert Google Analytics or Mint Tracking Code in Thesis</title>
		<link>http://feedproxy.google.com/~r/gregrickaby/~3/R6_SiTsfWmc/how-to-insert-google-analytics-or-mint-tracking-code-in-thesis.html</link>
		<comments>http://gregrickaby.com/2009/10/how-to-insert-google-analytics-or-mint-tracking-code-in-thesis.html#comments</comments>
		<pubDate>Thu, 15 Oct 2009 14:06:38 +0000</pubDate>
		<dc:creator>Greg Rickaby</dc:creator>
				<category><![CDATA[Tutorials]]></category>
		<category><![CDATA[Google]]></category>
		<category><![CDATA[Mint]]></category>
		<category><![CDATA[Thesis]]></category>

		<guid isPermaLink="false">http://gregrickaby.com/?p=2661</guid>
		<description><![CDATA[No need to break out the Hooks to insert Google Analytics or Mint Tracking code!
While in your Wordpress Dashboard:
Thesis Options &#8211;&#62; Stats Software &#38; Scripts &#8211;&#62; Header Scripts (or) Footer Scripts &#8211;&#62; Copy &#38; Paste, and Save.


Now, lets try Mint





Share and Enjoy:


	
	
	
	
	
	
	
	
	
	
	
	
	
	
	
	


]]></description>
			<content:encoded><![CDATA[<p></p><div class="tweetmeme_button" style="float: right; margin-right: 0px; padding: 10px;"><a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fgregrickaby.com%2F2009%2F10%2Fhow-to-insert-google-analytics-or-mint-tracking-code-in-thesis.html"><img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fgregrickaby.com%2F2009%2F10%2Fhow-to-insert-google-analytics-or-mint-tracking-code-in-thesis.html" height="61" width="51" /></a></div><p>No need to break out the Hooks to insert Google Analytics or Mint Tracking code!</p>
<p>While in your Wordpress Dashboard:</p>
<p>Thesis Options &#8211;&gt; Stats Software &amp; Scripts &#8211;&gt; Header Scripts (or) Footer Scripts &#8211;&gt; Copy &amp; Paste, and Save.</p>
<p><img class="alignnone size-full wp-image-2664" style="border: 1px solid black;" title="where-to-put-google" src="http://gregrickaby.com/wp-content/uploads/2009/10/where-to-put-google.gif" alt="where-to-put-google" width="525" height="393" /></p>
<p><img class="alignnone size-full wp-image-2662" style="border: 1px solid black;" title="tracking-code-google-result" src="http://gregrickaby.com/wp-content/uploads/2009/10/tracking-code-google-result.gif" alt="tracking-code-google-result" width="525" height="393" /></p>
<p>Now, lets try Mint</p>
<p><img class="alignnone size-full wp-image-2665" style="border: 1px solid black;" title="where-to-put-mint" src="http://gregrickaby.com/wp-content/uploads/2009/10/where-to-put-mint.gif" alt="where-to-put-mint" width="525" height="393" /></p>
<p><img class="alignnone size-full wp-image-2662" title="tracking-code-mint-result" src="http://gregrickaby.com/wp-content/uploads/2009/10/tracking-code-mint-result.gif" alt="tracking-code-google-result" width="525" height="393" /></p>



Share and Enjoy:


	<a rel="nofollow" class="thickbox" href="http://ping.fm/ref/?link=http%3A%2F%2Fgregrickaby.com%2F2009%2F10%2Fhow-to-insert-google-analytics-or-mint-tracking-code-in-thesis.html&amp;title=How%20To%3A%20Insert%20Google%20Analytics%20or%20Mint%20Tracking%20Code%20in%20Thesis&amp;body=No%20need%20to%20break%20out%20the%20Hooks%20to%20insert%20Google%20Analytics%20or%20Mint%20Tracking%20code%21%0D%0A%0D%0AWhile%20in%20your%20Wordpress%20Dashboard%3A%0D%0A%0D%0AThesis%20Options%20--%26gt%3B%20Stats%20Software%20%26amp%3B%20Scripts%20--%26gt%3B%20Header%20Scripts%20%28or%29%20Footer%20Scripts%20--%26gt%3B%20Copy%20%26amp%3B%20Paste%2C%20and%20Save.%0D?TB_iframe=true&amp;height=500&amp;width=900"><img src="http://gregrickaby.com/wp-content/plugins/sociable/images/ping.png" title="Ping.fm" alt="Ping.fm" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://twitter.com/home?status=How%20To%3A%20Insert%20Google%20Analytics%20or%20Mint%20Tracking%20Code%20in%20Thesis%20-%20http%3A%2F%2Fgregrickaby.com%2F2009%2F10%2Fhow-to-insert-google-analytics-or-mint-tracking-code-in-thesis.html" title="Twitter"><img src="http://gregrickaby.com/wp-content/plugins/sociable/images/twitter.png" title="Twitter" alt="Twitter" class="sociable-hovers" /></a>
	<a rel="nofollow" class="thickbox" href="http://www.facebook.com/share.php?u=http%3A%2F%2Fgregrickaby.com%2F2009%2F10%2Fhow-to-insert-google-analytics-or-mint-tracking-code-in-thesis.html&amp;t=How%20To%3A%20Insert%20Google%20Analytics%20or%20Mint%20Tracking%20Code%20in%20Thesis?TB_iframe=true&amp;height=500&amp;width=900"><img src="http://gregrickaby.com/wp-content/plugins/sociable/images/facebook.png" title="Facebook" alt="Facebook" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://www.myspace.com/Modules/PostTo/Pages/?u=http%3A%2F%2Fgregrickaby.com%2F2009%2F10%2Fhow-to-insert-google-analytics-or-mint-tracking-code-in-thesis.html&amp;t=How%20To%3A%20Insert%20Google%20Analytics%20or%20Mint%20Tracking%20Code%20in%20Thesis" title="MySpace"><img src="http://gregrickaby.com/wp-content/plugins/sociable/images/myspace.png" title="MySpace" alt="MySpace" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://www.stumbleupon.com/submit?url=http%3A%2F%2Fgregrickaby.com%2F2009%2F10%2Fhow-to-insert-google-analytics-or-mint-tracking-code-in-thesis.html&amp;title=How%20To%3A%20Insert%20Google%20Analytics%20or%20Mint%20Tracking%20Code%20in%20Thesis" title="StumbleUpon"><img src="http://gregrickaby.com/wp-content/plugins/sociable/images/stumbleupon.png" title="StumbleUpon" alt="StumbleUpon" class="sociable-hovers" /></a>
	<a rel="nofollow" class="thickbox" href="http://delicious.com/post?url=http%3A%2F%2Fgregrickaby.com%2F2009%2F10%2Fhow-to-insert-google-analytics-or-mint-tracking-code-in-thesis.html&amp;title=How%20To%3A%20Insert%20Google%20Analytics%20or%20Mint%20Tracking%20Code%20in%20Thesis&amp;notes=No%20need%20to%20break%20out%20the%20Hooks%20to%20insert%20Google%20Analytics%20or%20Mint%20Tracking%20code%21%0D%0A%0D%0AWhile%20in%20your%20Wordpress%20Dashboard%3A%0D%0A%0D%0AThesis%20Options%20--%26gt%3B%20Stats%20Software%20%26amp%3B%20Scripts%20--%26gt%3B%20Header%20Scripts%20%28or%29%20Footer%20Scripts%20--%26gt%3B%20Copy%20%26amp%3B%20Paste%2C%20and%20Save.%0D?TB_iframe=true&amp;height=500&amp;width=900"><img src="http://gregrickaby.com/wp-content/plugins/sociable/images/delicious.png" title="del.icio.us" alt="del.icio.us" class="sociable-hovers" /></a>
	<a rel="nofollow" class="thickbox" href="http://digg.com/submit?phase=2&amp;url=http%3A%2F%2Fgregrickaby.com%2F2009%2F10%2Fhow-to-insert-google-analytics-or-mint-tracking-code-in-thesis.html&amp;title=How%20To%3A%20Insert%20Google%20Analytics%20or%20Mint%20Tracking%20Code%20in%20Thesis&amp;bodytext=No%20need%20to%20break%20out%20the%20Hooks%20to%20insert%20Google%20Analytics%20or%20Mint%20Tracking%20code%21%0D%0A%0D%0AWhile%20in%20your%20Wordpress%20Dashboard%3A%0D%0A%0D%0AThesis%20Options%20--%26gt%3B%20Stats%20Software%20%26amp%3B%20Scripts%20--%26gt%3B%20Header%20Scripts%20%28or%29%20Footer%20Scripts%20--%26gt%3B%20Copy%20%26amp%3B%20Paste%2C%20and%20Save.%0D?TB_iframe=true&amp;height=500&amp;width=900"><img src="http://gregrickaby.com/wp-content/plugins/sociable/images/digg.png" title="Digg" alt="Digg" class="sociable-hovers" /></a>
	<a rel="nofollow" class="thickbox" href="http://reddit.com/submit?url=http%3A%2F%2Fgregrickaby.com%2F2009%2F10%2Fhow-to-insert-google-analytics-or-mint-tracking-code-in-thesis.html&amp;title=How%20To%3A%20Insert%20Google%20Analytics%20or%20Mint%20Tracking%20Code%20in%20Thesis?TB_iframe=true&amp;height=500&amp;width=900"><img src="http://gregrickaby.com/wp-content/plugins/sociable/images/reddit.png" title="Reddit" alt="Reddit" class="sociable-hovers" /></a>
	<a rel="nofollow" class="thickbox" href="http://cgi.fark.com/cgi/fark/farkit.pl?h=How%20To%3A%20Insert%20Google%20Analytics%20or%20Mint%20Tracking%20Code%20in%20Thesis&amp;u=http%3A%2F%2Fgregrickaby.com%2F2009%2F10%2Fhow-to-insert-google-analytics-or-mint-tracking-code-in-thesis.html?TB_iframe=true&amp;height=500&amp;width=900"><img src="http://gregrickaby.com/wp-content/plugins/sociable/images/fark.png" title="Fark" alt="Fark" class="sociable-hovers" /></a>
	<a rel="nofollow" class="thickbox" href="http://technorati.com/faves?add=http%3A%2F%2Fgregrickaby.com%2F2009%2F10%2Fhow-to-insert-google-analytics-or-mint-tracking-code-in-thesis.html?TB_iframe=true&amp;height=500&amp;width=900"><img src="http://gregrickaby.com/wp-content/plugins/sociable/images/technorati.png" title="Technorati" alt="Technorati" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://twitter.com/home/?status=tip%20@Techmeme%20http%3A%2F%2Fgregrickaby.com%2F2009%2F10%2Fhow-to-insert-google-analytics-or-mint-tracking-code-in-thesis.html%20How%20To%3A%20Insert%20Google%20Analytics%20or%20Mint%20Tracking%20Code%20in%20Thesis" title="Suggest to Techmeme via Twitter"><img src="http://gregrickaby.com/wp-content/plugins/sociable/images/techmeme.png" title="Suggest to Techmeme via Twitter" alt="Suggest to Techmeme via Twitter" class="sociable-hovers" /></a>
	<a rel="nofollow" class="thickbox" href="http://slashdot.org/bookmark.pl?title=How%20To%3A%20Insert%20Google%20Analytics%20or%20Mint%20Tracking%20Code%20in%20Thesis&amp;url=http%3A%2F%2Fgregrickaby.com%2F2009%2F10%2Fhow-to-insert-google-analytics-or-mint-tracking-code-in-thesis.html?TB_iframe=true&amp;height=500&amp;width=900"><img src="http://gregrickaby.com/wp-content/plugins/sociable/images/slashdot.png" title="Slashdot" alt="Slashdot" class="sociable-hovers" /></a>
	<a rel="nofollow" class="thickbox" href="https://favorites.live.com/quickadd.aspx?marklet=1&amp;url=http%3A%2F%2Fgregrickaby.com%2F2009%2F10%2Fhow-to-insert-google-analytics-or-mint-tracking-code-in-thesis.html&amp;title=How%20To%3A%20Insert%20Google%20Analytics%20or%20Mint%20Tracking%20Code%20in%20Thesis?TB_iframe=true&amp;height=500&amp;width=900"><img src="http://gregrickaby.com/wp-content/plugins/sociable/images/live.png" title="Live" alt="Live" class="sociable-hovers" /></a>
	<a rel="nofollow" class="thickbox" href="http://gregrickaby.com/feed?TB_iframe=true&amp;height=500&amp;width=900"><img src="http://gregrickaby.com/wp-content/plugins/sociable/images/rss.png" title="RSS" alt="RSS" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="mailto:?subject=How%20To%3A%20Insert%20Google%20Analytics%20or%20Mint%20Tracking%20Code%20in%20Thesis&amp;body=http%3A%2F%2Fgregrickaby.com%2F2009%2F10%2Fhow-to-insert-google-analytics-or-mint-tracking-code-in-thesis.html" title="email"><img src="http://gregrickaby.com/wp-content/plugins/sociable/images/email_link.png" title="email" alt="email" class="sociable-hovers" /></a>
	<a rel="nofollow" class="thickbox" href="http://www.printfriendly.com/print?url=http%3A%2F%2Fgregrickaby.com%2F2009%2F10%2Fhow-to-insert-google-analytics-or-mint-tracking-code-in-thesis.html&amp;partner=sociable?TB_iframe=true&amp;height=500&amp;width=900"><img src="http://gregrickaby.com/wp-content/plugins/sociable/images/printfriendly.png" title="Print" alt="Print" class="sociable-hovers" /></a>


<br/><br/><div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/gregrickaby?a=R6_SiTsfWmc:b-3lwxsjrDc:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/gregrickaby?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/gregrickaby?a=R6_SiTsfWmc:b-3lwxsjrDc:F7zBnMyn0Lo"><img src="http://feeds.feedburner.com/~ff/gregrickaby?i=R6_SiTsfWmc:b-3lwxsjrDc:F7zBnMyn0Lo" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/gregrickaby?a=R6_SiTsfWmc:b-3lwxsjrDc:7Q72WNTAKBA"><img src="http://feeds.feedburner.com/~ff/gregrickaby?d=7Q72WNTAKBA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/gregrickaby?a=R6_SiTsfWmc:b-3lwxsjrDc:V_sGLiPBpWU"><img src="http://feeds.feedburner.com/~ff/gregrickaby?i=R6_SiTsfWmc:b-3lwxsjrDc:V_sGLiPBpWU" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/gregrickaby?a=R6_SiTsfWmc:b-3lwxsjrDc:qj6IDK7rITs"><img src="http://feeds.feedburner.com/~ff/gregrickaby?d=qj6IDK7rITs" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/gregrickaby?a=R6_SiTsfWmc:b-3lwxsjrDc:gIN9vFwOqvQ"><img src="http://feeds.feedburner.com/~ff/gregrickaby?i=R6_SiTsfWmc:b-3lwxsjrDc:gIN9vFwOqvQ" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/gregrickaby?a=R6_SiTsfWmc:b-3lwxsjrDc:l6gmwiTKsz0"><img src="http://feeds.feedburner.com/~ff/gregrickaby?d=l6gmwiTKsz0" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/gregrickaby?a=R6_SiTsfWmc:b-3lwxsjrDc:TzevzKxY174"><img src="http://feeds.feedburner.com/~ff/gregrickaby?d=TzevzKxY174" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/gregrickaby/~4/R6_SiTsfWmc" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://gregrickaby.com/2009/10/how-to-insert-google-analytics-or-mint-tracking-code-in-thesis.html/feed</wfw:commentRss>
		<slash:comments>1</slash:comments>
		<feedburner:origLink>http://gregrickaby.com/2009/10/how-to-insert-google-analytics-or-mint-tracking-code-in-thesis.html</feedburner:origLink></item>
		<item>
		<title>How To: Remove ‘Comments Are Closed’ in Thesis</title>
		<link>http://feedproxy.google.com/~r/gregrickaby/~3/59oQTzqBoLo/remove-comments-are-closed-in-thesis.html</link>
		<comments>http://gregrickaby.com/2009/10/remove-comments-are-closed-in-thesis.html#comments</comments>
		<pubDate>Wed, 14 Oct 2009 16:34:52 +0000</pubDate>
		<dc:creator>Greg Rickaby</dc:creator>
				<category><![CDATA[Tutorials]]></category>
		<category><![CDATA[CSS]]></category>
		<category><![CDATA[Thesis Tutorials]]></category>

		<guid isPermaLink="false">http://gregrickaby.com/?p=2643</guid>
		<description><![CDATA[Ever wanted to remove the, &#8220;Comments on this entry are Closed&#8221; in Thesis?  Easy! Just copy the CSS code below and paste anywhere in custom.css:
.custom .comments_closed {text-indent: -9999px;}
OR:
.custom .comments_closed {display: none;}
Either way you&#8217;ll be &#8220;hiding&#8221; the text from human eyes.





Share and Enjoy:


	
	
	
	
	
	
	
	
	
	
	
	
	
	
	
	


]]></description>
			<content:encoded><![CDATA[<p></p><div class="tweetmeme_button" style="float: right; margin-right: 0px; padding: 10px;"><a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fgregrickaby.com%2F2009%2F10%2Fremove-comments-are-closed-in-thesis.html"><img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fgregrickaby.com%2F2009%2F10%2Fremove-comments-are-closed-in-thesis.html" height="61" width="51" /></a></div><p>Ever wanted to remove the, &#8220;Comments on this entry are Closed&#8221; in Thesis?  Easy! Just copy the CSS code below and paste anywhere in custom.css:</p>
<pre>.custom .comments_closed {text-indent: -9999px;}</pre>
<p>OR:</p>
<pre>.custom .comments_closed {display: none;}</pre>
<p>Either way you&#8217;ll be &#8220;hiding&#8221; the text from human eyes.</p>
<p><img class="alignnone size-full wp-image-2657" style="border: 1px solid black;" title="comments-are-closed" src="http://gregrickaby.com/wp-content/uploads/2009/10/comments-are-closed.gif" alt="comments-are-closed" width="635" height="408" /></p>
<p><img class="alignnone size-full wp-image-2658" style="border: 1px solid black;" title="comments-are-closed-fixed" src="http://gregrickaby.com/wp-content/uploads/2009/10/comments-are-closed-fixed.gif" alt="comments-are-closed-fixed" width="635" height="408" /></p>



Share and Enjoy:


	<a rel="nofollow" class="thickbox" href="http://ping.fm/ref/?link=http%3A%2F%2Fgregrickaby.com%2F2009%2F10%2Fremove-comments-are-closed-in-thesis.html&amp;title=How%20To%3A%20Remove%20%27Comments%20Are%20Closed%27%20in%20Thesis&amp;body=Ever%20wanted%20to%20remove%20the%2C%20%22Comments%20on%20this%20entry%20are%20Closed%22%20in%20Thesis%3F%C2%A0%20Easy%21%20Just%20copy%20the%20CSS%20code%20below%20and%20paste%20anywhere%20in%20custom.css%3A%0D%0A.custom%20.comments_closed%20%7Btext-indent%3A%20-9999px%3B%7D%0D%0AOR%3A%0D%0A.custom%20.comments_closed%20%7Bdisplay%3A%20none%3B%7D%0D%0AEither?TB_iframe=true&amp;height=500&amp;width=900"><img src="http://gregrickaby.com/wp-content/plugins/sociable/images/ping.png" title="Ping.fm" alt="Ping.fm" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://twitter.com/home?status=How%20To%3A%20Remove%20%27Comments%20Are%20Closed%27%20in%20Thesis%20-%20http%3A%2F%2Fgregrickaby.com%2F2009%2F10%2Fremove-comments-are-closed-in-thesis.html" title="Twitter"><img src="http://gregrickaby.com/wp-content/plugins/sociable/images/twitter.png" title="Twitter" alt="Twitter" class="sociable-hovers" /></a>
	<a rel="nofollow" class="thickbox" href="http://www.facebook.com/share.php?u=http%3A%2F%2Fgregrickaby.com%2F2009%2F10%2Fremove-comments-are-closed-in-thesis.html&amp;t=How%20To%3A%20Remove%20%27Comments%20Are%20Closed%27%20in%20Thesis?TB_iframe=true&amp;height=500&amp;width=900"><img src="http://gregrickaby.com/wp-content/plugins/sociable/images/facebook.png" title="Facebook" alt="Facebook" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://www.myspace.com/Modules/PostTo/Pages/?u=http%3A%2F%2Fgregrickaby.com%2F2009%2F10%2Fremove-comments-are-closed-in-thesis.html&amp;t=How%20To%3A%20Remove%20%27Comments%20Are%20Closed%27%20in%20Thesis" title="MySpace"><img src="http://gregrickaby.com/wp-content/plugins/sociable/images/myspace.png" title="MySpace" alt="MySpace" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://www.stumbleupon.com/submit?url=http%3A%2F%2Fgregrickaby.com%2F2009%2F10%2Fremove-comments-are-closed-in-thesis.html&amp;title=How%20To%3A%20Remove%20%27Comments%20Are%20Closed%27%20in%20Thesis" title="StumbleUpon"><img src="http://gregrickaby.com/wp-content/plugins/sociable/images/stumbleupon.png" title="StumbleUpon" alt="StumbleUpon" class="sociable-hovers" /></a>
	<a rel="nofollow" class="thickbox" href="http://delicious.com/post?url=http%3A%2F%2Fgregrickaby.com%2F2009%2F10%2Fremove-comments-are-closed-in-thesis.html&amp;title=How%20To%3A%20Remove%20%27Comments%20Are%20Closed%27%20in%20Thesis&amp;notes=Ever%20wanted%20to%20remove%20the%2C%20%22Comments%20on%20this%20entry%20are%20Closed%22%20in%20Thesis%3F%C2%A0%20Easy%21%20Just%20copy%20the%20CSS%20code%20below%20and%20paste%20anywhere%20in%20custom.css%3A%0D%0A.custom%20.comments_closed%20%7Btext-indent%3A%20-9999px%3B%7D%0D%0AOR%3A%0D%0A.custom%20.comments_closed%20%7Bdisplay%3A%20none%3B%7D%0D%0AEither?TB_iframe=true&amp;height=500&amp;width=900"><img src="http://gregrickaby.com/wp-content/plugins/sociable/images/delicious.png" title="del.icio.us" alt="del.icio.us" class="sociable-hovers" /></a>
	<a rel="nofollow" class="thickbox" href="http://digg.com/submit?phase=2&amp;url=http%3A%2F%2Fgregrickaby.com%2F2009%2F10%2Fremove-comments-are-closed-in-thesis.html&amp;title=How%20To%3A%20Remove%20%27Comments%20Are%20Closed%27%20in%20Thesis&amp;bodytext=Ever%20wanted%20to%20remove%20the%2C%20%22Comments%20on%20this%20entry%20are%20Closed%22%20in%20Thesis%3F%C2%A0%20Easy%21%20Just%20copy%20the%20CSS%20code%20below%20and%20paste%20anywhere%20in%20custom.css%3A%0D%0A.custom%20.comments_closed%20%7Btext-indent%3A%20-9999px%3B%7D%0D%0AOR%3A%0D%0A.custom%20.comments_closed%20%7Bdisplay%3A%20none%3B%7D%0D%0AEither?TB_iframe=true&amp;height=500&amp;width=900"><img src="http://gregrickaby.com/wp-content/plugins/sociable/images/digg.png" title="Digg" alt="Digg" class="sociable-hovers" /></a>
	<a rel="nofollow" class="thickbox" href="http://reddit.com/submit?url=http%3A%2F%2Fgregrickaby.com%2F2009%2F10%2Fremove-comments-are-closed-in-thesis.html&amp;title=How%20To%3A%20Remove%20%27Comments%20Are%20Closed%27%20in%20Thesis?TB_iframe=true&amp;height=500&amp;width=900"><img src="http://gregrickaby.com/wp-content/plugins/sociable/images/reddit.png" title="Reddit" alt="Reddit" class="sociable-hovers" /></a>
	<a rel="nofollow" class="thickbox" href="http://cgi.fark.com/cgi/fark/farkit.pl?h=How%20To%3A%20Remove%20%27Comments%20Are%20Closed%27%20in%20Thesis&amp;u=http%3A%2F%2Fgregrickaby.com%2F2009%2F10%2Fremove-comments-are-closed-in-thesis.html?TB_iframe=true&amp;height=500&amp;width=900"><img src="http://gregrickaby.com/wp-content/plugins/sociable/images/fark.png" title="Fark" alt="Fark" class="sociable-hovers" /></a>
	<a rel="nofollow" class="thickbox" href="http://technorati.com/faves?add=http%3A%2F%2Fgregrickaby.com%2F2009%2F10%2Fremove-comments-are-closed-in-thesis.html?TB_iframe=true&amp;height=500&amp;width=900"><img src="http://gregrickaby.com/wp-content/plugins/sociable/images/technorati.png" title="Technorati" alt="Technorati" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://twitter.com/home/?status=tip%20@Techmeme%20http%3A%2F%2Fgregrickaby.com%2F2009%2F10%2Fremove-comments-are-closed-in-thesis.html%20How%20To%3A%20Remove%20%27Comments%20Are%20Closed%27%20in%20Thesis" title="Suggest to Techmeme via Twitter"><img src="http://gregrickaby.com/wp-content/plugins/sociable/images/techmeme.png" title="Suggest to Techmeme via Twitter" alt="Suggest to Techmeme via Twitter" class="sociable-hovers" /></a>
	<a rel="nofollow" class="thickbox" href="http://slashdot.org/bookmark.pl?title=How%20To%3A%20Remove%20%27Comments%20Are%20Closed%27%20in%20Thesis&amp;url=http%3A%2F%2Fgregrickaby.com%2F2009%2F10%2Fremove-comments-are-closed-in-thesis.html?TB_iframe=true&amp;height=500&amp;width=900"><img src="http://gregrickaby.com/wp-content/plugins/sociable/images/slashdot.png" title="Slashdot" alt="Slashdot" class="sociable-hovers" /></a>
	<a rel="nofollow" class="thickbox" href="https://favorites.live.com/quickadd.aspx?marklet=1&amp;url=http%3A%2F%2Fgregrickaby.com%2F2009%2F10%2Fremove-comments-are-closed-in-thesis.html&amp;title=How%20To%3A%20Remove%20%27Comments%20Are%20Closed%27%20in%20Thesis?TB_iframe=true&amp;height=500&amp;width=900"><img src="http://gregrickaby.com/wp-content/plugins/sociable/images/live.png" title="Live" alt="Live" class="sociable-hovers" /></a>
	<a rel="nofollow" class="thickbox" href="http://gregrickaby.com/feed?TB_iframe=true&amp;height=500&amp;width=900"><img src="http://gregrickaby.com/wp-content/plugins/sociable/images/rss.png" title="RSS" alt="RSS" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="mailto:?subject=How%20To%3A%20Remove%20%27Comments%20Are%20Closed%27%20in%20Thesis&amp;body=http%3A%2F%2Fgregrickaby.com%2F2009%2F10%2Fremove-comments-are-closed-in-thesis.html" title="email"><img src="http://gregrickaby.com/wp-content/plugins/sociable/images/email_link.png" title="email" alt="email" class="sociable-hovers" /></a>
	<a rel="nofollow" class="thickbox" href="http://www.printfriendly.com/print?url=http%3A%2F%2Fgregrickaby.com%2F2009%2F10%2Fremove-comments-are-closed-in-thesis.html&amp;partner=sociable?TB_iframe=true&amp;height=500&amp;width=900"><img src="http://gregrickaby.com/wp-content/plugins/sociable/images/printfriendly.png" title="Print" alt="Print" class="sociable-hovers" /></a>


<br/><br/><div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/gregrickaby?a=59oQTzqBoLo:bDE-0mkjjwE:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/gregrickaby?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/gregrickaby?a=59oQTzqBoLo:bDE-0mkjjwE:F7zBnMyn0Lo"><img src="http://feeds.feedburner.com/~ff/gregrickaby?i=59oQTzqBoLo:bDE-0mkjjwE:F7zBnMyn0Lo" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/gregrickaby?a=59oQTzqBoLo:bDE-0mkjjwE:7Q72WNTAKBA"><img src="http://feeds.feedburner.com/~ff/gregrickaby?d=7Q72WNTAKBA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/gregrickaby?a=59oQTzqBoLo:bDE-0mkjjwE:V_sGLiPBpWU"><img src="http://feeds.feedburner.com/~ff/gregrickaby?i=59oQTzqBoLo:bDE-0mkjjwE:V_sGLiPBpWU" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/gregrickaby?a=59oQTzqBoLo:bDE-0mkjjwE:qj6IDK7rITs"><img src="http://feeds.feedburner.com/~ff/gregrickaby?d=qj6IDK7rITs" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/gregrickaby?a=59oQTzqBoLo:bDE-0mkjjwE:gIN9vFwOqvQ"><img src="http://feeds.feedburner.com/~ff/gregrickaby?i=59oQTzqBoLo:bDE-0mkjjwE:gIN9vFwOqvQ" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/gregrickaby?a=59oQTzqBoLo:bDE-0mkjjwE:l6gmwiTKsz0"><img src="http://feeds.feedburner.com/~ff/gregrickaby?d=l6gmwiTKsz0" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/gregrickaby?a=59oQTzqBoLo:bDE-0mkjjwE:TzevzKxY174"><img src="http://feeds.feedburner.com/~ff/gregrickaby?d=TzevzKxY174" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/gregrickaby/~4/59oQTzqBoLo" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://gregrickaby.com/2009/10/remove-comments-are-closed-in-thesis.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://gregrickaby.com/2009/10/remove-comments-are-closed-in-thesis.html</feedburner:origLink></item>
		<item>
		<title>Web Pricing Survey: What Is Fair?</title>
		<link>http://feedproxy.google.com/~r/gregrickaby/~3/ekHWs7O3D34/web-pricing-survey-what-is-fair.html</link>
		<comments>http://gregrickaby.com/2009/10/web-pricing-survey-what-is-fair.html#comments</comments>
		<pubDate>Mon, 05 Oct 2009 21:04:06 +0000</pubDate>
		<dc:creator>Greg Rickaby</dc:creator>
				<category><![CDATA[Articles]]></category>
		<category><![CDATA[Freelance]]></category>

		<guid isPermaLink="false">http://gregrickaby.com/?p=2515</guid>
		<description><![CDATA[Since becoming a full-time freelancer, I have found myself flying high one day because I landed a new client &#8211; then cussing a storm because someone disputs an invoice. Rather than raise my blood pressure even further&#8230;I wanted to ask YOU how you felt about Web Pricing.

The blog posts are endless. Designers/Developers break it down [...]]]></description>
			<content:encoded><![CDATA[<p></p><div class="tweetmeme_button" style="float: right; margin-right: 0px; padding: 10px;"><a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fgregrickaby.com%2F2009%2F10%2Fweb-pricing-survey-what-is-fair.html"><img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fgregrickaby.com%2F2009%2F10%2Fweb-pricing-survey-what-is-fair.html" height="61" width="51" /></a></div><p>Since becoming a full-time freelancer, I have found myself flying high one day because I landed a new client &#8211; then cussing a storm because someone disputs an invoice. Rather than raise my blood pressure even further&#8230;I wanted to ask YOU how you felt about Web Pricing.</p>
<p><a href="http://gregrickaby.com/web-pricing-survey-what-is-fair.html"><img class="aligncenter size-full wp-image-2516" title="web-design-pricing" src="http://gregrickaby.com/wp-content/uploads/2009/10/web-design-pricing.jpg" alt="web-design-pricing" width="640" height="200" /></a></p>
<p><span id="more-2515"></span>The blog posts are endless. Designers/Developers break it down to 63 hours of work for a $200 website = $3.17 an hour&#8230;blah blah blah. Maybe you&#8217;ve seen the <a href="http://www.youtube.com/watch?v=R2a8TRSgzZY" target="_blank">Taco Stand</a> video about Vendor/Client relationships.</p>
<p>The fact remains, credible web developers, (who work in a  highly skilled and competitive industry), are sometimes expected to work for pennies because the competition is limitless. I don&#8217;t want to get into a debate about how to setup a pricing model. If you want to read about that, visit: (<a href="http://www.smashingmagazine.com/2009/07/14/quality-price-ratio-in-web-design-pricing-design-work/" target="_blank">http://www.smashingmagazine.com/2009/07/14/quality-price-ratio-in-web-design-pricing-design-work/</a> or <a href="http://www.pearsonified.com/2006/06/how_much_should_a_design_cost.php" target="_blank">http://www.pearsonified.com/2006/06/how_much_should_a_design_cost.php</a>)</p>
<p>I want to know how <strong>REAL PEOPLE</strong> feel about <strong>WEB DEVELOPMENT PRICING</strong>. So please, take short (anonymous) <strong><a href="http://surveys.polldaddy.com/s/3CD46891FCEA49CF/" target="_blank">10 question survey</a></strong> and let me know how you feel.</p>



Share and Enjoy:


	<a rel="nofollow" class="thickbox" href="http://ping.fm/ref/?link=http%3A%2F%2Fgregrickaby.com%2F2009%2F10%2Fweb-pricing-survey-what-is-fair.html&amp;title=Web%20Pricing%20Survey%3A%20What%20Is%20Fair%3F&amp;body=Since%20becoming%20a%20full-time%20freelancer%2C%20I%20have%20found%20myself%20flying%20high%20one%20day%20because%20I%20landed%20a%20new%20client%20-%20then%20cussing%20a%20storm%20because%20someone%20disputs%20an%20invoice.%20Rather%20than%20raise%20my%20blood%20pressure%20even%20further...I%20wanted%20to%20ask%20YOU%20how%20you%20fel?TB_iframe=true&amp;height=500&amp;width=900"><img src="http://gregrickaby.com/wp-content/plugins/sociable/images/ping.png" title="Ping.fm" alt="Ping.fm" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://twitter.com/home?status=Web%20Pricing%20Survey%3A%20What%20Is%20Fair%3F%20-%20http%3A%2F%2Fgregrickaby.com%2F2009%2F10%2Fweb-pricing-survey-what-is-fair.html" title="Twitter"><img src="http://gregrickaby.com/wp-content/plugins/sociable/images/twitter.png" title="Twitter" alt="Twitter" class="sociable-hovers" /></a>
	<a rel="nofollow" class="thickbox" href="http://www.facebook.com/share.php?u=http%3A%2F%2Fgregrickaby.com%2F2009%2F10%2Fweb-pricing-survey-what-is-fair.html&amp;t=Web%20Pricing%20Survey%3A%20What%20Is%20Fair%3F?TB_iframe=true&amp;height=500&amp;width=900"><img src="http://gregrickaby.com/wp-content/plugins/sociable/images/facebook.png" title="Facebook" alt="Facebook" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://www.myspace.com/Modules/PostTo/Pages/?u=http%3A%2F%2Fgregrickaby.com%2F2009%2F10%2Fweb-pricing-survey-what-is-fair.html&amp;t=Web%20Pricing%20Survey%3A%20What%20Is%20Fair%3F" title="MySpace"><img src="http://gregrickaby.com/wp-content/plugins/sociable/images/myspace.png" title="MySpace" alt="MySpace" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://www.stumbleupon.com/submit?url=http%3A%2F%2Fgregrickaby.com%2F2009%2F10%2Fweb-pricing-survey-what-is-fair.html&amp;title=Web%20Pricing%20Survey%3A%20What%20Is%20Fair%3F" title="StumbleUpon"><img src="http://gregrickaby.com/wp-content/plugins/sociable/images/stumbleupon.png" title="StumbleUpon" alt="StumbleUpon" class="sociable-hovers" /></a>
	<a rel="nofollow" class="thickbox" href="http://delicious.com/post?url=http%3A%2F%2Fgregrickaby.com%2F2009%2F10%2Fweb-pricing-survey-what-is-fair.html&amp;title=Web%20Pricing%20Survey%3A%20What%20Is%20Fair%3F&amp;notes=Since%20becoming%20a%20full-time%20freelancer%2C%20I%20have%20found%20myself%20flying%20high%20one%20day%20because%20I%20landed%20a%20new%20client%20-%20then%20cussing%20a%20storm%20because%20someone%20disputs%20an%20invoice.%20Rather%20than%20raise%20my%20blood%20pressure%20even%20further...I%20wanted%20to%20ask%20YOU%20how%20you%20fel?TB_iframe=true&amp;height=500&amp;width=900"><img src="http://gregrickaby.com/wp-content/plugins/sociable/images/delicious.png" title="del.icio.us" alt="del.icio.us" class="sociable-hovers" /></a>
	<a rel="nofollow" class="thickbox" href="http://digg.com/submit?phase=2&amp;url=http%3A%2F%2Fgregrickaby.com%2F2009%2F10%2Fweb-pricing-survey-what-is-fair.html&amp;title=Web%20Pricing%20Survey%3A%20What%20Is%20Fair%3F&amp;bodytext=Since%20becoming%20a%20full-time%20freelancer%2C%20I%20have%20found%20myself%20flying%20high%20one%20day%20because%20I%20landed%20a%20new%20client%20-%20then%20cussing%20a%20storm%20because%20someone%20disputs%20an%20invoice.%20Rather%20than%20raise%20my%20blood%20pressure%20even%20further...I%20wanted%20to%20ask%20YOU%20how%20you%20fel?TB_iframe=true&amp;height=500&amp;width=900"><img src="http://gregrickaby.com/wp-content/plugins/sociable/images/digg.png" title="Digg" alt="Digg" class="sociable-hovers" /></a>
	<a rel="nofollow" class="thickbox" href="http://reddit.com/submit?url=http%3A%2F%2Fgregrickaby.com%2F2009%2F10%2Fweb-pricing-survey-what-is-fair.html&amp;title=Web%20Pricing%20Survey%3A%20What%20Is%20Fair%3F?TB_iframe=true&amp;height=500&amp;width=900"><img src="http://gregrickaby.com/wp-content/plugins/sociable/images/reddit.png" title="Reddit" alt="Reddit" class="sociable-hovers" /></a>
	<a rel="nofollow" class="thickbox" href="http://cgi.fark.com/cgi/fark/farkit.pl?h=Web%20Pricing%20Survey%3A%20What%20Is%20Fair%3F&amp;u=http%3A%2F%2Fgregrickaby.com%2F2009%2F10%2Fweb-pricing-survey-what-is-fair.html?TB_iframe=true&amp;height=500&amp;width=900"><img src="http://gregrickaby.com/wp-content/plugins/sociable/images/fark.png" title="Fark" alt="Fark" class="sociable-hovers" /></a>
	<a rel="nofollow" class="thickbox" href="http://technorati.com/faves?add=http%3A%2F%2Fgregrickaby.com%2F2009%2F10%2Fweb-pricing-survey-what-is-fair.html?TB_iframe=true&amp;height=500&amp;width=900"><img src="http://gregrickaby.com/wp-content/plugins/sociable/images/technorati.png" title="Technorati" alt="Technorati" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://twitter.com/home/?status=tip%20@Techmeme%20http%3A%2F%2Fgregrickaby.com%2F2009%2F10%2Fweb-pricing-survey-what-is-fair.html%20Web%20Pricing%20Survey%3A%20What%20Is%20Fair%3F" title="Suggest to Techmeme via Twitter"><img src="http://gregrickaby.com/wp-content/plugins/sociable/images/techmeme.png" title="Suggest to Techmeme via Twitter" alt="Suggest to Techmeme via Twitter" class="sociable-hovers" /></a>
	<a rel="nofollow" class="thickbox" href="http://slashdot.org/bookmark.pl?title=Web%20Pricing%20Survey%3A%20What%20Is%20Fair%3F&amp;url=http%3A%2F%2Fgregrickaby.com%2F2009%2F10%2Fweb-pricing-survey-what-is-fair.html?TB_iframe=true&amp;height=500&amp;width=900"><img src="http://gregrickaby.com/wp-content/plugins/sociable/images/slashdot.png" title="Slashdot" alt="Slashdot" class="sociable-hovers" /></a>
	<a rel="nofollow" class="thickbox" href="https://favorites.live.com/quickadd.aspx?marklet=1&amp;url=http%3A%2F%2Fgregrickaby.com%2F2009%2F10%2Fweb-pricing-survey-what-is-fair.html&amp;title=Web%20Pricing%20Survey%3A%20What%20Is%20Fair%3F?TB_iframe=true&amp;height=500&amp;width=900"><img src="http://gregrickaby.com/wp-content/plugins/sociable/images/live.png" title="Live" alt="Live" class="sociable-hovers" /></a>
	<a rel="nofollow" class="thickbox" href="http://gregrickaby.com/feed?TB_iframe=true&amp;height=500&amp;width=900"><img src="http://gregrickaby.com/wp-content/plugins/sociable/images/rss.png" title="RSS" alt="RSS" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="mailto:?subject=Web%20Pricing%20Survey%3A%20What%20Is%20Fair%3F&amp;body=http%3A%2F%2Fgregrickaby.com%2F2009%2F10%2Fweb-pricing-survey-what-is-fair.html" title="email"><img src="http://gregrickaby.com/wp-content/plugins/sociable/images/email_link.png" title="email" alt="email" class="sociable-hovers" /></a>
	<a rel="nofollow" class="thickbox" href="http://www.printfriendly.com/print?url=http%3A%2F%2Fgregrickaby.com%2F2009%2F10%2Fweb-pricing-survey-what-is-fair.html&amp;partner=sociable?TB_iframe=true&amp;height=500&amp;width=900"><img src="http://gregrickaby.com/wp-content/plugins/sociable/images/printfriendly.png" title="Print" alt="Print" class="sociable-hovers" /></a>


<br/><br/><div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/gregrickaby?a=ekHWs7O3D34:VNBWPkMP1gg:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/gregrickaby?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/gregrickaby?a=ekHWs7O3D34:VNBWPkMP1gg:F7zBnMyn0Lo"><img src="http://feeds.feedburner.com/~ff/gregrickaby?i=ekHWs7O3D34:VNBWPkMP1gg:F7zBnMyn0Lo" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/gregrickaby?a=ekHWs7O3D34:VNBWPkMP1gg:7Q72WNTAKBA"><img src="http://feeds.feedburner.com/~ff/gregrickaby?d=7Q72WNTAKBA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/gregrickaby?a=ekHWs7O3D34:VNBWPkMP1gg:V_sGLiPBpWU"><img src="http://feeds.feedburner.com/~ff/gregrickaby?i=ekHWs7O3D34:VNBWPkMP1gg:V_sGLiPBpWU" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/gregrickaby?a=ekHWs7O3D34:VNBWPkMP1gg:qj6IDK7rITs"><img src="http://feeds.feedburner.com/~ff/gregrickaby?d=qj6IDK7rITs" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/gregrickaby?a=ekHWs7O3D34:VNBWPkMP1gg:gIN9vFwOqvQ"><img src="http://feeds.feedburner.com/~ff/gregrickaby?i=ekHWs7O3D34:VNBWPkMP1gg:gIN9vFwOqvQ" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/gregrickaby?a=ekHWs7O3D34:VNBWPkMP1gg:l6gmwiTKsz0"><img src="http://feeds.feedburner.com/~ff/gregrickaby?d=l6gmwiTKsz0" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/gregrickaby?a=ekHWs7O3D34:VNBWPkMP1gg:TzevzKxY174"><img src="http://feeds.feedburner.com/~ff/gregrickaby?d=TzevzKxY174" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/gregrickaby/~4/ekHWs7O3D34" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://gregrickaby.com/2009/10/web-pricing-survey-what-is-fair.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://gregrickaby.com/2009/10/web-pricing-survey-what-is-fair.html</feedburner:origLink></item>
		<item>
		<title>Thesis Sub-Framework: Widget Me</title>
		<link>http://feedproxy.google.com/~r/gregrickaby/~3/W6zSY1asoIQ/thesis-sub-framework-widget-me.html</link>
		<comments>http://gregrickaby.com/2009/09/thesis-sub-framework-widget-me.html#comments</comments>
		<pubDate>Fri, 18 Sep 2009 17:39:46 +0000</pubDate>
		<dc:creator>Greg Rickaby</dc:creator>
				<category><![CDATA[Freebies]]></category>
		<category><![CDATA[Customization]]></category>
		<category><![CDATA[Thesis]]></category>

		<guid isPermaLink="false">http://gregrickaby.com/?p=2456</guid>
		<description><![CDATA[Ever wanted to use Widgets instead of Hooks? On Pages? Category Archives? Now you can with Widget Me for Thesis. Maybe you wanted to get rid of the default Sidebar Widgets on certain pages and use a specific widget instead? (Great for advertisements)

Thesis purist will be happy, this sub-framework uses HOOKS! No plug-ins, and no [...]]]></description>
			<content:encoded><![CDATA[<p></p><div class="tweetmeme_button" style="float: right; margin-right: 0px; padding: 10px;"><a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fgregrickaby.com%2F2009%2F09%2Fthesis-sub-framework-widget-me.html"><img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fgregrickaby.com%2F2009%2F09%2Fthesis-sub-framework-widget-me.html" height="61" width="51" /></a></div><p>Ever wanted to use Widgets instead of Hooks? On Pages? Category Archives? Now you can with <strong>Widget Me</strong> for Thesis. Maybe you wanted to get rid of the default Sidebar Widgets on certain pages and use a specific widget instead? (Great for advertisements)</p>
<p><a href="http://gregrickaby.com/thesis-sub-framework-widget-me.html"><img class="alignnone size-full wp-image-2457" style="border: 1px solid black;" title="Widget-Me Sub-Framework" src="http://gregrickaby.com/wp-content/uploads/2009/09/widget-me.jpg" alt="Widget-Me Hack" width="640" height="200" /></a></p>
<p>Thesis purist will be happy, this sub-framework uses HOOKS! No plug-ins, and no actual &#8220;hacks&#8221; to accomplish this. All core files remain unchanged.</p>
<p><span id="more-2456"></span><br />
<strong>Introduction Video:</strong><br />
<object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" width="640" height="505" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,40,0"><param name="allowFullScreen" value="true" /><param name="allowscriptaccess" value="always" /><param name="src" value="http://www.youtube.com/v/7YS96LWKAmM&amp;hl=en&amp;fs=1&amp;hd=1" /><param name="allowfullscreen" value="true" /><embed type="application/x-shockwave-flash" width="640" height="505" src="http://www.youtube.com/v/7YS96LWKAmM&amp;hl=en&amp;fs=1&amp;hd=1" allowscriptaccess="always" allowfullscreen="true"></embed></object></p>
<p><strong>Installation Instructions:</strong><br />
<object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" width="640" height="505" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,40,0"><param name="allowFullScreen" value="true" /><param name="allowscriptaccess" value="always" /><param name="src" value="http://www.youtube.com/v/PbicLubU8U0&amp;hl=en&amp;fs=1&amp;hd=1" /><param name="allowfullscreen" value="true" /><embed type="application/x-shockwave-flash" width="640" height="505" src="http://www.youtube.com/v/PbicLubU8U0&amp;hl=en&amp;fs=1&amp;hd=1" allowscriptaccess="always" allowfullscreen="true"></embed></object></p>
<h2>Download v1.5 <a class="downloadlink" href="http://gregrickaby.com/wp-content/plugins/download-monitor/download.php?id=2" title="Versionv1.5 downloaded 112 times" >Widget Me (112)</a></h2>
<p><strong>Requirements:</strong><br />
WordPress 2.8+<br />
Thesis 1.5 &#8211; 1.6b2</p>
<p><strong>Older Versions:</strong><br />
Download v1.2 <a class="downloadlink" href="http://gregrickaby.com/wp-content/plugins/download-monitor/download.php?id=1" title="Version v1.2 downloaded 104 times" >Widget Me (104)</a></p>
<p><strong>Did Widget Me help? Isn&#8217;t it worth at least $1?</strong></p>
<p><strong><a href="https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&amp;hosted_button_id=8695373" target="_blank"><img class="alignnone" title="Donate" src="http://servingcontent.info/data/donate.gif" alt="" width="119" height="56" /></a></strong></p>
<h2 style="text-align: center;">Need help finding a Category ID?</h2>
<p style="text-align: center;"><img class="aligncenter size-full wp-image-2556" style="border: 1px solid black;" title="find-category-id-1" src="http://gregrickaby.com/wp-content/uploads/2009/09/find-category-id-1.gif" alt="find-category-id-1" width="640" height="394" /></p>
<p style="text-align: center;">In your WP Dashboard &#8211;&gt; Posts &#8211;&gt; Categories &#8211;&gt; Click on any Category and look in the Address Bar</p>
<p style="text-align: center;"><img class="aligncenter size-full wp-image-2557" style="border: 1px solid black;" title="find-category-id-2" src="http://gregrickaby.com/wp-content/uploads/2009/09/find-category-id-2.gif" alt="find-category-id-2" width="640" height="394" /></p>
<p style="text-align: center;">In your Widget Me folder&#8211; &gt;rename any of the category-1.php to match the Category ID in YOUR WP</p>



Share and Enjoy:


	<a rel="nofollow" class="thickbox" href="http://ping.fm/ref/?link=http%3A%2F%2Fgregrickaby.com%2F2009%2F09%2Fthesis-sub-framework-widget-me.html&amp;title=Thesis%20Sub-Framework%3A%20Widget%20Me&amp;body=Ever%20wanted%20to%20use%20Widgets%20instead%20of%20Hooks%3F%20On%20Pages%3F%20Category%20Archives%3F%20Now%20you%20can%20with%20Widget%20Me%20for%20Thesis.%20Maybe%20you%20wanted%20to%20get%20rid%20of%20the%20default%20Sidebar%20Widgets%20on%20certain%20pages%20and%20use%20a%20specific%20widget%20instead%3F%20%28Great%20for%20advertisements%29?TB_iframe=true&amp;height=500&amp;width=900"><img src="http://gregrickaby.com/wp-content/plugins/sociable/images/ping.png" title="Ping.fm" alt="Ping.fm" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://twitter.com/home?status=Thesis%20Sub-Framework%3A%20Widget%20Me%20-%20http%3A%2F%2Fgregrickaby.com%2F2009%2F09%2Fthesis-sub-framework-widget-me.html" title="Twitter"><img src="http://gregrickaby.com/wp-content/plugins/sociable/images/twitter.png" title="Twitter" alt="Twitter" class="sociable-hovers" /></a>
	<a rel="nofollow" class="thickbox" href="http://www.facebook.com/share.php?u=http%3A%2F%2Fgregrickaby.com%2F2009%2F09%2Fthesis-sub-framework-widget-me.html&amp;t=Thesis%20Sub-Framework%3A%20Widget%20Me?TB_iframe=true&amp;height=500&amp;width=900"><img src="http://gregrickaby.com/wp-content/plugins/sociable/images/facebook.png" title="Facebook" alt="Facebook" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://www.myspace.com/Modules/PostTo/Pages/?u=http%3A%2F%2Fgregrickaby.com%2F2009%2F09%2Fthesis-sub-framework-widget-me.html&amp;t=Thesis%20Sub-Framework%3A%20Widget%20Me" title="MySpace"><img src="http://gregrickaby.com/wp-content/plugins/sociable/images/myspace.png" title="MySpace" alt="MySpace" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://www.stumbleupon.com/submit?url=http%3A%2F%2Fgregrickaby.com%2F2009%2F09%2Fthesis-sub-framework-widget-me.html&amp;title=Thesis%20Sub-Framework%3A%20Widget%20Me" title="StumbleUpon"><img src="http://gregrickaby.com/wp-content/plugins/sociable/images/stumbleupon.png" title="StumbleUpon" alt="StumbleUpon" class="sociable-hovers" /></a>
	<a rel="nofollow" class="thickbox" href="http://delicious.com/post?url=http%3A%2F%2Fgregrickaby.com%2F2009%2F09%2Fthesis-sub-framework-widget-me.html&amp;title=Thesis%20Sub-Framework%3A%20Widget%20Me&amp;notes=Ever%20wanted%20to%20use%20Widgets%20instead%20of%20Hooks%3F%20On%20Pages%3F%20Category%20Archives%3F%20Now%20you%20can%20with%20Widget%20Me%20for%20Thesis.%20Maybe%20you%20wanted%20to%20get%20rid%20of%20the%20default%20Sidebar%20Widgets%20on%20certain%20pages%20and%20use%20a%20specific%20widget%20instead%3F%20%28Great%20for%20advertisements%29?TB_iframe=true&amp;height=500&amp;width=900"><img src="http://gregrickaby.com/wp-content/plugins/sociable/images/delicious.png" title="del.icio.us" alt="del.icio.us" class="sociable-hovers" /></a>
	<a rel="nofollow" class="thickbox" href="http://digg.com/submit?phase=2&amp;url=http%3A%2F%2Fgregrickaby.com%2F2009%2F09%2Fthesis-sub-framework-widget-me.html&amp;title=Thesis%20Sub-Framework%3A%20Widget%20Me&amp;bodytext=Ever%20wanted%20to%20use%20Widgets%20instead%20of%20Hooks%3F%20On%20Pages%3F%20Category%20Archives%3F%20Now%20you%20can%20with%20Widget%20Me%20for%20Thesis.%20Maybe%20you%20wanted%20to%20get%20rid%20of%20the%20default%20Sidebar%20Widgets%20on%20certain%20pages%20and%20use%20a%20specific%20widget%20instead%3F%20%28Great%20for%20advertisements%29?TB_iframe=true&amp;height=500&amp;width=900"><img src="http://gregrickaby.com/wp-content/plugins/sociable/images/digg.png" title="Digg" alt="Digg" class="sociable-hovers" /></a>
	<a rel="nofollow" class="thickbox" href="http://reddit.com/submit?url=http%3A%2F%2Fgregrickaby.com%2F2009%2F09%2Fthesis-sub-framework-widget-me.html&amp;title=Thesis%20Sub-Framework%3A%20Widget%20Me?TB_iframe=true&amp;height=500&amp;width=900"><img src="http://gregrickaby.com/wp-content/plugins/sociable/images/reddit.png" title="Reddit" alt="Reddit" class="sociable-hovers" /></a>
	<a rel="nofollow" class="thickbox" href="http://cgi.fark.com/cgi/fark/farkit.pl?h=Thesis%20Sub-Framework%3A%20Widget%20Me&amp;u=http%3A%2F%2Fgregrickaby.com%2F2009%2F09%2Fthesis-sub-framework-widget-me.html?TB_iframe=true&amp;height=500&amp;width=900"><img src="http://gregrickaby.com/wp-content/plugins/sociable/images/fark.png" title="Fark" alt="Fark" class="sociable-hovers" /></a>
	<a rel="nofollow" class="thickbox" href="http://technorati.com/faves?add=http%3A%2F%2Fgregrickaby.com%2F2009%2F09%2Fthesis-sub-framework-widget-me.html?TB_iframe=true&amp;height=500&amp;width=900"><img src="http://gregrickaby.com/wp-content/plugins/sociable/images/technorati.png" title="Technorati" alt="Technorati" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://twitter.com/home/?status=tip%20@Techmeme%20http%3A%2F%2Fgregrickaby.com%2F2009%2F09%2Fthesis-sub-framework-widget-me.html%20Thesis%20Sub-Framework%3A%20Widget%20Me" title="Suggest to Techmeme via Twitter"><img src="http://gregrickaby.com/wp-content/plugins/sociable/images/techmeme.png" title="Suggest to Techmeme via Twitter" alt="Suggest to Techmeme via Twitter" class="sociable-hovers" /></a>
	<a rel="nofollow" class="thickbox" href="http://slashdot.org/bookmark.pl?title=Thesis%20Sub-Framework%3A%20Widget%20Me&amp;url=http%3A%2F%2Fgregrickaby.com%2F2009%2F09%2Fthesis-sub-framework-widget-me.html?TB_iframe=true&amp;height=500&amp;width=900"><img src="http://gregrickaby.com/wp-content/plugins/sociable/images/slashdot.png" title="Slashdot" alt="Slashdot" class="sociable-hovers" /></a>
	<a rel="nofollow" class="thickbox" href="https://favorites.live.com/quickadd.aspx?marklet=1&amp;url=http%3A%2F%2Fgregrickaby.com%2F2009%2F09%2Fthesis-sub-framework-widget-me.html&amp;title=Thesis%20Sub-Framework%3A%20Widget%20Me?TB_iframe=true&amp;height=500&amp;width=900"><img src="http://gregrickaby.com/wp-content/plugins/sociable/images/live.png" title="Live" alt="Live" class="sociable-hovers" /></a>
	<a rel="nofollow" class="thickbox" href="http://gregrickaby.com/feed?TB_iframe=true&amp;height=500&amp;width=900"><img src="http://gregrickaby.com/wp-content/plugins/sociable/images/rss.png" title="RSS" alt="RSS" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="mailto:?subject=Thesis%20Sub-Framework%3A%20Widget%20Me&amp;body=http%3A%2F%2Fgregrickaby.com%2F2009%2F09%2Fthesis-sub-framework-widget-me.html" title="email"><img src="http://gregrickaby.com/wp-content/plugins/sociable/images/email_link.png" title="email" alt="email" class="sociable-hovers" /></a>
	<a rel="nofollow" class="thickbox" href="http://www.printfriendly.com/print?url=http%3A%2F%2Fgregrickaby.com%2F2009%2F09%2Fthesis-sub-framework-widget-me.html&amp;partner=sociable?TB_iframe=true&amp;height=500&amp;width=900"><img src="http://gregrickaby.com/wp-content/plugins/sociable/images/printfriendly.png" title="Print" alt="Print" class="sociable-hovers" /></a>


<br/><br/><div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/gregrickaby?a=W6zSY1asoIQ:LR6v8G6Qnyk:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/gregrickaby?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/gregrickaby?a=W6zSY1asoIQ:LR6v8G6Qnyk:F7zBnMyn0Lo"><img src="http://feeds.feedburner.com/~ff/gregrickaby?i=W6zSY1asoIQ:LR6v8G6Qnyk:F7zBnMyn0Lo" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/gregrickaby?a=W6zSY1asoIQ:LR6v8G6Qnyk:7Q72WNTAKBA"><img src="http://feeds.feedburner.com/~ff/gregrickaby?d=7Q72WNTAKBA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/gregrickaby?a=W6zSY1asoIQ:LR6v8G6Qnyk:V_sGLiPBpWU"><img src="http://feeds.feedburner.com/~ff/gregrickaby?i=W6zSY1asoIQ:LR6v8G6Qnyk:V_sGLiPBpWU" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/gregrickaby?a=W6zSY1asoIQ:LR6v8G6Qnyk:qj6IDK7rITs"><img src="http://feeds.feedburner.com/~ff/gregrickaby?d=qj6IDK7rITs" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/gregrickaby?a=W6zSY1asoIQ:LR6v8G6Qnyk:gIN9vFwOqvQ"><img src="http://feeds.feedburner.com/~ff/gregrickaby?i=W6zSY1asoIQ:LR6v8G6Qnyk:gIN9vFwOqvQ" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/gregrickaby?a=W6zSY1asoIQ:LR6v8G6Qnyk:l6gmwiTKsz0"><img src="http://feeds.feedburner.com/~ff/gregrickaby?d=l6gmwiTKsz0" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/gregrickaby?a=W6zSY1asoIQ:LR6v8G6Qnyk:TzevzKxY174"><img src="http://feeds.feedburner.com/~ff/gregrickaby?d=TzevzKxY174" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/gregrickaby/~4/W6zSY1asoIQ" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://gregrickaby.com/2009/09/thesis-sub-framework-widget-me.html/feed</wfw:commentRss>
		<slash:comments>32</slash:comments>
		<feedburner:origLink>http://gregrickaby.com/2009/09/thesis-sub-framework-widget-me.html</feedburner:origLink></item>
		<item>
		<title>Thesis 1.6: Upgrade in 15 Minutes</title>
		<link>http://feedproxy.google.com/~r/gregrickaby/~3/m7YZLe1dOfw/thesis-1-6-upgrade-in-15-minutes.html</link>
		<comments>http://gregrickaby.com/2009/09/thesis-1-6-upgrade-in-15-minutes.html#comments</comments>
		<pubDate>Sun, 13 Sep 2009 10:49:33 +0000</pubDate>
		<dc:creator>Greg Rickaby</dc:creator>
				<category><![CDATA[Tutorials]]></category>
		<category><![CDATA[CSS]]></category>
		<category><![CDATA[Customization]]></category>
		<category><![CDATA[Thesis 1.6]]></category>
		<category><![CDATA[Time Saving Tips]]></category>

		<guid isPermaLink="false">http://gregrickaby.com/?p=2430</guid>
		<description><![CDATA[Like it or not, Thesis 1.6 is here. While it may take a little time to tweak your older sites, fear not!
I will show how to do it in less than 15 minutes.


Step 0.5: Back-up Thesis 1.5!
Step 1: Upload Thesis 1.6 (for more instructions see the Dev Site)
Step 2: Log-into your WP Dashboard and click, [...]]]></description>
			<content:encoded><![CDATA[<p></p><div class="tweetmeme_button" style="float: right; margin-right: 0px; padding: 10px;"><a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fgregrickaby.com%2F2009%2F09%2Fthesis-1-6-upgrade-in-15-minutes.html"><img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fgregrickaby.com%2F2009%2F09%2Fthesis-1-6-upgrade-in-15-minutes.html" height="61" width="51" /></a></div><p>Like it or not, Thesis 1.6 is here. While it may take a little time to tweak your older sites, fear not!<br />
I will show how to do it in less than 15 minutes.</p>
<p><a href="http://gregrickaby.com/thesis-1-6-upgrade-in-15-minutes.html"><img class="alignnone size-full wp-image-2431" title="Thesis 1.6: Upgrade in 15 Minutes" src="http://gregrickaby.com/wp-content/uploads/2009/09/next-exit-thesis-1.6.gif" alt="Thesis 1.6: Upgrade in 15 Minutes" width="640" height="200" /></a></p>
<p><span id="more-2430"></span></p>
<p><strong>Step 0.5: </strong>Back-up Thesis 1.5!</p>
<p><strong>Step 1: </strong>Upload Thesis 1.6 (for more instructions <a href="http://diythemes.com/thesis/downloads/" target="_blank">see the Dev Site</a>)</p>
<p><strong>Step 2: </strong>Log-into your WP Dashboard and click, &#8220;Thesis Options&#8221;</p>
<p><strong>Step 3:</strong> Click &#8211;&gt; Upgrade Thesis</p>
<p><a href="http://gregrickaby.com/wp-content/uploads/2009/09/upgrade-thesis-step-00.gif" target="_blank"><img class="alignnone size-thumbnail wp-image-2439" style="border: 1px solid black;" title="Click the big green button!" src="http://gregrickaby.com/wp-content/uploads/2009/09/upgrade-thesis-step-00-150x150.gif" alt="Click the big green button!" width="150" height="150" /></a></p>
<p><strong>Step 4:</strong> Verify the Upgrade (the <a href="http://gregrickaby.com/2009/09/oh-crap-your-thesis-customization-isnt-future-proof.html" target="_blank">&#8216;Oh Crap&#8217;</a> part) by viewing your homepage</p>
<p><a href="http://gregrickaby.com/wp-content/uploads/2009/09/upgrade-thesis-step-1.gif" target="_blank"></a><a href="http://gregrickaby.com/wp-content/uploads/2009/09/upgrade-thesis-step-1.gif" target="_blank"><img class="alignnone size-thumbnail wp-image-2435" style="border: 1px solid black;" title="The 'Oh Crap' Part" src="http://gregrickaby.com/wp-content/uploads/2009/09/upgrade-thesis-step-1-150x150.gif" alt="The 'Oh Crap' Part" width="150" height="150" /></a></p>
<p><strong>Step 5:</strong> In the WP-Dashboard: Thesis Options &#8211;&gt;&#8221;Design Options&#8221;</p>
<p>Now you can re-style your navigation and background using the new visual interface!</p>
<p><a href="http://gregrickaby.com/wp-content/uploads/2009/09/upgrade-thesis-step-0.gif" target="_blank"><img class="alignnone size-thumbnail wp-image-2434" style="border: 1px solid black;" title="Restyle your navigation" src="http://gregrickaby.com/wp-content/uploads/2009/09/upgrade-thesis-step-0-150x150.gif" alt="Restyle your navigation" width="150" height="150" /></a></p>
<h3>For some of you that was is it. You&#8217;re finished! For others&#8230;</h3>
<p><strong>Step 6:</strong> Open your favorite CSS editor</p>
<p>Did you have an image for a background? Now it&#8217;s white? <strong> Snuff out the white background with this code:</strong></p>
<p style="padding-left: 30px;"><strong>If you have: Full-Width Framework:</strong></p>
<pre style="padding-left: 30px;">.custom .full_width &gt; .page {
	background-color: transparent;
}</pre>
<p style="padding-left: 30px;"><strong>If you have: </strong><strong>Page-Width Framework:</strong></p>
<pre style="padding-left: 30px;">.custom #page {
	background-color: transparent;
}</pre>
<p><a href="http://gregrickaby.com/wp-content/uploads/2009/09/upgrade-thesis-step-2.gif" target="_blank"><img class="alignnone size-thumbnail wp-image-2436" style="border: 1px solid black;" title="Snuff out the White Background" src="http://gregrickaby.com/wp-content/uploads/2009/09/upgrade-thesis-step-2-150x150.gif" alt="Snuff out the White Background" width="150" height="150" /></a></p>
<p>Good work. Now we have to <strong>nix the borders and white background on the nav</strong>:</p>
<pre>.custom .menu {
	border:none;
}
.custom .menu a {
	border:none;
	background-color: transparent;
}
.custom .menu a:hover {
	background-color: transparent;
}</pre>
<p><a href="http://gregrickaby.com/wp-content/uploads/2009/09/upgrade-thesis-step-3.gif" target="_blank"><img class="alignnone size-thumbnail wp-image-2437" style="border: 1px solid black;" title="Nix the borders and white background" src="http://gregrickaby.com/wp-content/uploads/2009/09/upgrade-thesis-step-3-150x150.gif" alt="Nix the borders and white background" width="150" height="150" /></a></p>
<p><strong>Optional: </strong>Get rid of the extra letter spacing, underline the links, de-underline the hover, and make the &#8216;current&#8217; page bold:</p>
<pre>.custom .menu {
	border:none;
}
.custom .menu a {
	border:none;
	background-color: transparent;
	text-decoration: underline;
	letter-spacing: normal;
}
.custom .menu a:hover {
	background-color: transparent;
	text-decoration: none;
}
.custom .menu .current {
	font-weight: bold;
}</pre>
<p><a href="http://gregrickaby.com/wp-content/uploads/2009/09/upgrade-thesis-after.gif" target="_blank"><img class="alignnone size-thumbnail wp-image-2432" style="border: 1px solid black;" title="Done! Ta-Da!" src="http://gregrickaby.com/wp-content/uploads/2009/09/upgrade-thesis-after-150x150.gif" alt="Done! Ta-Da!" width="150" height="150" /></a></p>
<p><strong>Step 7:</strong> Sigh and repeat after me: &#8220;That wasn&#8217;t bad&#8230;&#8221;</p>
<p>While a pain-in-the-butt this is, you&#8217;re now rockin&#8217; Thesis 1.6. Bring on 1.7!</p>
<h3><a href="http://diythemes.com/thesis/downloads/" target="_blank">Download Thesis 1.6 Now</a></h3>
<h3>Don’t Have Thesis? <a href="http://bit.ly/dwnthesis" target="_blank">Download a copy!</a></h3>



Share and Enjoy:


	<a rel="nofollow" class="thickbox" href="http://ping.fm/ref/?link=http%3A%2F%2Fgregrickaby.com%2F2009%2F09%2Fthesis-1-6-upgrade-in-15-minutes.html&amp;title=Thesis%201.6%3A%20Upgrade%20in%2015%20Minutes&amp;body=Like%20it%20or%20not%2C%20Thesis%201.6%20is%20here.%20While%20it%20may%20take%20a%20little%20time%20to%20tweak%20your%20older%20sites%2C%20fear%20not%21%0D%0AI%20will%20show%20how%20to%20do%20it%20in%20less%20than%2015%20minutes.%0D%0A%0D%0A%0D%0A%0D%0A%0D%0A%0D%0AStep%200.5%3A%20Back-up%20Thesis%201.5%21%0D%0A%0D%0AStep%201%3A%20Upload%20Thesis%201.6%20%28for%20more%20instructions%20s?TB_iframe=true&amp;height=500&amp;width=900"><img src="http://gregrickaby.com/wp-content/plugins/sociable/images/ping.png" title="Ping.fm" alt="Ping.fm" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://twitter.com/home?status=Thesis%201.6%3A%20Upgrade%20in%2015%20Minutes%20-%20http%3A%2F%2Fgregrickaby.com%2F2009%2F09%2Fthesis-1-6-upgrade-in-15-minutes.html" title="Twitter"><img src="http://gregrickaby.com/wp-content/plugins/sociable/images/twitter.png" title="Twitter" alt="Twitter" class="sociable-hovers" /></a>
	<a rel="nofollow" class="thickbox" href="http://www.facebook.com/share.php?u=http%3A%2F%2Fgregrickaby.com%2F2009%2F09%2Fthesis-1-6-upgrade-in-15-minutes.html&amp;t=Thesis%201.6%3A%20Upgrade%20in%2015%20Minutes?TB_iframe=true&amp;height=500&amp;width=900"><img src="http://gregrickaby.com/wp-content/plugins/sociable/images/facebook.png" title="Facebook" alt="Facebook" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://www.myspace.com/Modules/PostTo/Pages/?u=http%3A%2F%2Fgregrickaby.com%2F2009%2F09%2Fthesis-1-6-upgrade-in-15-minutes.html&amp;t=Thesis%201.6%3A%20Upgrade%20in%2015%20Minutes" title="MySpace"><img src="http://gregrickaby.com/wp-content/plugins/sociable/images/myspace.png" title="MySpace" alt="MySpace" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://www.stumbleupon.com/submit?url=http%3A%2F%2Fgregrickaby.com%2F2009%2F09%2Fthesis-1-6-upgrade-in-15-minutes.html&amp;title=Thesis%201.6%3A%20Upgrade%20in%2015%20Minutes" title="StumbleUpon"><img src="http://gregrickaby.com/wp-content/plugins/sociable/images/stumbleupon.png" title="StumbleUpon" alt="StumbleUpon" class="sociable-hovers" /></a>
	<a rel="nofollow" class="thickbox" href="http://delicious.com/post?url=http%3A%2F%2Fgregrickaby.com%2F2009%2F09%2Fthesis-1-6-upgrade-in-15-minutes.html&amp;title=Thesis%201.6%3A%20Upgrade%20in%2015%20Minutes&amp;notes=Like%20it%20or%20not%2C%20Thesis%201.6%20is%20here.%20While%20it%20may%20take%20a%20little%20time%20to%20tweak%20your%20older%20sites%2C%20fear%20not%21%0D%0AI%20will%20show%20how%20to%20do%20it%20in%20less%20than%2015%20minutes.%0D%0A%0D%0A%0D%0A%0D%0A%0D%0A%0D%0AStep%200.5%3A%20Back-up%20Thesis%201.5%21%0D%0A%0D%0AStep%201%3A%20Upload%20Thesis%201.6%20%28for%20more%20instructions%20s?TB_iframe=true&amp;height=500&amp;width=900"><img src="http://gregrickaby.com/wp-content/plugins/sociable/images/delicious.png" title="del.icio.us" alt="del.icio.us" class="sociable-hovers" /></a>
	<a rel="nofollow" class="thickbox" href="http://digg.com/submit?phase=2&amp;url=http%3A%2F%2Fgregrickaby.com%2F2009%2F09%2Fthesis-1-6-upgrade-in-15-minutes.html&amp;title=Thesis%201.6%3A%20Upgrade%20in%2015%20Minutes&amp;bodytext=Like%20it%20or%20not%2C%20Thesis%201.6%20is%20here.%20While%20it%20may%20take%20a%20little%20time%20to%20tweak%20your%20older%20sites%2C%20fear%20not%21%0D%0AI%20will%20show%20how%20to%20do%20it%20in%20less%20than%2015%20minutes.%0D%0A%0D%0A%0D%0A%0D%0A%0D%0A%0D%0AStep%200.5%3A%20Back-up%20Thesis%201.5%21%0D%0A%0D%0AStep%201%3A%20Upload%20Thesis%201.6%20%28for%20more%20instructions%20s?TB_iframe=true&amp;height=500&amp;width=900"><img src="http://gregrickaby.com/wp-content/plugins/sociable/images/digg.png" title="Digg" alt="Digg" class="sociable-hovers" /></a>
	<a rel="nofollow" class="thickbox" href="http://reddit.com/submit?url=http%3A%2F%2Fgregrickaby.com%2F2009%2F09%2Fthesis-1-6-upgrade-in-15-minutes.html&amp;title=Thesis%201.6%3A%20Upgrade%20in%2015%20Minutes?TB_iframe=true&amp;height=500&amp;width=900"><img src="http://gregrickaby.com/wp-content/plugins/sociable/images/reddit.png" title="Reddit" alt="Reddit" class="sociable-hovers" /></a>
	<a rel="nofollow" class="thickbox" href="http://cgi.fark.com/cgi/fark/farkit.pl?h=Thesis%201.6%3A%20Upgrade%20in%2015%20Minutes&amp;u=http%3A%2F%2Fgregrickaby.com%2F2009%2F09%2Fthesis-1-6-upgrade-in-15-minutes.html?TB_iframe=true&amp;height=500&amp;width=900"><img src="http://gregrickaby.com/wp-content/plugins/sociable/images/fark.png" title="Fark" alt="Fark" class="sociable-hovers" /></a>
	<a rel="nofollow" class="thickbox" href="http://technorati.com/faves?add=http%3A%2F%2Fgregrickaby.com%2F2009%2F09%2Fthesis-1-6-upgrade-in-15-minutes.html?TB_iframe=true&amp;height=500&amp;width=900"><img src="http://gregrickaby.com/wp-content/plugins/sociable/images/technorati.png" title="Technorati" alt="Technorati" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://twitter.com/home/?status=tip%20@Techmeme%20http%3A%2F%2Fgregrickaby.com%2F2009%2F09%2Fthesis-1-6-upgrade-in-15-minutes.html%20Thesis%201.6%3A%20Upgrade%20in%2015%20Minutes" title="Suggest to Techmeme via Twitter"><img src="http://gregrickaby.com/wp-content/plugins/sociable/images/techmeme.png" title="Suggest to Techmeme via Twitter" alt="Suggest to Techmeme via Twitter" class="sociable-hovers" /></a>
	<a rel="nofollow" class="thickbox" href="http://slashdot.org/bookmark.pl?title=Thesis%201.6%3A%20Upgrade%20in%2015%20Minutes&amp;url=http%3A%2F%2Fgregrickaby.com%2F2009%2F09%2Fthesis-1-6-upgrade-in-15-minutes.html?TB_iframe=true&amp;height=500&amp;width=900"><img src="http://gregrickaby.com/wp-content/plugins/sociable/images/slashdot.png" title="Slashdot" alt="Slashdot" class="sociable-hovers" /></a>
	<a rel="nofollow" class="thickbox" href="https://favorites.live.com/quickadd.aspx?marklet=1&amp;url=http%3A%2F%2Fgregrickaby.com%2F2009%2F09%2Fthesis-1-6-upgrade-in-15-minutes.html&amp;title=Thesis%201.6%3A%20Upgrade%20in%2015%20Minutes?TB_iframe=true&amp;height=500&amp;width=900"><img src="http://gregrickaby.com/wp-content/plugins/sociable/images/live.png" title="Live" alt="Live" class="sociable-hovers" /></a>
	<a rel="nofollow" class="thickbox" href="http://gregrickaby.com/feed?TB_iframe=true&amp;height=500&amp;width=900"><img src="http://gregrickaby.com/wp-content/plugins/sociable/images/rss.png" title="RSS" alt="RSS" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="mailto:?subject=Thesis%201.6%3A%20Upgrade%20in%2015%20Minutes&amp;body=http%3A%2F%2Fgregrickaby.com%2F2009%2F09%2Fthesis-1-6-upgrade-in-15-minutes.html" title="email"><img src="http://gregrickaby.com/wp-content/plugins/sociable/images/email_link.png" title="email" alt="email" class="sociable-hovers" /></a>
	<a rel="nofollow" class="thickbox" href="http://www.printfriendly.com/print?url=http%3A%2F%2Fgregrickaby.com%2F2009%2F09%2Fthesis-1-6-upgrade-in-15-minutes.html&amp;partner=sociable?TB_iframe=true&amp;height=500&amp;width=900"><img src="http://gregrickaby.com/wp-content/plugins/sociable/images/printfriendly.png" title="Print" alt="Print" class="sociable-hovers" /></a>


<br/><br/><div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/gregrickaby?a=m7YZLe1dOfw:uywUrp8FQ6c:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/gregrickaby?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/gregrickaby?a=m7YZLe1dOfw:uywUrp8FQ6c:F7zBnMyn0Lo"><img src="http://feeds.feedburner.com/~ff/gregrickaby?i=m7YZLe1dOfw:uywUrp8FQ6c:F7zBnMyn0Lo" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/gregrickaby?a=m7YZLe1dOfw:uywUrp8FQ6c:7Q72WNTAKBA"><img src="http://feeds.feedburner.com/~ff/gregrickaby?d=7Q72WNTAKBA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/gregrickaby?a=m7YZLe1dOfw:uywUrp8FQ6c:V_sGLiPBpWU"><img src="http://feeds.feedburner.com/~ff/gregrickaby?i=m7YZLe1dOfw:uywUrp8FQ6c:V_sGLiPBpWU" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/gregrickaby?a=m7YZLe1dOfw:uywUrp8FQ6c:qj6IDK7rITs"><img src="http://feeds.feedburner.com/~ff/gregrickaby?d=qj6IDK7rITs" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/gregrickaby?a=m7YZLe1dOfw:uywUrp8FQ6c:gIN9vFwOqvQ"><img src="http://feeds.feedburner.com/~ff/gregrickaby?i=m7YZLe1dOfw:uywUrp8FQ6c:gIN9vFwOqvQ" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/gregrickaby?a=m7YZLe1dOfw:uywUrp8FQ6c:l6gmwiTKsz0"><img src="http://feeds.feedburner.com/~ff/gregrickaby?d=l6gmwiTKsz0" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/gregrickaby?a=m7YZLe1dOfw:uywUrp8FQ6c:TzevzKxY174"><img src="http://feeds.feedburner.com/~ff/gregrickaby?d=TzevzKxY174" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/gregrickaby/~4/m7YZLe1dOfw" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://gregrickaby.com/2009/09/thesis-1-6-upgrade-in-15-minutes.html/feed</wfw:commentRss>
		<slash:comments>15</slash:comments>
		<feedburner:origLink>http://gregrickaby.com/2009/09/thesis-1-6-upgrade-in-15-minutes.html</feedburner:origLink></item>
		<item>
		<title>Oh Crap: Your Thesis Customization isn’t Future Proof</title>
		<link>http://feedproxy.google.com/~r/gregrickaby/~3/7QU35VFU9mk/oh-crap-your-thesis-customization-isnt-future-proof.html</link>
		<comments>http://gregrickaby.com/2009/09/oh-crap-your-thesis-customization-isnt-future-proof.html#comments</comments>
		<pubDate>Thu, 10 Sep 2009 16:32:21 +0000</pubDate>
		<dc:creator>Greg Rickaby</dc:creator>
				<category><![CDATA[Articles]]></category>
		<category><![CDATA[CSS]]></category>
		<category><![CDATA[Customization]]></category>
		<category><![CDATA[Thesis 1.6]]></category>
		<category><![CDATA[Thesis Skins]]></category>
		<category><![CDATA[Time Saving Tips]]></category>

		<guid isPermaLink="false">http://gregrickaby.com/?p=2394</guid>
		<description><![CDATA[The scenario: You&#8217;re a have 20+ Thesis sites you maintain. Thesis 1.6 is out, should you upgrade? What will happen if I do? I&#8217;ll show you the horrific truth right now.


Let me preface here. I LOVE Thesis. The last year I have designed ONLY with Thesis. I contribute to the support forums, I&#8217;m a Certified [...]]]></description>
			<content:encoded><![CDATA[<p></p><div class="tweetmeme_button" style="float: right; margin-right: 0px; padding: 10px;"><a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fgregrickaby.com%2F2009%2F09%2Foh-crap-your-thesis-customization-isnt-future-proof.html"><img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fgregrickaby.com%2F2009%2F09%2Foh-crap-your-thesis-customization-isnt-future-proof.html" height="61" width="51" /></a></div><p>The scenario: You&#8217;re a have 20+ Thesis sites you maintain. Thesis 1.6 is out, should you upgrade? What will happen if I do? I&#8217;ll show you the horrific truth right now.</p>
<p><a href="http://gregrickaby.com/oh-crap-your-thesis-customization-isnt-future-proof.html"><img class="alignnone size-full wp-image-2395" title="Thesis 1.6 Drop Downs: OH CRAP!" src="http://gregrickaby.com/wp-content/uploads/2009/09/thesis-drop-down-crap.gif" alt="thesis-drop-down-crap" width="500" height="175" /></a></p>
<p><span id="more-2394"></span></p>
<p style="padding-left: 30px;"><em>Let me preface here. I LOVE Thesis. The last year I have designed ONLY with Thesis. I contribute to the support forums, I&#8217;m a Certified Designer, etc&#8230; This is just too gory not to share.</em></p>
<p><strong>On the left: </strong>Fresh install of Wordpress/Thesis 1.5.1 and the Wasabi Skin</p>
<p><strong>On the right:</strong> Upgrade to Thesis 1.6 and the Wasabi Skin</p>
<p><a href="http://gregrickaby.com/wp-content/uploads/2009/09/before.jpg" target="_blank"><img class="size-thumbnail wp-image-2406 alignleft" style="border: 1px solid black; margin: 5px 10px;" title="Before (Thesis 1.5.1)" src="http://gregrickaby.com/wp-content/uploads/2009/09/before-150x150.jpg" alt="Before (Thesis 1.5.1)" width="150" height="150" /></a><a href="http://gregrickaby.com/wp-content/uploads/2009/09/after.jpg" target="_blank"><img class="size-thumbnail wp-image-2407 alignleft" style="border: 1px solid black; margin: 5px 10px;" title="After (Thesis 1.6)" src="http://gregrickaby.com/wp-content/uploads/2009/09/after-150x150.jpg" alt="Before (Thesis 1.6)" width="150" height="150" /></a><br />
<br />&nbsp;<br />&nbsp;<br />&nbsp;<br />&nbsp;<br />&nbsp;<br />&nbsp;<br />
Oh Crap.</p>
<p>With the onset of the drop-down nav and cool shadow features in Thesis 1.6 you are left with the scenario above.</p>
<p>#tabs aren&#8217;t the Tabs anymore. They are now .menu</p>
<p>I&#8217;ll explain:</p>
<p style="padding-left: 30px;">#tabs = .menu</p>
<p style="padding-left: 30px;">#tabs a = .menu a</p>
<p style="padding-left: 30px;">#tabs a:hover = .menu a:hover</p>
<p style="padding-left: 30px;">#tabs .current_page_current = .menu .current</p>
<p style="padding-left: 30px;">#tabs .current-cat = .menu .tab.current</p>
<p style="padding-left: 30px;">ul#tabs li = .menu li ul</p>
<p class="selector">Oh the horror. Every Thesis customization you&#8217;ve ever done will require a fix.</p>
<p><strong>Here is what was required for me to turn Wasabi back to normal:</strong></p>
<pre>/* ----- THESIS 1.6 UPDATES ---- */
.custom .full_width &gt; .page {
	background-color: transparent;
	background-image: none;
	background-repeat: repeat;
	background-attachment: scroll;
	background-position: 0% 0%;
}
.custom .menu {
	background:#000;
	padding:0.75em 0.5em;
	-moz-border-radius:7px 7px 0 0;
	-webkit-border-top-right-radius:7px;
	-webkit-border-top-left-radius:7px;
	border-top-width: 1px;
	border-top-style: solid;
	border-top-color: #610403;
	border-right-color: #610403;
	border-left-color: #610403;
	border-right-width: 1px;
	border-left-width: 1px;
	border-right-style: solid;
	border-bottom-style: none;
	border-left-style: solid;
}
.custom .menu a {
	background:none;
	border:none;
}
.custom .menu a:hover {
	color: #8E0521;
	background:none;
}
.custom .menu .current {
	color: #fff;
	background-color: #8E0521;
}
.custom .menu .current:hover {
	color: #fff;
	background-color: #8E0521;
}
h1, h2, h2 a {
	color: #fff;
}</pre>
<div id="_mcePaste" style="overflow: hidden; position: absolute; left: -10000px; top: 627px; width: 1px; height: 1px;">
<pre>.menu a</pre>
</div>
<p><a href="http://gregrickaby.com/wp-content/uploads/2009/09/wasabi-normal-1.6.jpg" target="_blank"><img class="alignnone size-medium wp-image-2404" style="border: 1px solid black; margin: 10px;" title="Back to normal" src="http://gregrickaby.com/wp-content/uploads/2009/09/wasabi-normal-1.6-443x480.jpg" alt="Back to normal" width="443" height="480" /></a></p>
<p>This isn&#8217;t something that will fix itself with a mouse click. This is going to require ALL OF US, to re-visit all our pre-1.6 customized sites and do some work.</p>



Share and Enjoy:


	<a rel="nofollow" class="thickbox" href="http://ping.fm/ref/?link=http%3A%2F%2Fgregrickaby.com%2F2009%2F09%2Foh-crap-your-thesis-customization-isnt-future-proof.html&amp;title=Oh%20Crap%3A%20Your%20Thesis%20Customization%20isn%27t%20Future%20Proof&amp;body=The%20scenario%3A%20You%27re%20a%20have%2020%2B%20Thesis%20sites%20you%20maintain.%20Thesis%201.6%20is%20out%2C%20should%20you%20upgrade%3F%20What%20will%20happen%20if%20I%20do%3F%20I%27ll%20show%20you%20the%20horrific%20truth%20right%20now.%0D%0A%0D%0A%0D%0A%0D%0A%0D%0ALet%20me%20preface%20here.%20I%20LOVE%20Thesis.%20The%20last%20year%20I%20have%20designed%20ONLY%20wi?TB_iframe=true&amp;height=500&amp;width=900"><img src="http://gregrickaby.com/wp-content/plugins/sociable/images/ping.png" title="Ping.fm" alt="Ping.fm" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://twitter.com/home?status=Oh%20Crap%3A%20Your%20Thesis%20Customization%20isn%27t%20Future%20Proof%20-%20http%3A%2F%2Fgregrickaby.com%2F2009%2F09%2Foh-crap-your-thesis-customization-isnt-future-proof.html" title="Twitter"><img src="http://gregrickaby.com/wp-content/plugins/sociable/images/twitter.png" title="Twitter" alt="Twitter" class="sociable-hovers" /></a>
	<a rel="nofollow" class="thickbox" href="http://www.facebook.com/share.php?u=http%3A%2F%2Fgregrickaby.com%2F2009%2F09%2Foh-crap-your-thesis-customization-isnt-future-proof.html&amp;t=Oh%20Crap%3A%20Your%20Thesis%20Customization%20isn%27t%20Future%20Proof?TB_iframe=true&amp;height=500&amp;width=900"><img src="http://gregrickaby.com/wp-content/plugins/sociable/images/facebook.png" title="Facebook" alt="Facebook" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://www.myspace.com/Modules/PostTo/Pages/?u=http%3A%2F%2Fgregrickaby.com%2F2009%2F09%2Foh-crap-your-thesis-customization-isnt-future-proof.html&amp;t=Oh%20Crap%3A%20Your%20Thesis%20Customization%20isn%27t%20Future%20Proof" title="MySpace"><img src="http://gregrickaby.com/wp-content/plugins/sociable/images/myspace.png" title="MySpace" alt="MySpace" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://www.stumbleupon.com/submit?url=http%3A%2F%2Fgregrickaby.com%2F2009%2F09%2Foh-crap-your-thesis-customization-isnt-future-proof.html&amp;title=Oh%20Crap%3A%20Your%20Thesis%20Customization%20isn%27t%20Future%20Proof" title="StumbleUpon"><img src="http://gregrickaby.com/wp-content/plugins/sociable/images/stumbleupon.png" title="StumbleUpon" alt="StumbleUpon" class="sociable-hovers" /></a>
	<a rel="nofollow" class="thickbox" href="http://delicious.com/post?url=http%3A%2F%2Fgregrickaby.com%2F2009%2F09%2Foh-crap-your-thesis-customization-isnt-future-proof.html&amp;title=Oh%20Crap%3A%20Your%20Thesis%20Customization%20isn%27t%20Future%20Proof&amp;notes=The%20scenario%3A%20You%27re%20a%20have%2020%2B%20Thesis%20sites%20you%20maintain.%20Thesis%201.6%20is%20out%2C%20should%20you%20upgrade%3F%20What%20will%20happen%20if%20I%20do%3F%20I%27ll%20show%20you%20the%20horrific%20truth%20right%20now.%0D%0A%0D%0A%0D%0A%0D%0A%0D%0ALet%20me%20preface%20here.%20I%20LOVE%20Thesis.%20The%20last%20year%20I%20have%20designed%20ONLY%20wi?TB_iframe=true&amp;height=500&amp;width=900"><img src="http://gregrickaby.com/wp-content/plugins/sociable/images/delicious.png" title="del.icio.us" alt="del.icio.us" class="sociable-hovers" /></a>
	<a rel="nofollow" class="thickbox" href="http://digg.com/submit?phase=2&amp;url=http%3A%2F%2Fgregrickaby.com%2F2009%2F09%2Foh-crap-your-thesis-customization-isnt-future-proof.html&amp;title=Oh%20Crap%3A%20Your%20Thesis%20Customization%20isn%27t%20Future%20Proof&amp;bodytext=The%20scenario%3A%20You%27re%20a%20have%2020%2B%20Thesis%20sites%20you%20maintain.%20Thesis%201.6%20is%20out%2C%20should%20you%20upgrade%3F%20What%20will%20happen%20if%20I%20do%3F%20I%27ll%20show%20you%20the%20horrific%20truth%20right%20now.%0D%0A%0D%0A%0D%0A%0D%0A%0D%0ALet%20me%20preface%20here.%20I%20LOVE%20Thesis.%20The%20last%20year%20I%20have%20designed%20ONLY%20wi?TB_iframe=true&amp;height=500&amp;width=900"><img src="http://gregrickaby.com/wp-content/plugins/sociable/images/digg.png" title="Digg" alt="Digg" class="sociable-hovers" /></a>
	<a rel="nofollow" class="thickbox" href="http://reddit.com/submit?url=http%3A%2F%2Fgregrickaby.com%2F2009%2F09%2Foh-crap-your-thesis-customization-isnt-future-proof.html&amp;title=Oh%20Crap%3A%20Your%20Thesis%20Customization%20isn%27t%20Future%20Proof?TB_iframe=true&amp;height=500&amp;width=900"><img src="http://gregrickaby.com/wp-content/plugins/sociable/images/reddit.png" title="Reddit" alt="Reddit" class="sociable-hovers" /></a>
	<a rel="nofollow" class="thickbox" href="http://cgi.fark.com/cgi/fark/farkit.pl?h=Oh%20Crap%3A%20Your%20Thesis%20Customization%20isn%27t%20Future%20Proof&amp;u=http%3A%2F%2Fgregrickaby.com%2F2009%2F09%2Foh-crap-your-thesis-customization-isnt-future-proof.html?TB_iframe=true&amp;height=500&amp;width=900"><img src="http://gregrickaby.com/wp-content/plugins/sociable/images/fark.png" title="Fark" alt="Fark" class="sociable-hovers" /></a>
	<a rel="nofollow" class="thickbox" href="http://technorati.com/faves?add=http%3A%2F%2Fgregrickaby.com%2F2009%2F09%2Foh-crap-your-thesis-customization-isnt-future-proof.html?TB_iframe=true&amp;height=500&amp;width=900"><img src="http://gregrickaby.com/wp-content/plugins/sociable/images/technorati.png" title="Technorati" alt="Technorati" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://twitter.com/home/?status=tip%20@Techmeme%20http%3A%2F%2Fgregrickaby.com%2F2009%2F09%2Foh-crap-your-thesis-customization-isnt-future-proof.html%20Oh%20Crap%3A%20Your%20Thesis%20Customization%20isn%27t%20Future%20Proof" title="Suggest to Techmeme via Twitter"><img src="http://gregrickaby.com/wp-content/plugins/sociable/images/techmeme.png" title="Suggest to Techmeme via Twitter" alt="Suggest to Techmeme via Twitter" class="sociable-hovers" /></a>
	<a rel="nofollow" class="thickbox" href="http://slashdot.org/bookmark.pl?title=Oh%20Crap%3A%20Your%20Thesis%20Customization%20isn%27t%20Future%20Proof&amp;url=http%3A%2F%2Fgregrickaby.com%2F2009%2F09%2Foh-crap-your-thesis-customization-isnt-future-proof.html?TB_iframe=true&amp;height=500&amp;width=900"><img src="http://gregrickaby.com/wp-content/plugins/sociable/images/slashdot.png" title="Slashdot" alt="Slashdot" class="sociable-hovers" /></a>
	<a rel="nofollow" class="thickbox" href="https://favorites.live.com/quickadd.aspx?marklet=1&amp;url=http%3A%2F%2Fgregrickaby.com%2F2009%2F09%2Foh-crap-your-thesis-customization-isnt-future-proof.html&amp;title=Oh%20Crap%3A%20Your%20Thesis%20Customization%20isn%27t%20Future%20Proof?TB_iframe=true&amp;height=500&amp;width=900"><img src="http://gregrickaby.com/wp-content/plugins/sociable/images/live.png" title="Live" alt="Live" class="sociable-hovers" /></a>
	<a rel="nofollow" class="thickbox" href="http://gregrickaby.com/feed?TB_iframe=true&amp;height=500&amp;width=900"><img src="http://gregrickaby.com/wp-content/plugins/sociable/images/rss.png" title="RSS" alt="RSS" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="mailto:?subject=Oh%20Crap%3A%20Your%20Thesis%20Customization%20isn%27t%20Future%20Proof&amp;body=http%3A%2F%2Fgregrickaby.com%2F2009%2F09%2Foh-crap-your-thesis-customization-isnt-future-proof.html" title="email"><img src="http://gregrickaby.com/wp-content/plugins/sociable/images/email_link.png" title="email" alt="email" class="sociable-hovers" /></a>
	<a rel="nofollow" class="thickbox" href="http://www.printfriendly.com/print?url=http%3A%2F%2Fgregrickaby.com%2F2009%2F09%2Foh-crap-your-thesis-customization-isnt-future-proof.html&amp;partner=sociable?TB_iframe=true&amp;height=500&amp;width=900"><img src="http://gregrickaby.com/wp-content/plugins/sociable/images/printfriendly.png" title="Print" alt="Print" class="sociable-hovers" /></a>


<br/><br/><div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/gregrickaby?a=7QU35VFU9mk:go6GF3VYAoY:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/gregrickaby?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/gregrickaby?a=7QU35VFU9mk:go6GF3VYAoY:F7zBnMyn0Lo"><img src="http://feeds.feedburner.com/~ff/gregrickaby?i=7QU35VFU9mk:go6GF3VYAoY:F7zBnMyn0Lo" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/gregrickaby?a=7QU35VFU9mk:go6GF3VYAoY:7Q72WNTAKBA"><img src="http://feeds.feedburner.com/~ff/gregrickaby?d=7Q72WNTAKBA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/gregrickaby?a=7QU35VFU9mk:go6GF3VYAoY:V_sGLiPBpWU"><img src="http://feeds.feedburner.com/~ff/gregrickaby?i=7QU35VFU9mk:go6GF3VYAoY:V_sGLiPBpWU" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/gregrickaby?a=7QU35VFU9mk:go6GF3VYAoY:qj6IDK7rITs"><img src="http://feeds.feedburner.com/~ff/gregrickaby?d=qj6IDK7rITs" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/gregrickaby?a=7QU35VFU9mk:go6GF3VYAoY:gIN9vFwOqvQ"><img src="http://feeds.feedburner.com/~ff/gregrickaby?i=7QU35VFU9mk:go6GF3VYAoY:gIN9vFwOqvQ" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/gregrickaby?a=7QU35VFU9mk:go6GF3VYAoY:l6gmwiTKsz0"><img src="http://feeds.feedburner.com/~ff/gregrickaby?d=l6gmwiTKsz0" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/gregrickaby?a=7QU35VFU9mk:go6GF3VYAoY:TzevzKxY174"><img src="http://feeds.feedburner.com/~ff/gregrickaby?d=TzevzKxY174" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/gregrickaby/~4/7QU35VFU9mk" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://gregrickaby.com/2009/09/oh-crap-your-thesis-customization-isnt-future-proof.html/feed</wfw:commentRss>
		<slash:comments>18</slash:comments>
		<feedburner:origLink>http://gregrickaby.com/2009/09/oh-crap-your-thesis-customization-isnt-future-proof.html</feedburner:origLink></item>
		<item>
		<title>7 Hours In: Thesis 1.6b Review</title>
		<link>http://feedproxy.google.com/~r/gregrickaby/~3/xJWX_bAgYn4/thesis-1-6b-review.html</link>
		<comments>http://gregrickaby.com/2009/09/thesis-1-6b-review.html#comments</comments>
		<pubDate>Wed, 09 Sep 2009 16:18:03 +0000</pubDate>
		<dc:creator>Greg Rickaby</dc:creator>
				<category><![CDATA[Reviews]]></category>
		<category><![CDATA[Beta testing]]></category>
		<category><![CDATA[Thesis 1.6]]></category>

		<guid isPermaLink="false">http://gregrickaby.com/?p=2205</guid>
		<description><![CDATA[Thesis 1.6b was released September 8 around 9pm Eastern to all developers. I raked it through the coals in a 7 hour session and what you are seeing on THIS WEBSITE IS Thesis 1.6b&#8230;


1. Post Options
Not much here, just the ability to change the &#8216;Read More&#8217; text&#8230;

2. Thesis Options
Chris Pearson has gone and moved the [...]]]></description>
			<content:encoded><![CDATA[<p></p><div class="tweetmeme_button" style="float: right; margin-right: 0px; padding: 10px;"><a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fgregrickaby.com%2F2009%2F09%2Fthesis-1-6b-review.html"><img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fgregrickaby.com%2F2009%2F09%2Fthesis-1-6b-review.html" height="61" width="51" /></a></div><p>Thesis 1.6b was released September 8 around 9pm Eastern to all developers. I raked it through the coals in a 7 hour session and what you are seeing on THIS WEBSITE IS Thesis 1.6b&#8230;</p>
<p><a href="http://gregrickaby.com/thesis-1-6b-review.html"><img class="alignnone size-full wp-image-2206" title="Thesis 1.6b Review" src="http://gregrickaby.com/wp-content/uploads/2009/09/review-thesis-1.6.gif" alt="Thesis 1.6b Review" width="500" height="175" /></a></p>
<p><span id="more-2205"></span></p>
<h2>1. Post Options</h2>
<p>Not much here, just the ability to change the &#8216;Read More&#8217; text&#8230;</p>
<div id="tool"><a href="http://gregrickaby.com/wp-content/uploads/2009/09/thesis-1.6-screen-post-options.gif" target="_blank"><img class="alignnone size-medium wp-image-2214" style="border: 1px solid black;" title="Post Options Page - Thesis 1.6b" src="http://gregrickaby.com/wp-content/uploads/2009/09/thesis-1.6-screen-post-options-159x480.gif" alt="thesis-1.6-post-options" width="159" height="480" /></a></p>
<h2>2. Thesis Options</h2>
<p>Chris Pearson has gone and moved the Thesis Options out of &#8220;Appearance&#8221;, this took a little getting used too &#8211; but is welcome. &#8220;Appearance&#8221; was getting cluttered. Also new, is the &#8220;Drop Down Navigation&#8221; built in. (More on this below)</p>
<p><a href="http://gregrickaby.com/wp-content/uploads/2009/09/thesis-1.6-screen-thesis-options.gif" target="_blank"><img class="alignnone size-medium wp-image-2215" style="border: 1px solid black;" title="Thesis Options Page - Thesis 1.6b" src="http://gregrickaby.com/wp-content/uploads/2009/09/thesis-1.6-screen-thesis-options-175x480.gif" alt="thesis-1.6-screen-thesis-options" width="175" height="480" /></a></p>
<h2>3. Design Options</h2>
<p>This is where 90% of the magic is. &#8220;The Font, Colors, and More!&#8221; section has been completely overhauled and the crown-jewel of Thesis 1.6 is  the crazy easy way to change colors.</p>
<p>Other very cool features are the ability to kill all Thesis Borders and add a cool shadow around your page box. (which only works in page-width mode)</p>
<p><a href="http://gregrickaby.com/wp-content/uploads/2009/09/thesis-1.6-screen-design-options.gif" target="_blank"><img class="alignnone size-medium wp-image-2218" style="border: 1px solid black;" title="Design Options Page - Thesis 1.6b" src="http://gregrickaby.com/wp-content/uploads/2009/09/thesis-1.6-screen-design-options-156x479.gif" alt="thesis-1.6-design-options" width="156" height="479" /></a></p>
<h2>4. Custom File Editor</h2>
<p>Other than the font colors, this was my second favorite upgraded feature. Syntax Highlighting makes it easy to jump in quick and make a change.</p>
<p><a href="http://gregrickaby.com/wp-content/uploads/2009/09/thesis-1.6-screen-custom-file-editor.gif" target="_blank"><img class="alignnone size-thumbnail wp-image-2219" style="border: 1px solid black;" title="Custom File Editor - Thesis 1.6b" src="http://gregrickaby.com/wp-content/uploads/2009/09/thesis-1.6-screen-custom-file-editor-150x150.gif" alt="thesis-1.6-custom-file-editor" width="150" height="150" /></a></p>
<h2>5. Those Drop Down Menus</h2>
<p>Now standard, automatic .CSS drop down navigation. All you have to do is create sub-pages or sub-categories and Thesis 1.6 will take care of the rest.</p>
<p><a href="http://gregrickaby.com/wp-content/uploads/2009/09/thesis-1.6-screen-drop-downs.gif" target="_blank"><img style="border: 1px solid black;" title="Nav Drop Downs  - Thesis 1.6b" src="http://gregrickaby.com/wp-content/uploads/2009/09/thesis-1.6-screen-drop-downs-640x279.gif" alt="thesis-1.6-screen-drop-downs" width="384" height="167" /></a></p>
<p>Also new, no more #tabs in the .CSS &#8211; the navigation is now .menu</p>
<p><a href="http://gregrickaby.com/wp-content/uploads/2009/09/thesis-1.6-screen-drop-css.gif" target="_blank"><img style="border: 1px solid black;" title="The New Nav CSS - Thesis 1.6b" src="http://gregrickaby.com/wp-content/uploads/2009/09/thesis-1.6-screen-drop-css-224x480.gif" alt="thesis-1.6-nav-css" width="224" height="480" /></a></p>
<h2>6. Misc. Upgrades</h2>
<p>According to Chris Pearson, on the <a href="http://diythemes.com/dev/thesis-16/" target="_blank">Thesis Dev Site</a>:</p>
<ul>
<li><strong><acronym title="Internet Explorer">IE</acronym>-only styles are now cache-friendly</strong>: Version 1.5 included a <acronym title="Cascading Style Sheet">CSS</acronym>-based method of serving <acronym title="Internet Explorer">IE</acronym>-specific styles, but this method proved to have one fatal flaw—it didn’t play nicely with caching techniques (and especially the WP Super Cache plugin). Because of this, I reverted back to using conditional <acronym title="HyperText Markup Language">HTML</acronym> in the document <code>&lt;head&gt;</code>, and now caching is money.</li>
<li><strong>Fixed post image and thumbnail frames</strong>: These actually work now. Special.</li>
<li><strong>Suppressed warnings on all <code>getimagesize</code> function calls</strong>: This <acronym title="Recursive acronym for Hypertext Pre-processor">PHP</acronym> function has been known to trigger warnings on certain server configurations, and suppressing warnings will radically reduce the annoyance factor in these situations.</li>
<li><strong>Moved the <code>/rotator</code> folder into the <code>/custom</code> folder</strong>: Can somebody tell me why the <code>/rotator</code> folder, whose very existence suggests customization, was <em>not</em> located inside the <code>/custom</code> folder from the very beginning? Sigh. Fixed.</li>
</ul>
<p><strong>One other noticeably awesome upgrade note: </strong>All of my &#8220;Thesis&#8221; and &#8220;Design&#8221; options were unchanged when I upgraded! I didn&#8217;t have to re-do all my font sizes, meta tag info, or HTML Framework options. Beautiful.</p>
<h2>7. The Bottom Line</h2>
<p><em>A welcome upgrade.</em> Thesis is moving in the direction of not needing &#8216;expensive design software&#8217; or a &#8216;qualified designer&#8217;.</p>
<p>While the ability to change text, background, and content colors is freakin&#8217; awesome; you will still need to edit custom_functions.php, use OpenHook, or tinker with custom.css to achieve more advanced design layouts. Things like: adding a Logo to the Header, fine-tuning the Sidebars, etc&#8230;will require some inexperienced users to seek help.</p>
<p>If that sounds like you, then you&#8217;re still going to need to hire a qualified designer. (Lucky for you, the guy writing this post <a href="http://gregrickabydesign.com" target="_blank">is certified</a>)</p>
<p>In the end, there will be less Thesis sites that look like it came right out of the box. That in itself is worth the price of admission.</p>
<h3>Are you a Developer? <a href="http://diythemes.com/thesis/developers/" target="_blank">Download Thesis 1.6b Now</a></h3>
<h3>Don&#8217;t Have Thesis? <a href="http://gregrickaby.com/redir.php" target="_blank">Download a copy!</a></h3>
</div>



Share and Enjoy:


	<a rel="nofollow" class="thickbox" href="http://ping.fm/ref/?link=http%3A%2F%2Fgregrickaby.com%2F2009%2F09%2Fthesis-1-6b-review.html&amp;title=7%20Hours%20In%3A%20Thesis%201.6b%20Review&amp;body=Thesis%201.6b%20was%20released%20September%208%20around%209pm%20Eastern%20to%20all%20developers.%20I%20raked%20it%20through%20the%20coals%20in%20a%207%20hour%20session%20and%20what%20you%20are%20seeing%20on%20THIS%20WEBSITE%20IS%20Thesis%201.6b...%0D%0A%0D%0A%0D%0A%0D%0A%0D%0A1.%20Post%20Options%0D%0ANot%20much%20here%2C%20just%20the%20ability%20to%20change%20?TB_iframe=true&amp;height=500&amp;width=900"><img src="http://gregrickaby.com/wp-content/plugins/sociable/images/ping.png" title="Ping.fm" alt="Ping.fm" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://twitter.com/home?status=7%20Hours%20In%3A%20Thesis%201.6b%20Review%20-%20http%3A%2F%2Fgregrickaby.com%2F2009%2F09%2Fthesis-1-6b-review.html" title="Twitter"><img src="http://gregrickaby.com/wp-content/plugins/sociable/images/twitter.png" title="Twitter" alt="Twitter" class="sociable-hovers" /></a>
	<a rel="nofollow" class="thickbox" href="http://www.facebook.com/share.php?u=http%3A%2F%2Fgregrickaby.com%2F2009%2F09%2Fthesis-1-6b-review.html&amp;t=7%20Hours%20In%3A%20Thesis%201.6b%20Review?TB_iframe=true&amp;height=500&amp;width=900"><img src="http://gregrickaby.com/wp-content/plugins/sociable/images/facebook.png" title="Facebook" alt="Facebook" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://www.myspace.com/Modules/PostTo/Pages/?u=http%3A%2F%2Fgregrickaby.com%2F2009%2F09%2Fthesis-1-6b-review.html&amp;t=7%20Hours%20In%3A%20Thesis%201.6b%20Review" title="MySpace"><img src="http://gregrickaby.com/wp-content/plugins/sociable/images/myspace.png" title="MySpace" alt="MySpace" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://www.stumbleupon.com/submit?url=http%3A%2F%2Fgregrickaby.com%2F2009%2F09%2Fthesis-1-6b-review.html&amp;title=7%20Hours%20In%3A%20Thesis%201.6b%20Review" title="StumbleUpon"><img src="http://gregrickaby.com/wp-content/plugins/sociable/images/stumbleupon.png" title="StumbleUpon" alt="StumbleUpon" class="sociable-hovers" /></a>
	<a rel="nofollow" class="thickbox" href="http://delicious.com/post?url=http%3A%2F%2Fgregrickaby.com%2F2009%2F09%2Fthesis-1-6b-review.html&amp;title=7%20Hours%20In%3A%20Thesis%201.6b%20Review&amp;notes=Thesis%201.6b%20was%20released%20September%208%20around%209pm%20Eastern%20to%20all%20developers.%20I%20raked%20it%20through%20the%20coals%20in%20a%207%20hour%20session%20and%20what%20you%20are%20seeing%20on%20THIS%20WEBSITE%20IS%20Thesis%201.6b...%0D%0A%0D%0A%0D%0A%0D%0A%0D%0A1.%20Post%20Options%0D%0ANot%20much%20here%2C%20just%20the%20ability%20to%20change%20?TB_iframe=true&amp;height=500&amp;width=900"><img src="http://gregrickaby.com/wp-content/plugins/sociable/images/delicious.png" title="del.icio.us" alt="del.icio.us" class="sociable-hovers" /></a>
	<a rel="nofollow" class="thickbox" href="http://digg.com/submit?phase=2&amp;url=http%3A%2F%2Fgregrickaby.com%2F2009%2F09%2Fthesis-1-6b-review.html&amp;title=7%20Hours%20In%3A%20Thesis%201.6b%20Review&amp;bodytext=Thesis%201.6b%20was%20released%20September%208%20around%209pm%20Eastern%20to%20all%20developers.%20I%20raked%20it%20through%20the%20coals%20in%20a%207%20hour%20session%20and%20what%20you%20are%20seeing%20on%20THIS%20WEBSITE%20IS%20Thesis%201.6b...%0D%0A%0D%0A%0D%0A%0D%0A%0D%0A1.%20Post%20Options%0D%0ANot%20much%20here%2C%20just%20the%20ability%20to%20change%20?TB_iframe=true&amp;height=500&amp;width=900"><img src="http://gregrickaby.com/wp-content/plugins/sociable/images/digg.png" title="Digg" alt="Digg" class="sociable-hovers" /></a>
	<a rel="nofollow" class="thickbox" href="http://reddit.com/submit?url=http%3A%2F%2Fgregrickaby.com%2F2009%2F09%2Fthesis-1-6b-review.html&amp;title=7%20Hours%20In%3A%20Thesis%201.6b%20Review?TB_iframe=true&amp;height=500&amp;width=900"><img src="http://gregrickaby.com/wp-content/plugins/sociable/images/reddit.png" title="Reddit" alt="Reddit" class="sociable-hovers" /></a>
	<a rel="nofollow" class="thickbox" href="http://cgi.fark.com/cgi/fark/farkit.pl?h=7%20Hours%20In%3A%20Thesis%201.6b%20Review&amp;u=http%3A%2F%2Fgregrickaby.com%2F2009%2F09%2Fthesis-1-6b-review.html?TB_iframe=true&amp;height=500&amp;width=900"><img src="http://gregrickaby.com/wp-content/plugins/sociable/images/fark.png" title="Fark" alt="Fark" class="sociable-hovers" /></a>
	<a rel="nofollow" class="thickbox" href="http://technorati.com/faves?add=http%3A%2F%2Fgregrickaby.com%2F2009%2F09%2Fthesis-1-6b-review.html?TB_iframe=true&amp;height=500&amp;width=900"><img src="http://gregrickaby.com/wp-content/plugins/sociable/images/technorati.png" title="Technorati" alt="Technorati" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://twitter.com/home/?status=tip%20@Techmeme%20http%3A%2F%2Fgregrickaby.com%2F2009%2F09%2Fthesis-1-6b-review.html%207%20Hours%20In%3A%20Thesis%201.6b%20Review" title="Suggest to Techmeme via Twitter"><img src="http://gregrickaby.com/wp-content/plugins/sociable/images/techmeme.png" title="Suggest to Techmeme via Twitter" alt="Suggest to Techmeme via Twitter" class="sociable-hovers" /></a>
	<a rel="nofollow" class="thickbox" href="http://slashdot.org/bookmark.pl?title=7%20Hours%20In%3A%20Thesis%201.6b%20Review&amp;url=http%3A%2F%2Fgregrickaby.com%2F2009%2F09%2Fthesis-1-6b-review.html?TB_iframe=true&amp;height=500&amp;width=900"><img src="http://gregrickaby.com/wp-content/plugins/sociable/images/slashdot.png" title="Slashdot" alt="Slashdot" class="sociable-hovers" /></a>
	<a rel="nofollow" class="thickbox" href="https://favorites.live.com/quickadd.aspx?marklet=1&amp;url=http%3A%2F%2Fgregrickaby.com%2F2009%2F09%2Fthesis-1-6b-review.html&amp;title=7%20Hours%20In%3A%20Thesis%201.6b%20Review?TB_iframe=true&amp;height=500&amp;width=900"><img src="http://gregrickaby.com/wp-content/plugins/sociable/images/live.png" title="Live" alt="Live" class="sociable-hovers" /></a>
	<a rel="nofollow" class="thickbox" href="http://gregrickaby.com/feed?TB_iframe=true&amp;height=500&amp;width=900"><img src="http://gregrickaby.com/wp-content/plugins/sociable/images/rss.png" title="RSS" alt="RSS" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="mailto:?subject=7%20Hours%20In%3A%20Thesis%201.6b%20Review&amp;body=http%3A%2F%2Fgregrickaby.com%2F2009%2F09%2Fthesis-1-6b-review.html" title="email"><img src="http://gregrickaby.com/wp-content/plugins/sociable/images/email_link.png" title="email" alt="email" class="sociable-hovers" /></a>
	<a rel="nofollow" class="thickbox" href="http://www.printfriendly.com/print?url=http%3A%2F%2Fgregrickaby.com%2F2009%2F09%2Fthesis-1-6b-review.html&amp;partner=sociable?TB_iframe=true&amp;height=500&amp;width=900"><img src="http://gregrickaby.com/wp-content/plugins/sociable/images/printfriendly.png" title="Print" alt="Print" class="sociable-hovers" /></a>


<br/><br/><div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/gregrickaby?a=xJWX_bAgYn4:pw8JL_do-1I:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/gregrickaby?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/gregrickaby?a=xJWX_bAgYn4:pw8JL_do-1I:F7zBnMyn0Lo"><img src="http://feeds.feedburner.com/~ff/gregrickaby?i=xJWX_bAgYn4:pw8JL_do-1I:F7zBnMyn0Lo" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/gregrickaby?a=xJWX_bAgYn4:pw8JL_do-1I:7Q72WNTAKBA"><img src="http://feeds.feedburner.com/~ff/gregrickaby?d=7Q72WNTAKBA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/gregrickaby?a=xJWX_bAgYn4:pw8JL_do-1I:V_sGLiPBpWU"><img src="http://feeds.feedburner.com/~ff/gregrickaby?i=xJWX_bAgYn4:pw8JL_do-1I:V_sGLiPBpWU" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/gregrickaby?a=xJWX_bAgYn4:pw8JL_do-1I:qj6IDK7rITs"><img src="http://feeds.feedburner.com/~ff/gregrickaby?d=qj6IDK7rITs" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/gregrickaby?a=xJWX_bAgYn4:pw8JL_do-1I:gIN9vFwOqvQ"><img src="http://feeds.feedburner.com/~ff/gregrickaby?i=xJWX_bAgYn4:pw8JL_do-1I:gIN9vFwOqvQ" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/gregrickaby?a=xJWX_bAgYn4:pw8JL_do-1I:l6gmwiTKsz0"><img src="http://feeds.feedburner.com/~ff/gregrickaby?d=l6gmwiTKsz0" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/gregrickaby?a=xJWX_bAgYn4:pw8JL_do-1I:TzevzKxY174"><img src="http://feeds.feedburner.com/~ff/gregrickaby?d=TzevzKxY174" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/gregrickaby/~4/xJWX_bAgYn4" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://gregrickaby.com/2009/09/thesis-1-6b-review.html/feed</wfw:commentRss>
		<slash:comments>6</slash:comments>
		<feedburner:origLink>http://gregrickaby.com/2009/09/thesis-1-6b-review.html</feedburner:origLink></item>
		<item>
		<title>10 Time Saving Adobe Air Apps for Freelancers</title>
		<link>http://feedproxy.google.com/~r/gregrickaby/~3/StsCV7HQ05o/10-timesaving-adobe-air-apps-for-freelancers.html</link>
		<comments>http://gregrickaby.com/2009/09/10-timesaving-adobe-air-apps-for-freelancers.html#comments</comments>
		<pubDate>Mon, 07 Sep 2009 14:34:01 +0000</pubDate>
		<dc:creator>Greg Rickaby</dc:creator>
				<category><![CDATA[Reviews]]></category>
		<category><![CDATA[Adobe Air]]></category>
		<category><![CDATA[Apps]]></category>
		<category><![CDATA[Freelance]]></category>
		<category><![CDATA[Lists]]></category>
		<category><![CDATA[Time Saving Tips]]></category>
		<category><![CDATA[Top 10]]></category>

		<guid isPermaLink="false">http://gregrickaby.com/?p=2081</guid>
		<description><![CDATA[Adobe® AIR™ enables you to run WEB APPS on your desktop. I weeded through &#8216;the crap&#8217; for 3 hours on Labor Day to bring you this list.



1. iPlotz
iPlotz allows you to create navigable mock-ups and prototypes you can easily export to your client(s). It also can be used as project management software as it keeps [...]]]></description>
			<content:encoded><![CDATA[<p></p><div class="tweetmeme_button" style="float: right; margin-right: 0px; padding: 10px;"><a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fgregrickaby.com%2F2009%2F09%2F10-timesaving-adobe-air-apps-for-freelancers.html"><img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fgregrickaby.com%2F2009%2F09%2F10-timesaving-adobe-air-apps-for-freelancers.html" height="61" width="51" /></a></div><p>Adobe® AIR™ enables you to run WEB APPS on your desktop. I weeded through &#8216;the crap&#8217; for 3 hours on Labor Day to bring you this list.<em><br />
</em></p>
<p><a href="http://gregrickaby.com/10-timesaving-adobe-air-apps-for-freelancers.html"><img class="alignnone size-full wp-image-2082" title="10 Timesaving Adobe Air Apps for Freelancers" src="http://gregrickaby.com/wp-content/uploads/2009/09/adobe-air-logo.jpg" alt="Top 10: Adobe Air Apps for Web Designers" width="512" height="160" /></a><br />
<span id="more-2081"></span></p>
<h2><strong>1. <a href="http://www.adobe.com/cfusion/marketplace/index.cfm?event=marketplace.offering&amp;marketplaceid=1&amp;offeringid=11000" target="_blank">iPlotz</a></strong></h2>
<p>iPlotz allows you to create navigable mock-ups and prototypes you can easily export to your client(s). It also can be used as project management software as it keeps track of your progress.</p>
<p><strong>Cost: $75</strong></p>
<p><a href="http://gregrickaby.com/wp-content/uploads/2009/09/adobe-air-app-iplotz.jpg" target="_blank"><img class="alignnone size-medium wp-image-2084" style="border: 2px solid black;" title="iPlotz" src="http://gregrickaby.com/wp-content/uploads/2009/09/adobe-air-app-iplotz-616x479.jpg" alt="adobe-air-app-iplotz" width="493" height="383" /></a></p>
<h2><strong>2. <a href="http://www.adobe.com/cfusion/marketplace/index.cfm?event=marketplace.offering&amp;marketplaceid=1&amp;offeringid=10740" target="_blank">ImageSizer</a></strong></h2>
<p>Built to re-size/optimize/rename batches of .jpg images. Can I get a &#8216;what what&#8217;?</p>
<p><strong>Cost: Free</strong></p>
<p><a href="http://gregrickaby.com/wp-content/uploads/2009/09/adobe-air-app-imagesizer.jpg" target="_blank"><img class="alignnone size-medium wp-image-2086" style="border: 2px solid black;" title="ImageSizer" src="http://gregrickaby.com/wp-content/uploads/2009/09/adobe-air-app-imagesizer-639x480.jpg" alt="adobe-air-app-imagesizer" width="639" height="480" /></a></p>
<h2><strong>3. <a href="http://www.adobe.com/cfusion/marketplace/index.cfm?orderdirection=asc&amp;offeringtypeid=1&amp;categoryid=6&amp;count=2&amp;&amp;orderby=highestrated&amp;marketplaceid=1&amp;event=marketplace.offering&amp;offeringid=10201" target="_blank">RichFLV</a></strong></h2>
<p>Doing a screen-cast? Client need a video on their website? With RichFLV you can edit/cut/read/convert/export .FLV files on the fly.</p>
<p><strong>Cost: Free</strong></p>
<p><a href="http://gregrickaby.com/wp-content/uploads/2009/09/adobe-air-app-rich-flv.jpg" target="_blank"><img class="alignnone size-medium wp-image-2089" style="border: 2px solid black;" title="RichFLV" src="http://gregrickaby.com/wp-content/uploads/2009/09/adobe-air-app-rich-flv-579x480.jpg" alt="RichFLV" width="579" height="480" /></a></p>
<h2><strong>4. <a href="http://www.johnwu.com/ora/index.html" target="_blank">Ora Time &amp; Expense</a></strong></h2>
<p>I&#8217;m a <a href="http://freshbooks.com" target="_blank">FreshBooks</a> guy myself&#8230;however, I&#8217;ve found a FREE alternative that is nearly as robust. Time Tracking/Invoice/Expenses/Reports everything a Freelancer needs to cash in on his/her&#8217;s valuable time.</p>
<p><strong>Cost: Free</strong></p>
<p><a href="http://gregrickaby.com/wp-content/uploads/2009/09/adobe-air-app-ora.jpg" target="_blank"><img class="alignnone size-medium wp-image-2092" style="border: 2px solid black;" title="Ora Time &amp; Expense" src="http://gregrickaby.com/wp-content/uploads/2009/09/adobe-air-app-ora-639x358.jpg" alt="Ora Time &amp; Expense" width="639" height="358" /></a></p>
<h2><strong>5. <a href="http://myspyder.net/tools/websnapshot/" target="_blank">Websnapshot</a></strong></h2>
<p>Do you need a screen-shot? NOW! It&#8217;s waaay more than that. I&#8217;ve come to rely on Websnapshot to do my dirty work, (Print Screen, Photoshop, Re-size, Save for Web, etc&#8230;), because time is money.</p>
<p><strong>Cost: Free</strong></p>
<p><a href="http://gregrickaby.com/wp-content/uploads/2009/09/adobe-air-app-websnapshot.jpg" target="_blank"><img class="alignnone size-medium wp-image-2096" style="border: 2px solid black;" title="Websnapshot" src="http://gregrickaby.com/wp-content/uploads/2009/09/adobe-air-app-websnapshot-640x278.jpg" alt="Websnapshot" width="640" height="278" /></a></p>
<h2><strong>TIE 6. <a href="http://www.adobe.com/cfusion/marketplace/index.cfm?event=marketplace.offering&amp;offeringid=10077&amp;marketplaceid=1" target="_blank">ColourLovers</a> vs. <a href="http://www.adobe.com/cfusion/marketplace/index.cfm?event=marketplace.offering&amp;offeringid=10162&amp;marketplaceid=1" target="_blank">Adobe Kuler</a></strong></h2>
<p>My eye for &#8220;color matching&#8221; is poor, (just ask my ex-wife about how I suck at dressing our son), so I need help when I&#8217;m creating a new design for a client, and pre-made color pallets are where it&#8217;s at.</p>
<p>Both apps allow auto-importing to your favorite editing program(s):</p>
<p><strong>ColourLovers = Microsoft Expression</strong><strong><br />
Adobe Kuler = Adobe Photoshop/Illustrator/InDesign<br />
</strong></p>
<p>Regardless, of your editing program preference&#8230;both apps give you access to great color schemes (for free) that you can use to design a slick looking website, without embarrassing your kid.</p>
<p><strong>Cost: Both are Free</strong></p>
<p><strong><a href="http://gregrickaby.com/wp-content/uploads/2009/09/adobe-air-app-coulervskuler.jpg" target="_blank"><img class="alignnone size-medium wp-image-2097" style="border: 2px solid black;" title="Colour vs Kuler" src="http://gregrickaby.com/wp-content/uploads/2009/09/adobe-air-app-coulervskuler-640x418.jpg" alt="Colour vs Kuler" width="640" height="418" /></a><br />
</strong></p>
<h2><strong>7. <a href="http://richardsprojects.co.uk/products/font-picker/" target="_blank">Font Picker</a></strong></h2>
<p>I was skeptical at first. I use Photoshop to view all my fonts one-by-one. Then I tried this, and fell in love. No more trying to compare different fonts one-by-one.  Just type,  select the fonts you like, kill the ones you don&#8217;t. It&#8217;s like having a font playoff on your desktop &#8211; and you&#8217;re the commissioner. #win</p>
<p><strong>Cost: Free</strong></p>
<p><a href="http://gregrickaby.com/wp-content/uploads/2009/09/adobe-air-app-fontpicker.jpg" target="_blank"><img class="alignnone size-medium wp-image-2101" style="border: 2px solid black;" title="adobe-air-app-fontpicker" src="http://gregrickaby.com/wp-content/uploads/2009/09/adobe-air-app-fontpicker-494x480.jpg" alt="adobe-air-app-fontpicker" width="494" height="480" /></a></p>
<h2><strong>8. <a href="http://tweetdeck.com/beta/" target="_blank">TweetDeck</a></strong></h2>
<p><strong>Twitter</strong> = Free self promotion<br />
<strong>TweetDeck</strong> = Inbox for your cash</p>
<p>Honestly, this is probably the most used Adobe Air App &#8211; ever. If you&#8217;re a Freelance Designer and you&#8217;re not using Twitter to promote your business&#8230;you are missing out on BIG money.</p>
<p><strong>Cost: Free</strong></p>
<p><a href="http://gregrickaby.com/wp-content/uploads/2009/09/adobe-air-app-tweet-deck.jpg" target="_blank"><img class="alignnone size-medium wp-image-2102" style="border: 2px solid black;" title="Tweet Deck" src="http://gregrickaby.com/wp-content/uploads/2009/09/adobe-air-app-tweet-deck-640x323.jpg" alt="Tweet Deck" width="640" height="323" /></a></p>
<h2><strong>9. <a href="http://clockmaker.jp/labs/air_icon/" target="_blank">Icon Generator</a></strong></h2>
<p>Easy. The only word I need to describe creating Web 2.0 Icons in 3 steps.</p>
<p><strong>Cost: Free</strong></p>
<p><a href="http://gregrickaby.com/wp-content/uploads/2009/09/adobe-air-app-icon-generator.jpg" target="_blank"><img class="alignnone size-full wp-image-2095" style="border: 2px solid black;" title="Icon Generator" src="http://gregrickaby.com/wp-content/uploads/2009/09/adobe-air-app-icon-generator.jpg" alt="Icon Generator" width="373" height="408" /></a></p>
<h2><strong>10. <a href="http://www.adobe.com/cfusion/marketplace/index.cfm?event=marketplace.offering&amp;marketplaceid=1&amp;offeringid=10620" target="_blank">GeeMail</a></strong></h2>
<p>I saved the best for last, GeeMail is 100% pure sweetness.</p>
<p><strong>Cost: Free</strong></p>
<p><a href="http://gregrickaby.com/wp-content/uploads/2009/09/adobe-air-app-geemail.jpg" target="_blank"><img class="alignnone size-medium wp-image-2105" style="border: 2px solid black;" title="GeeMail" src="http://gregrickaby.com/wp-content/uploads/2009/09/adobe-air-app-geemail-549x480.jpg" alt="GeeMail" width="549" height="480" /></a></p>
<h2><strong>BONUS! 11. <a href="http://www.adobe.com/cfusion/marketplace/index.cfm?event=marketplace.offering&amp;marketplaceid=1&amp;offeringid=10049" target="_blank">Dunkin&#8217; Donuts</a></strong></h2>
<p>Totally useless, yet totally awesome.<em> </em></p>
<p><em>Because America (and a Freelance Designer) Runs on Dunkin&#8217; </em></p>
<p><strong>Cost: Free</strong></p>
<p><a href="http://gregrickaby.com/wp-content/uploads/2009/09/adobe-air-app-dunkin.jpg" target="_blank"><img class="alignnone size-full wp-image-2104" style="border: 2px solid black;" title="adobe-air-app-dunkin" src="http://gregrickaby.com/wp-content/uploads/2009/09/adobe-air-app-dunkin.jpg" alt="adobe-air-app-dunkin" width="345" height="456" /></a></p>
<p><strong><br />
</strong></p>



Share and Enjoy:


	<a rel="nofollow" class="thickbox" href="http://ping.fm/ref/?link=http%3A%2F%2Fgregrickaby.com%2F2009%2F09%2F10-timesaving-adobe-air-apps-for-freelancers.html&amp;title=10%20Time%20Saving%20Adobe%20Air%20Apps%20for%20Freelancers&amp;body=Adobe%C2%AE%20AIR%E2%84%A2%20enables%20you%20to%20run%20WEB%20APPS%20on%20your%20desktop.%20I%20weeded%20through%20%27the%20crap%27%20for%203%20hours%20on%20Labor%20Day%20to%20bring%20you%20this%20list.%0D%0A%0D%0A%0D%0A%0D%0A%0D%0A1.%20iPlotz%0D%0AiPlotz%20allows%20you%20to%20create%20navigable%20mock-ups%20and%20prototypes%20you%20can%20easily%20export%20to%20your%20c?TB_iframe=true&amp;height=500&amp;width=900"><img src="http://gregrickaby.com/wp-content/plugins/sociable/images/ping.png" title="Ping.fm" alt="Ping.fm" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://twitter.com/home?status=10%20Time%20Saving%20Adobe%20Air%20Apps%20for%20Freelancers%20-%20http%3A%2F%2Fgregrickaby.com%2F2009%2F09%2F10-timesaving-adobe-air-apps-for-freelancers.html" title="Twitter"><img src="http://gregrickaby.com/wp-content/plugins/sociable/images/twitter.png" title="Twitter" alt="Twitter" class="sociable-hovers" /></a>
	<a rel="nofollow" class="thickbox" href="http://www.facebook.com/share.php?u=http%3A%2F%2Fgregrickaby.com%2F2009%2F09%2F10-timesaving-adobe-air-apps-for-freelancers.html&amp;t=10%20Time%20Saving%20Adobe%20Air%20Apps%20for%20Freelancers?TB_iframe=true&amp;height=500&amp;width=900"><img src="http://gregrickaby.com/wp-content/plugins/sociable/images/facebook.png" title="Facebook" alt="Facebook" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://www.myspace.com/Modules/PostTo/Pages/?u=http%3A%2F%2Fgregrickaby.com%2F2009%2F09%2F10-timesaving-adobe-air-apps-for-freelancers.html&amp;t=10%20Time%20Saving%20Adobe%20Air%20Apps%20for%20Freelancers" title="MySpace"><img src="http://gregrickaby.com/wp-content/plugins/sociable/images/myspace.png" title="MySpace" alt="MySpace" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://www.stumbleupon.com/submit?url=http%3A%2F%2Fgregrickaby.com%2F2009%2F09%2F10-timesaving-adobe-air-apps-for-freelancers.html&amp;title=10%20Time%20Saving%20Adobe%20Air%20Apps%20for%20Freelancers" title="StumbleUpon"><img src="http://gregrickaby.com/wp-content/plugins/sociable/images/stumbleupon.png" title="StumbleUpon" alt="StumbleUpon" class="sociable-hovers" /></a>
	<a rel="nofollow" class="thickbox" href="http://delicious.com/post?url=http%3A%2F%2Fgregrickaby.com%2F2009%2F09%2F10-timesaving-adobe-air-apps-for-freelancers.html&amp;title=10%20Time%20Saving%20Adobe%20Air%20Apps%20for%20Freelancers&amp;notes=Adobe%C2%AE%20AIR%E2%84%A2%20enables%20you%20to%20run%20WEB%20APPS%20on%20your%20desktop.%20I%20weeded%20through%20%27the%20crap%27%20for%203%20hours%20on%20Labor%20Day%20to%20bring%20you%20this%20list.%0D%0A%0D%0A%0D%0A%0D%0A%0D%0A1.%20iPlotz%0D%0AiPlotz%20allows%20you%20to%20create%20navigable%20mock-ups%20and%20prototypes%20you%20can%20easily%20export%20to%20your%20c?TB_iframe=true&amp;height=500&amp;width=900"><img src="http://gregrickaby.com/wp-content/plugins/sociable/images/delicious.png" title="del.icio.us" alt="del.icio.us" class="sociable-hovers" /></a>
	<a rel="nofollow" class="thickbox" href="http://digg.com/submit?phase=2&amp;url=http%3A%2F%2Fgregrickaby.com%2F2009%2F09%2F10-timesaving-adobe-air-apps-for-freelancers.html&amp;title=10%20Time%20Saving%20Adobe%20Air%20Apps%20for%20Freelancers&amp;bodytext=Adobe%C2%AE%20AIR%E2%84%A2%20enables%20you%20to%20run%20WEB%20APPS%20on%20your%20desktop.%20I%20weeded%20through%20%27the%20crap%27%20for%203%20hours%20on%20Labor%20Day%20to%20bring%20you%20this%20list.%0D%0A%0D%0A%0D%0A%0D%0A%0D%0A1.%20iPlotz%0D%0AiPlotz%20allows%20you%20to%20create%20navigable%20mock-ups%20and%20prototypes%20you%20can%20easily%20export%20to%20your%20c?TB_iframe=true&amp;height=500&amp;width=900"><img src="http://gregrickaby.com/wp-content/plugins/sociable/images/digg.png" title="Digg" alt="Digg" class="sociable-hovers" /></a>
	<a rel="nofollow" class="thickbox" href="http://reddit.com/submit?url=http%3A%2F%2Fgregrickaby.com%2F2009%2F09%2F10-timesaving-adobe-air-apps-for-freelancers.html&amp;title=10%20Time%20Saving%20Adobe%20Air%20Apps%20for%20Freelancers?TB_iframe=true&amp;height=500&amp;width=900"><img src="http://gregrickaby.com/wp-content/plugins/sociable/images/reddit.png" title="Reddit" alt="Reddit" class="sociable-hovers" /></a>
	<a rel="nofollow" class="thickbox" href="http://cgi.fark.com/cgi/fark/farkit.pl?h=10%20Time%20Saving%20Adobe%20Air%20Apps%20for%20Freelancers&amp;u=http%3A%2F%2Fgregrickaby.com%2F2009%2F09%2F10-timesaving-adobe-air-apps-for-freelancers.html?TB_iframe=true&amp;height=500&amp;width=900"><img src="http://gregrickaby.com/wp-content/plugins/sociable/images/fark.png" title="Fark" alt="Fark" class="sociable-hovers" /></a>
	<a rel="nofollow" class="thickbox" href="http://technorati.com/faves?add=http%3A%2F%2Fgregrickaby.com%2F2009%2F09%2F10-timesaving-adobe-air-apps-for-freelancers.html?TB_iframe=true&amp;height=500&amp;width=900"><img src="http://gregrickaby.com/wp-content/plugins/sociable/images/technorati.png" title="Technorati" alt="Technorati" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://twitter.com/home/?status=tip%20@Techmeme%20http%3A%2F%2Fgregrickaby.com%2F2009%2F09%2F10-timesaving-adobe-air-apps-for-freelancers.html%2010%20Time%20Saving%20Adobe%20Air%20Apps%20for%20Freelancers" title="Suggest to Techmeme via Twitter"><img src="http://gregrickaby.com/wp-content/plugins/sociable/images/techmeme.png" title="Suggest to Techmeme via Twitter" alt="Suggest to Techmeme via Twitter" class="sociable-hovers" /></a>
	<a rel="nofollow" class="thickbox" href="http://slashdot.org/bookmark.pl?title=10%20Time%20Saving%20Adobe%20Air%20Apps%20for%20Freelancers&amp;url=http%3A%2F%2Fgregrickaby.com%2F2009%2F09%2F10-timesaving-adobe-air-apps-for-freelancers.html?TB_iframe=true&amp;height=500&amp;width=900"><img src="http://gregrickaby.com/wp-content/plugins/sociable/images/slashdot.png" title="Slashdot" alt="Slashdot" class="sociable-hovers" /></a>
	<a rel="nofollow" class="thickbox" href="https://favorites.live.com/quickadd.aspx?marklet=1&amp;url=http%3A%2F%2Fgregrickaby.com%2F2009%2F09%2F10-timesaving-adobe-air-apps-for-freelancers.html&amp;title=10%20Time%20Saving%20Adobe%20Air%20Apps%20for%20Freelancers?TB_iframe=true&amp;height=500&amp;width=900"><img src="http://gregrickaby.com/wp-content/plugins/sociable/images/live.png" title="Live" alt="Live" class="sociable-hovers" /></a>
	<a rel="nofollow" class="thickbox" href="http://gregrickaby.com/feed?TB_iframe=true&amp;height=500&amp;width=900"><img src="http://gregrickaby.com/wp-content/plugins/sociable/images/rss.png" title="RSS" alt="RSS" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="mailto:?subject=10%20Time%20Saving%20Adobe%20Air%20Apps%20for%20Freelancers&amp;body=http%3A%2F%2Fgregrickaby.com%2F2009%2F09%2F10-timesaving-adobe-air-apps-for-freelancers.html" title="email"><img src="http://gregrickaby.com/wp-content/plugins/sociable/images/email_link.png" title="email" alt="email" class="sociable-hovers" /></a>
	<a rel="nofollow" class="thickbox" href="http://www.printfriendly.com/print?url=http%3A%2F%2Fgregrickaby.com%2F2009%2F09%2F10-timesaving-adobe-air-apps-for-freelancers.html&amp;partner=sociable?TB_iframe=true&amp;height=500&amp;width=900"><img src="http://gregrickaby.com/wp-content/plugins/sociable/images/printfriendly.png" title="Print" alt="Print" class="sociable-hovers" /></a>


<br/><br/><div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/gregrickaby?a=StsCV7HQ05o:E0p3KWn-5Vc:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/gregrickaby?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/gregrickaby?a=StsCV7HQ05o:E0p3KWn-5Vc:F7zBnMyn0Lo"><img src="http://feeds.feedburner.com/~ff/gregrickaby?i=StsCV7HQ05o:E0p3KWn-5Vc:F7zBnMyn0Lo" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/gregrickaby?a=StsCV7HQ05o:E0p3KWn-5Vc:7Q72WNTAKBA"><img src="http://feeds.feedburner.com/~ff/gregrickaby?d=7Q72WNTAKBA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/gregrickaby?a=StsCV7HQ05o:E0p3KWn-5Vc:V_sGLiPBpWU"><img src="http://feeds.feedburner.com/~ff/gregrickaby?i=StsCV7HQ05o:E0p3KWn-5Vc:V_sGLiPBpWU" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/gregrickaby?a=StsCV7HQ05o:E0p3KWn-5Vc:qj6IDK7rITs"><img src="http://feeds.feedburner.com/~ff/gregrickaby?d=qj6IDK7rITs" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/gregrickaby?a=StsCV7HQ05o:E0p3KWn-5Vc:gIN9vFwOqvQ"><img src="http://feeds.feedburner.com/~ff/gregrickaby?i=StsCV7HQ05o:E0p3KWn-5Vc:gIN9vFwOqvQ" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/gregrickaby?a=StsCV7HQ05o:E0p3KWn-5Vc:l6gmwiTKsz0"><img src="http://feeds.feedburner.com/~ff/gregrickaby?d=l6gmwiTKsz0" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/gregrickaby?a=StsCV7HQ05o:E0p3KWn-5Vc:TzevzKxY174"><img src="http://feeds.feedburner.com/~ff/gregrickaby?d=TzevzKxY174" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/gregrickaby/~4/StsCV7HQ05o" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://gregrickaby.com/2009/09/10-timesaving-adobe-air-apps-for-freelancers.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://gregrickaby.com/2009/09/10-timesaving-adobe-air-apps-for-freelancers.html</feedburner:origLink></item>
		<item>
		<title>Google Calendar: Sports Edition</title>
		<link>http://feedproxy.google.com/~r/gregrickaby/~3/Pe7TWJgbyT8/google-calendar-sports-edition.html</link>
		<comments>http://gregrickaby.com/2009/09/google-calendar-sports-edition.html#comments</comments>
		<pubDate>Thu, 03 Sep 2009 20:07:50 +0000</pubDate>
		<dc:creator>Greg Rickaby</dc:creator>
				<category><![CDATA[Articles]]></category>
		<category><![CDATA[Google]]></category>
		<category><![CDATA[Time Saving Tips]]></category>

		<guid isPermaLink="false">http://gregrickaby.com/?p=2071</guid>
		<description><![CDATA[Never miss a game again. Google Calendar has just released integrated sports schedules.


Here&#8217;s how to get them:
Step 1: Open http://calendar.google.com (new window)
Step 2: Click on New: Sports Calendar (can&#8217;t miss it, it&#8217;s big and red and in the top right corner)
Step 3: Select your sport
Step 4: Select Pro or College
Step 5: Select your favorite team
That&#8217;s [...]]]></description>
			<content:encoded><![CDATA[<p></p><div class="tweetmeme_button" style="float: right; margin-right: 0px; padding: 10px;"><a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fgregrickaby.com%2F2009%2F09%2Fgoogle-calendar-sports-edition.html"><img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fgregrickaby.com%2F2009%2F09%2Fgoogle-calendar-sports-edition.html" height="61" width="51" /></a></div><p>Never miss a game again. Google Calendar has just released integrated sports schedules.</p>
<p><a href="http://gregrickaby.com/google-calendar-sports-edition.html"><img class="size-full wp-image-2075 alignnone" style="border: 0pt none;" title="google-calendar-sports" src="http://gregrickaby.com/wp-content/uploads/2009/09/google-calendar-sports.jpg" alt="google-calendar-sports" width="640" height="155" /></a><br />
<span id="more-2071"></span><br />
Here&#8217;s how to get them:</p>
<p>Step 1: Open <a href="http://calendar.google.com" target="_blank">http://calendar.google.com</a> (new window)</p>
<p>Step 2: Click on New: Sports Calendar (can&#8217;t miss it, it&#8217;s big and red and in the top right corner)</p>
<p>Step 3: Select your sport</p>
<p>Step 4: Select Pro or College</p>
<p>Step 5: Select your favorite team</p>
<p>That&#8217;s it, now you favorite teams show up in Google Calendar &#8211; game times and all (so you can schedule auto reminders)</p>
<p><a href="http://gregrickaby.com/wp-content/uploads/2009/09/google-calendar-sports-1.jpg" target="_blank"><img class="alignnone size-medium wp-image-2072" style="border: 1px solid black;" title="google-calendar-sports-1" src="http://gregrickaby.com/wp-content/uploads/2009/09/google-calendar-sports-1-640x408.jpg" alt="google-calendar-sports-1" width="448" height="286" /></a></p>
<p><a href="http://gregrickaby.com/wp-content/uploads/2009/09/google-calendar-sports-2.jpg" target="_blank"><img class="alignnone size-medium wp-image-2073" style="border: 1px solid black;" title="google-calendar-sports-2" src="http://gregrickaby.com/wp-content/uploads/2009/09/google-calendar-sports-2-640x408.jpg" alt="google-calendar-sports-2" width="448" height="286" /></a></p>
<p><a href="http://gregrickaby.com/wp-content/uploads/2009/09/google-calendar-sports-3.jpg" target="_blank"><img class="alignnone size-medium wp-image-2074" style="border: 1px solid black;" title="google-calendar-sports-3" src="http://gregrickaby.com/wp-content/uploads/2009/09/google-calendar-sports-3-640x408.jpg" alt="google-calendar-sports-3" width="448" height="286" /></a></p>



Share and Enjoy:


	<a rel="nofollow" class="thickbox" href="http://ping.fm/ref/?link=http%3A%2F%2Fgregrickaby.com%2F2009%2F09%2Fgoogle-calendar-sports-edition.html&amp;title=Google%20Calendar%3A%20Sports%20Edition&amp;body=Never%20miss%20a%20game%20again.%20Google%20Calendar%20has%20just%20released%20integrated%20sports%20schedules.%0D%0A%0D%0A%0D%0A%0D%0AHere%27s%20how%20to%20get%20them%3A%0D%0A%0D%0AStep%201%3A%20Open%20http%3A%2F%2Fcalendar.google.com%20%28new%20window%29%0D%0A%0D%0AStep%202%3A%20Click%20on%20New%3A%20Sports%20Calendar%20%28can%27t%20miss%20it%2C%20it%27s%20big%20and%20red%20a?TB_iframe=true&amp;height=500&amp;width=900"><img src="http://gregrickaby.com/wp-content/plugins/sociable/images/ping.png" title="Ping.fm" alt="Ping.fm" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://twitter.com/home?status=Google%20Calendar%3A%20Sports%20Edition%20-%20http%3A%2F%2Fgregrickaby.com%2F2009%2F09%2Fgoogle-calendar-sports-edition.html" title="Twitter"><img src="http://gregrickaby.com/wp-content/plugins/sociable/images/twitter.png" title="Twitter" alt="Twitter" class="sociable-hovers" /></a>
	<a rel="nofollow" class="thickbox" href="http://www.facebook.com/share.php?u=http%3A%2F%2Fgregrickaby.com%2F2009%2F09%2Fgoogle-calendar-sports-edition.html&amp;t=Google%20Calendar%3A%20Sports%20Edition?TB_iframe=true&amp;height=500&amp;width=900"><img src="http://gregrickaby.com/wp-content/plugins/sociable/images/facebook.png" title="Facebook" alt="Facebook" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://www.myspace.com/Modules/PostTo/Pages/?u=http%3A%2F%2Fgregrickaby.com%2F2009%2F09%2Fgoogle-calendar-sports-edition.html&amp;t=Google%20Calendar%3A%20Sports%20Edition" title="MySpace"><img src="http://gregrickaby.com/wp-content/plugins/sociable/images/myspace.png" title="MySpace" alt="MySpace" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://www.stumbleupon.com/submit?url=http%3A%2F%2Fgregrickaby.com%2F2009%2F09%2Fgoogle-calendar-sports-edition.html&amp;title=Google%20Calendar%3A%20Sports%20Edition" title="StumbleUpon"><img src="http://gregrickaby.com/wp-content/plugins/sociable/images/stumbleupon.png" title="StumbleUpon" alt="StumbleUpon" class="sociable-hovers" /></a>
	<a rel="nofollow" class="thickbox" href="http://delicious.com/post?url=http%3A%2F%2Fgregrickaby.com%2F2009%2F09%2Fgoogle-calendar-sports-edition.html&amp;title=Google%20Calendar%3A%20Sports%20Edition&amp;notes=Never%20miss%20a%20game%20again.%20Google%20Calendar%20has%20just%20released%20integrated%20sports%20schedules.%0D%0A%0D%0A%0D%0A%0D%0AHere%27s%20how%20to%20get%20them%3A%0D%0A%0D%0AStep%201%3A%20Open%20http%3A%2F%2Fcalendar.google.com%20%28new%20window%29%0D%0A%0D%0AStep%202%3A%20Click%20on%20New%3A%20Sports%20Calendar%20%28can%27t%20miss%20it%2C%20it%27s%20big%20and%20red%20a?TB_iframe=true&amp;height=500&amp;width=900"><img src="http://gregrickaby.com/wp-content/plugins/sociable/images/delicious.png" title="del.icio.us" alt="del.icio.us" class="sociable-hovers" /></a>
	<a rel="nofollow" class="thickbox" href="http://digg.com/submit?phase=2&amp;url=http%3A%2F%2Fgregrickaby.com%2F2009%2F09%2Fgoogle-calendar-sports-edition.html&amp;title=Google%20Calendar%3A%20Sports%20Edition&amp;bodytext=Never%20miss%20a%20game%20again.%20Google%20Calendar%20has%20just%20released%20integrated%20sports%20schedules.%0D%0A%0D%0A%0D%0A%0D%0AHere%27s%20how%20to%20get%20them%3A%0D%0A%0D%0AStep%201%3A%20Open%20http%3A%2F%2Fcalendar.google.com%20%28new%20window%29%0D%0A%0D%0AStep%202%3A%20Click%20on%20New%3A%20Sports%20Calendar%20%28can%27t%20miss%20it%2C%20it%27s%20big%20and%20red%20a?TB_iframe=true&amp;height=500&amp;width=900"><img src="http://gregrickaby.com/wp-content/plugins/sociable/images/digg.png" title="Digg" alt="Digg" class="sociable-hovers" /></a>
	<a rel="nofollow" class="thickbox" href="http://reddit.com/submit?url=http%3A%2F%2Fgregrickaby.com%2F2009%2F09%2Fgoogle-calendar-sports-edition.html&amp;title=Google%20Calendar%3A%20Sports%20Edition?TB_iframe=true&amp;height=500&amp;width=900"><img src="http://gregrickaby.com/wp-content/plugins/sociable/images/reddit.png" title="Reddit" alt="Reddit" class="sociable-hovers" /></a>
	<a rel="nofollow" class="thickbox" href="http://cgi.fark.com/cgi/fark/farkit.pl?h=Google%20Calendar%3A%20Sports%20Edition&amp;u=http%3A%2F%2Fgregrickaby.com%2F2009%2F09%2Fgoogle-calendar-sports-edition.html?TB_iframe=true&amp;height=500&amp;width=900"><img src="http://gregrickaby.com/wp-content/plugins/sociable/images/fark.png" title="Fark" alt="Fark" class="sociable-hovers" /></a>
	<a rel="nofollow" class="thickbox" href="http://technorati.com/faves?add=http%3A%2F%2Fgregrickaby.com%2F2009%2F09%2Fgoogle-calendar-sports-edition.html?TB_iframe=true&amp;height=500&amp;width=900"><img src="http://gregrickaby.com/wp-content/plugins/sociable/images/technorati.png" title="Technorati" alt="Technorati" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://twitter.com/home/?status=tip%20@Techmeme%20http%3A%2F%2Fgregrickaby.com%2F2009%2F09%2Fgoogle-calendar-sports-edition.html%20Google%20Calendar%3A%20Sports%20Edition" title="Suggest to Techmeme via Twitter"><img src="http://gregrickaby.com/wp-content/plugins/sociable/images/techmeme.png" title="Suggest to Techmeme via Twitter" alt="Suggest to Techmeme via Twitter" class="sociable-hovers" /></a>
	<a rel="nofollow" class="thickbox" href="http://slashdot.org/bookmark.pl?title=Google%20Calendar%3A%20Sports%20Edition&amp;url=http%3A%2F%2Fgregrickaby.com%2F2009%2F09%2Fgoogle-calendar-sports-edition.html?TB_iframe=true&amp;height=500&amp;width=900"><img src="http://gregrickaby.com/wp-content/plugins/sociable/images/slashdot.png" title="Slashdot" alt="Slashdot" class="sociable-hovers" /></a>
	<a rel="nofollow" class="thickbox" href="https://favorites.live.com/quickadd.aspx?marklet=1&amp;url=http%3A%2F%2Fgregrickaby.com%2F2009%2F09%2Fgoogle-calendar-sports-edition.html&amp;title=Google%20Calendar%3A%20Sports%20Edition?TB_iframe=true&amp;height=500&amp;width=900"><img src="http://gregrickaby.com/wp-content/plugins/sociable/images/live.png" title="Live" alt="Live" class="sociable-hovers" /></a>
	<a rel="nofollow" class="thickbox" href="http://gregrickaby.com/feed?TB_iframe=true&amp;height=500&amp;width=900"><img src="http://gregrickaby.com/wp-content/plugins/sociable/images/rss.png" title="RSS" alt="RSS" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="mailto:?subject=Google%20Calendar%3A%20Sports%20Edition&amp;body=http%3A%2F%2Fgregrickaby.com%2F2009%2F09%2Fgoogle-calendar-sports-edition.html" title="email"><img src="http://gregrickaby.com/wp-content/plugins/sociable/images/email_link.png" title="email" alt="email" class="sociable-hovers" /></a>
	<a rel="nofollow" class="thickbox" href="http://www.printfriendly.com/print?url=http%3A%2F%2Fgregrickaby.com%2F2009%2F09%2Fgoogle-calendar-sports-edition.html&amp;partner=sociable?TB_iframe=true&amp;height=500&amp;width=900"><img src="http://gregrickaby.com/wp-content/plugins/sociable/images/printfriendly.png" title="Print" alt="Print" class="sociable-hovers" /></a>


<br/><br/><div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/gregrickaby?a=Pe7TWJgbyT8:a7sVQjsxPjo:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/gregrickaby?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/gregrickaby?a=Pe7TWJgbyT8:a7sVQjsxPjo:F7zBnMyn0Lo"><img src="http://feeds.feedburner.com/~ff/gregrickaby?i=Pe7TWJgbyT8:a7sVQjsxPjo:F7zBnMyn0Lo" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/gregrickaby?a=Pe7TWJgbyT8:a7sVQjsxPjo:7Q72WNTAKBA"><img src="http://feeds.feedburner.com/~ff/gregrickaby?d=7Q72WNTAKBA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/gregrickaby?a=Pe7TWJgbyT8:a7sVQjsxPjo:V_sGLiPBpWU"><img src="http://feeds.feedburner.com/~ff/gregrickaby?i=Pe7TWJgbyT8:a7sVQjsxPjo:V_sGLiPBpWU" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/gregrickaby?a=Pe7TWJgbyT8:a7sVQjsxPjo:qj6IDK7rITs"><img src="http://feeds.feedburner.com/~ff/gregrickaby?d=qj6IDK7rITs" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/gregrickaby?a=Pe7TWJgbyT8:a7sVQjsxPjo:gIN9vFwOqvQ"><img src="http://feeds.feedburner.com/~ff/gregrickaby?i=Pe7TWJgbyT8:a7sVQjsxPjo:gIN9vFwOqvQ" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/gregrickaby?a=Pe7TWJgbyT8:a7sVQjsxPjo:l6gmwiTKsz0"><img src="http://feeds.feedburner.com/~ff/gregrickaby?d=l6gmwiTKsz0" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/gregrickaby?a=Pe7TWJgbyT8:a7sVQjsxPjo:TzevzKxY174"><img src="http://feeds.feedburner.com/~ff/gregrickaby?d=TzevzKxY174" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/gregrickaby/~4/Pe7TWJgbyT8" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://gregrickaby.com/2009/09/google-calendar-sports-edition.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://gregrickaby.com/2009/09/google-calendar-sports-edition.html</feedburner:origLink></item>
	</channel>
</rss>
