<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>Asnio &#187; Thesis Thursday</title>
	<atom:link href="http://asnio.com/category/thesis-thursday/feed/" rel="self" type="application/rss+xml" />
	<link>http://asnio.com</link>
	<description>Young Entrepreneurs Blog</description>
	<lastBuildDate>Mon, 05 Apr 2010 13:37:28 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0.1</generator>
		<item>
		<title>Create Colored Widget Boxes Displaying Recent Posts, Popular Posts, and More</title>
		<link>http://asnio.com/create-colored-widget-boxes-thesis/</link>
		<comments>http://asnio.com/create-colored-widget-boxes-thesis/#comments</comments>
		<pubDate>Mon, 05 Apr 2010 04:00:23 +0000</pubDate>
		<dc:creator>Alex</dc:creator>
				<category><![CDATA[Thesis Thursday]]></category>
		<category><![CDATA[colored widgets]]></category>
		<category><![CDATA[thesis tutorials]]></category>

		<guid isPermaLink="false">http://asnio.com/?p=561</guid>
		<description><![CDATA[One thing I have received the most attention about regarding the design of this blog are those yellow boxes in my sidebar that display random posts on the blog. People like it, and I got a comment on my last Thesis Thursday post asking how to create that box. I decided that this week I [...]]]></description>
			<content:encoded><![CDATA[<p></p><div class="tweetmeme_button" style="float: right; padding: 0 0 1em 1em;">
			<a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fasnio.com%2Fcreate-colored-widget-boxes-thesis%2F"><br />
				<img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fasnio.com%2Fcreate-colored-widget-boxes-thesis%2F&amp;source=AlexFraiser&amp;style=normal&amp;service=bit.ly" height="61" width="50" /><br />
			</a>
		</div>
<p class="intro"><span class="drop_cap">O</span>ne thing I have received the most attention about regarding the design of this blog are those yellow boxes in my sidebar that display random posts on the blog. People like it, and I got a comment on my last Thesis Thursday post asking how to create that box.</p>
<p><span id="more-561"></span></p>
<p>I decided that this week I would create a simple tutorial to show you how I did that effect here because I think it is a pretty cool trick.</p>
<p class="note">This tutorial is easily adaptable for use on non-Thesis blogs, but for the sake of the series — the code will be written with Thesis in mind.</p>
<h3>1. Preparations</h3>
<p>Just to get a little prepared here, these are the things you will need for this tutorial.</p>
<ul>
<li>Access to the <code>custom.css</code> file</li>
<li>Depending on what box you want (or if you even want more than one of them), you will need to use plugins from <a href="http://wordpress.org/extend/plugins/profile/robmarsh">Rob Marsh</a>. Your choices are:
<ul>
<li><a href="http://wordpress.org/extend/plugins/recent-comments-plugin/">Recent Comments</a></li>
<li><a href="http://wordpress.org/extend/plugins/popular-posts-plugin/">Popular Posts</a></li>
<li><a href="http://wordpress.org/extend/plugins/random-posts-plugin/">Random Posts</a></li>
<li><a href="http://wordpress.org/extend/plugins/recent-posts-plugin/">Recent Posts</a></li>
<li>…for any one of those plugins, you need the <a href="http://wordpress.org/extend/plugins/post-plugin-library/">Post-Plugin Library</a> for them to work.</li>
</ul>
</li>
<li>Add a Widget in your Widgets panel</li>
</ul>
<p>Once you choose what plugin you want, download it, install it and add it within your Widgets panel. Simple enough preparing, right? As long as you know what you want, the hard stuff is out of the way.</p>
<h3>2. The CSS</h3>
<p>Depending on the plugin you use, the CSS will be different. But the only difference is the <code>#ID</code> that is used, and that is easily changeable.  So, the CSS code I use here is pretty simple, but I will explain it:</p>
<pre><span style="color: red;font-weight: bold;">#random-posts</span> li {
	background: #FFFBCC;
	border: 1px solid #E6DB55;
	line-height: 1.4em;
	-moz-border-radius: 5px;
	padding: 0.9em;
	-webkit-border-radius: 5px;
}</pre>
<p>So what we have going on up there is pretty simple. We have a background which will allow you to switch up the color of the box, the border will surround the whole think, the line height controls the spacing between each line of the link, and the padding is the spacing from the box to the text. The <code>-moz-border-radius</code> &amp; <code>-webkit-border-radius</code> will make the box rounded without images. They will only be round in Safari and Firefox, but it’s a neat trick to those who can actually see it.</p>
<p>I have colored in <code>#random-posts</code> because that is the thing that will change depending on which plugin you choose. </p>
<p>The ID’s you will need to use for the other plugins are below:</p>
<ul>
<li><code>#recent-posts</code></li>
<li><code>#popular-posts</code></li>
<li><code>#recent-comments</code></li>
</ul>
<h3>3. Customizing the output</h3>
<p><img class="alignright size-full wp-image-580" title="Default Widgets Look" src="http://asnio.com/wp-content/uploads/2009/05/b1eedba69ea68b89781038a88b8dddb4.png" alt="Default Widgets Look" width="239" height="464" />You should have the yellow box around the link by default. It looks kind of boring, but because of how flexible this plugin is, making it look better is not a problem at all.</p>
<p>There are a lot of different things you can add to the box to make it look cool. The plugin makes adding things so simple too, and you really don’t need any coding knowledge at all  to do it.</p>
<p>So to start, go to <em>Settings → Recent Comments/Recent Posts/Random/Popular Posts → Output → Output Template</em>. This is where we can add anything to the box.  I will go over the two things I added to my boxes, which i think look sexy as hell.</p>
<h4>66x66 Image</h4>
<p><em>This will only work if you use Thesis teasers and have the 66x66 images for each post</em></p>
<p>You can paste this code into the Output Template box:</p>
<pre>&lt;li&gt;&lt;a href="{url}"&gt;&lt;img src="{custom:thesis_thumb}" width="66" height="66" alt="" /&gt;&lt;/a&gt;{link}&lt;/li&gt;</pre>
<p class="alert"><strong>NOTE:</strong> If you let Thesis auto generate thumbnails, replace <code>thesis_thumb</code> with <code>thesis_post_image</code> in the code above.</p>
<p>The code calls the <code>thesis_thumb</code> custom field from your posts and puts it into the box. You will also need to add this CSS to make the image look right:</p>
<pre><span style="color: red;font-weight: bold;">#random-posts</span> img { float: left; padding-right: 8px; }</pre>
<h4>Add the date, and other stuff</h4>
<p>If you look in my box, there is a date of when the post was published. The date can be replaces with a variety of things like comment count, views, tags, and a lot more. The code below will show you how to float things to the right.</p>
<p>First, replace the code in your <em>Output Template</em> with this:</p>
<pre>&lt;li&gt;&lt;a href="{url}"&gt;&lt;img src="{custom:thesis_thumb}" width="48" height="48" alt="" /&gt;&lt;/a&gt;{link} &lt;div class="right"&gt;{date}&lt;/div&gt;&lt;/li&gt;</pre>
<p>Add this to your CSS:</p>
<pre><span style="color: red;font-weight: bold;">#random-posts</span> div.right { color: #baaf2e; float: right; font-size: 11px; text-transform: uppercase; }</pre>
<p>I added a little style to change the font color, size and case. This will bring whatever you wrap within <code>&lt;div class="right"&gt;...&lt;/div&gt;</code> to the right. But there will be a bug.</p>
<div id="attachment_588" class="wp-caption alignleft" style="width: 229px">
	<img class="size-full wp-image-588" title="Box without overflow:hidden" src="http://asnio.com/wp-content/uploads/2009/05/1196d50bd7d1aec532a0432b47d6f29f.png" alt="If you look towards the bottom of my box here, you will see a slight overlap" width="229" height="82" />
	<p class="wp-caption-text">If you look towards the bottom of my box here, you will see a slight overlap</p>
</div>
<p>You will also need to add <code>overflow: hidden;</code> to the very first piece of code you added in Step 2. When the image is in the box floating, it will overlap the box, making it looks really weird. So, by adding that line to your CSS, it will make it look right, and the text will be inside of the box again.</p>
<h3>Simple Enough, Wasn’t It?</h3>
<p>That was pretty simple wasn’t it? The plugins used in this tutorial are extremely powerful, and allow you to customize your output extensively. </p>
<p>I hope you enjoyed this tutorial, as it was the first tutorial in the series.  I hope you stick around for more posts here, and next week’s Thesis Thursday post! Is there anything you guys want covered for next Thursday?  </p>
<p>PS: This is a really cool Thesis resource. Matt Langford wrote up a kick ass list of <a href="http://mattflies.com/tech/100-resources-for-thesis-wordpress-theme-users/">100 Resources For Thesis</a> you guys should definitely check out!</p>
<p>MAY 21ST, 2009</p>
]]></content:encoded>
			<wfw:commentRss>http://asnio.com/create-colored-widget-boxes-thesis/feed/</wfw:commentRss>
		<slash:comments>127</slash:comments>
		</item>
		<item>
		<title>Thesis Freelancing 101</title>
		<link>http://asnio.com/thesis-freelancing-101/</link>
		<comments>http://asnio.com/thesis-freelancing-101/#comments</comments>
		<pubDate>Thu, 24 Sep 2009 22:34:41 +0000</pubDate>
		<dc:creator>Alex</dc:creator>
				<category><![CDATA[Thesis Thursday]]></category>
		<category><![CDATA[freelance]]></category>
		<category><![CDATA[job]]></category>
		<category><![CDATA[make money]]></category>

		<guid isPermaLink="false">http://asnio.com/?p=1220</guid>
		<description><![CDATA[Hello and welcome back to Thesis Thursday! They say if you haven’t posted on a blog for a while to not bring it up, but it’s definitely been a while! Since the last time I visited Thesis in an article, tons of things have changed with not only Thesis itself — but the community of [...]]]></description>
			<content:encoded><![CDATA[<p></p><div class="tweetmeme_button" style="float: right; padding: 0 0 1em 1em;">
			<a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fasnio.com%2Fthesis-freelancing-101%2F"><br />
				<img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fasnio.com%2Fthesis-freelancing-101%2F&amp;source=AlexFraiser&amp;style=normal&amp;service=bit.ly" height="61" width="50" /><br />
			</a>
		</div>
<p><span class="drop_cap">H</span><acronym>ello and welcome back to <a href="/thesis-thursday/">Thesis</acronym> Thursday</a>! They say if you haven’t posted on a blog for a while to not bring it up, but it’s definitely been a while!</p>
<p><span id="more-1220"></span></p>
<p>Since the last time I visited Thesis in an article, tons of things have changed with not only Thesis itself — but the community of Thesis owners and developers has seen a big change as well. More and more people are looking to have the best Thesis powered blog around.</p>
<p>For the longest of time, the Thesis theme has claimed to be an easy to use and customizable theme. While it has certainly proven to be a very usable theme, many people who have basic knowledge of a WordPress theme have found it difficult to customize it.</p>
<p>Sure, some pros like <a href="http://www.kristarella.com/">Kristarella</a>, <a href="http://gregrickaby.com/">Greg Rickaby</a> and many others have found their way through the hooks system like it was nothing. But, for the majority of Thesis users, who aren’t all web developers have been seeking a guide to help them customize their theme.</p>
<p>Lucky for all of us, Thesis 1.6 is close to its full launch and will make editing your theme much, much easier. Take it from me, I have used Thesis 1.6 and I have done a lot of customizing without even touching a single line of code.</p>
<p>But, even these new options won’t help many achieve their dream design. So that leads me to the main point of this post — being a freelancer in the Thesis community. The market for this theme is huge, and all it takes are a few good designs to get you started and on your way to becoming a freelancer.</p>
<h3>My Short Story as a Thesis Freelancer</h3>
<p>I have been creating designs on Thesis since April 2008. When I <a href="http://asnio.com/jumping-back-freelance-projects/">announced my return to freelancing</a>, I started taking everything more seriously and really getting my act into gear and learning Thesis to the best of my abilities.</p>
<p>Ever since that post, I have been getting emails at all times of the day, from different people around the world in a vast variety of blog niche’s for me to work on their Thesis blog. I have been getting more requests than I can handle, and I do have to say “no” at times.</p>
<p>Basically, this post I am going to cover the three things you have to know if you want to become a freelancer for Thesis. The three topics I am going to talk about in this post are:</p>
<ul>
<li>Learning Thesis and resources for learning how to use it</li>
<li>Pricing your services</li>
<li>Marketing yourself</li>
</ul>
<h3>1. Need-to-know-info for any Thesis Freelancer</h3>
<p>If you want to freelance for Thesis, it’s probably a great idea to have a clue as to what you are doing when opening up the Thesis options panel and creating your own hooks. Here are some resources I have found to help you get started:</p>
<h4>Thesis Basics</h4>
<ul>
<li><a href="http://diythemes.com/thesis/rtfm/customizing-thesis-with-customcss/">Customizing Thesis with <code>custom.css</code></a></li>
<li><a href="http://diythemes.com/thesis/rtfm/customizing-with-hooks/">How to customize like a pro with Thesis hooks</a></li>
<li><a href="http://diythemes.com/thesis/rtfm/hooks/">Thesis Hook Reference List</a> [I keep this in my bookmarks bar for quickest access]</li>
<li><a href="http://www.sugarrae.com/thesis-hooks-dummies-tutorial/">Thesis Hooks for Dummies</a></li>
</ul>
<h4>Customizing Thesis and Beyond<br />
<h4>
<ul>
<li><a href="http://www.fergusweb.net/coding/thesis-tutorial-creating-new-widget-areas/">Creating new widget areas in Thesis</a></li>
<li><a href="http://diythemes.com/thesis/new-filters-customization/">Using content filters for easier customization</a></li>
<li><a href="http://www.kristarella.com/2008/11/thesis-footers-101/">Thesis Footers 101</a></li>
<li><a href="http://rickbeckman.org/thesis-openhook/">Thesis OpenHook</a></li>
<li><a href="http://www.sugarrae.com/thesis-tutorial-creating-custom-categories/">Creating custom Thesis categories</a></li>
<li><a href="http://www.sugarrae.com/thesis-tutorial-custom-404/">Customizing the 404 page</a></li>
<li><a href="http://www.berchman.com/thesis-tutorial-multiple-custom-page-templates/">Creating Multiple Custom templates</a></li>
</ul>
<h4>Thesis pros on Twitter</h4>
<ul>
<li><a href="http://twitter.com/GodHammer">@godhammer</a></li>
<li><a href="http://twitter.com/pearsonified">@pearsonified</a></li>
<li><a href="http://twitter.com/kingdomgeek">@kingdomgeek</a></li>
<li><a href="http://twitter.com/diythemes">@diythemes</a></li>
<li><a href="http://twitter.com/GirlieGeek">@girliegeek</a></li>
<li><a href="http://twitter.com/kristarella">@kristarella</a></li>
</ul>
<p>[see: <a href="http://asnio.com/thesis-pros-twitter/">10 Thesis pros on Twitter you need to follow</a>]</p>
<h3>2. Pricing Yourself</h3>
<p>I think being a regular freelancer and a Thesis freelancer is a lot different. At the moment, Thesis may have a less competitive market then a regular WordPress freelancer, but the way you price yourself should be looked at differently.</p>
<p>At first, I had trouble determining how I wanted to charge my clients. Should I do it on an hourly basis, or set a fixed price for themes? At first, I went with the fixed price because that was the type of pricing I was most familiar with. But, I felt like I was earning less than I should have which made me switch to an hourly rate.</p>
<p>Each side has its own benefits and disadvantages to them, and if you haven’t already decided how you want to be paid, check out an amazing post from FreelanceSwitch; <a href="http://freelanceswitch.com/money/hourly-vs-fixed-pricing/">Hourly vs. Fixed Pricing</a>.</p>
<h4>Evaluating yourself</h4>
<p>You need to be brutally honest about the quality of your work. Ask yourself the following questions:</p>
<ul>
<li>How much background knowledge of Thesis do I have? (ex: who created it, licensing options, etc)</li>
<li>How well do I know <acronym title="HyperText Markup Language">HTML</acronym> and <acronym title="cascading Style Sheets">CSS</acronym> in general?</li>
<li>Do I fully understand how to create a function?</li>
<li>Do I fully understand the options in Thesis and how to use them?</li>
<li>Can I keep up with the Thesis community, trends, and multiple clients at a time?</li>
<li>Is freelancing even for me?</li>
</ul>
<p>It can be tough to determine your price. But ask yourself those questions — no one else but you knows the answers and no one is listening so be as honest as you can with yourself. To get a good idea what kind of numbers are being thrown around as to what to charge, check out this extremely informative thread on the Thesis forums <a href="http://diythemes.com/forums/classifieds/13038-what-would-you-charge.html">“What would you charge?”</a> (Thesis owners only).</p>
<h4>Other useful information to know</h4>
<ul>
<li>The Thesis market is huge and only getting bigger. Take it from me, if you do good design work then you will get more work then you can handle. So don’t under price yourself even by $1.</li>
<li>Don’t over price yourself either. It’s a general rule of thumb, don’t charge too less and don’t charge too much. Evaluate yourself the best you can and charge what you are comfortable charging.</li>
<li>Take into account that most of your clients will already own Thesis and that means they have spent nearly $100 or more to get it. That may limit their budget, so if you are throwing a ridiculous $150 an hour at them, there’s not a chance in hell you’re getting the job.</li>
<li>Spend the extra money to upgrade to the <a href="http://diythemes.com/?a_aid=alexFraiser">Developers option</a>. If not, don’t even try and freelance for Thesis.</li>
<li>There will be people who don’t own Thesis already, so you need that Developers option to be able to buy the Cient Site Option which will allow you to buy a license for $40 and let the client use Thesis. Always make sure to tag that as an expense in the final bill.</li>
</ul>
<h3>3. Marketing Yourself</h3>
<p>Marketing is such an important thing for your business. If you blog, then you know exactly how a good advertising campaign or good sales pitch is for your blog to be successful.</p>
<p>Here are some ways I came up with to marketing your Thesis services:</p>
<ul>
<li><strong>Create a portfolio of your works</strong></li>
<p>I do not have a portfolio set up 100% yet, but you should really start working on building one for yourself immediately. Let your work speak for itself, and do your best to get a few clients done and added to your portfolio. A few good pieces of work is all you need!</p>
<p>And please make sure you build your portfolio on Thesis and make it your best work. It just defeats the purpose of targeting a market and not even using the product you are working on for yourself.</p>
<li><strong>ALWAYS recommend Thesis to clients who contact you for non-Thesis work</strong></li>
<p>On the occasion I get people who want a theme done, but they don’t own Thesis. If you ever run into that situation, try and get your client on Thesis immediately. Your client will thank you, and they may even want to go back to you for more work later since you put them on the best theme in the world.</p>
<li><strong>DIYthemes is the key</strong></li>
<p>DIYthemes, the site that created Thesis is the key to marketing yourself. The company has a forum with thousands and thousands of Thesis owners go to discuss Thesis, get help for it and more. Use those forums and get involved with the community and assert yourself as a Thesis guru. Use the Classified sections to promote your services and answer other Thesis ads.</p>
<p>DIYthemes is also very active on Twitter. The Thesis community has its own little spot on Twitter. Just use the <strong>#thesiswp</strong> hashtag whenever you tweet something Thesis related, and you will be bound to get some retweets. Tweet about your latest designs, and you are sure to make a huge impact in the community on Twitter by just using the simple <strong>#thesiswp</strong> hashtag.
</ul>
<h3>Be on your way</h3>
<p>Freelancing is the best job in the world. I am 16 and am freelancing to the point where I can turn it into a career for myself. Just be aware that it can be a hard job to get used to, and there is just so much information I did not write about general freelancing. This post is just about getting you into the feel of being a freelancer on Thesis.</p>
<p>If you guys have any questions about Thesis, my business, or questions about the article — don’t be afraid to ask in the comments section! I hope you enjoyed the longest article on Asnio yet. Take care now.</p>
]]></content:encoded>
			<wfw:commentRss>http://asnio.com/thesis-freelancing-101/feed/</wfw:commentRss>
		<slash:comments>24</slash:comments>
		</item>
		<item>
		<title>Let Me Critique Your Thesis Customization — 30 Days Only</title>
		<link>http://asnio.com/thesis-design-critique/</link>
		<comments>http://asnio.com/thesis-design-critique/#comments</comments>
		<pubDate>Thu, 09 Jul 2009 23:16:05 +0000</pubDate>
		<dc:creator>Alex</dc:creator>
				<category><![CDATA[Thesis Thursday]]></category>
		<category><![CDATA[critique]]></category>
		<category><![CDATA[design]]></category>

		<guid isPermaLink="false">http://asnio.com/?p=1083</guid>
		<description><![CDATA[I have said it again and again in this series, the one thing that seems to be a turn off to potentially new Thesis users is seeing blogs that hardly have customized their theme. All me to briefly rant about this topic for a few paragraphs before I actually get into the real point of [...]]]></description>
			<content:encoded><![CDATA[<p></p><div class="tweetmeme_button" style="float: right; padding: 0 0 1em 1em;">
			<a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fasnio.com%2Fthesis-design-critique%2F"><br />
				<img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fasnio.com%2Fthesis-design-critique%2F&amp;source=AlexFraiser&amp;style=normal&amp;service=bit.ly" height="61" width="50" /><br />
			</a>
		</div>
<p><span class="drop_cap">I</span> have said it again and again in this series, the one thing that seems to be a turn off to potentially new Thesis users is seeing blogs that hardly have customized their theme.</p>
<p>All me to briefly rant about this topic for a few paragraphs before I actually get into the <em>real</em> point of this post.</p>
<p><span id="more-1083"></span></p>
<p>I can actually understand the perspective of the Thesis critics that bring up the point that “If Thesis is so easy to use, why don’t many Thesis users actually have any customizations on it?” Like, what do you answer to that? It’s true, a large portion of us Thesis users don’t have overly customized designs.</p>
<p>For a variety of reasons, this may have the potential to harm the reputation of Thesis. Think about it, one of the things that is boasted the most about this theme is how easy it is to edit and make “your own.” While a lot of us have definitely done that, there are probably more people who haven’t exactly done so.</p>
<h3>But don’t get me wrong</h3>
<p>I’m not saying that it’s a bad thing to leave Thesis “uncustomized.” I personally love the interface of it, and that’s why I haven’t made as many edits on this blog (opposed to my other blog). I feel like that is why many of us haven’t edited it as well — because the layout and typography is just that damn fine.</p>
<p>Some of the best Thesis designs out there still have some of the default look on them. It just goes to show you that you don’t have to do much to make this thing look good.</p>
<h3>So Let Me See What You Came Up With</h3>
<p>So with all of that background info, here’s what I want to do. I will review your Thesis design if you post a link to it in my comments section for nothing. I seem to be in a “free” kind of mood these last few days as I have been <a href="http://asnio.com/free-web-stuff-launch/">giving away plenty for free</a> lately.</p>
<p>If you have made enough customizations to your theme, I will review it for you. If you have only done a few things, I’ll still critique it. Just post your <acronym title="Uniform Resource Locator">URL</acronym> in the comments and I’ll get to you.</p>
<p class="alert">After 30 days, I am closing comments on this post. I kind of have a feeling this could turn big, so make sure to tell all your Thesis friends before this offer is closed!</p>
<h4>Notes</h4>
<ul>
<li>Any review I do will be at least one paragraph (4–6 sentences) long. If I really like your site and have a lot to say, I’ll amp that number up.</li>
<li>Sorry all of you non-Thesis weirdos, there’s no critique here for you.</li>
<li>I am going to review every single blog posted in here, which may take so time. So please don’t rush me to get to your blog, I will when I get to it.</li>
<li>As always, if you could subscribe to my <a href="http://feeds2.feedburner.com/asnio"><acronym title="Really Simple Syndication">RSS</acronym> Feed</a>, that will make me feel appreciated for doing this all for no charge.</li>
</ul>
<p>Let ‘em rip.</p>
]]></content:encoded>
			<wfw:commentRss>http://asnio.com/thesis-design-critique/feed/</wfw:commentRss>
		<slash:comments>45</slash:comments>
		</item>
		<item>
		<title>Design Trends in the Thesis Community</title>
		<link>http://asnio.com/design-trends-in-the-thesis-community/</link>
		<comments>http://asnio.com/design-trends-in-the-thesis-community/#comments</comments>
		<pubDate>Fri, 19 Jun 2009 01:43:45 +0000</pubDate>
		<dc:creator>Alex</dc:creator>
				<category><![CDATA[Thesis Thursday]]></category>
		<category><![CDATA[design trends]]></category>
		<category><![CDATA[layouts]]></category>
		<category><![CDATA[typography]]></category>
		<category><![CDATA[web design]]></category>

		<guid isPermaLink="false">http://asnio.com/?p=795</guid>
		<description><![CDATA[As an avid Thesis user and web designer, I like to always check out what the latest trends in design are, and what’s “hot” and “not” if you will. I decided that it would be interesting to share with you some trends I see in some Thesis themes around the web. I’m not going to [...]]]></description>
			<content:encoded><![CDATA[<p></p><div class="tweetmeme_button" style="float: right; padding: 0 0 1em 1em;">
			<a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fasnio.com%2Fdesign-trends-in-the-thesis-community%2F"><br />
				<img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fasnio.com%2Fdesign-trends-in-the-thesis-community%2F&amp;source=AlexFraiser&amp;style=normal&amp;service=bit.ly" height="61" width="50" /><br />
			</a>
		</div>
<p class="intro"><span class="drop_cap">A</span>s an avid Thesis user and web designer, I like to always check out what the latest trends in design are, and what’s “hot” and “not” if you will. I decided that it would be interesting to share with you some trends I see in some Thesis themes around the web.
</p>
<p><span id="more-795"></span></p>
<p>I’m not going to lie, a lot of users that use Thesis keep most of the default look. It’s not a bad thing in my eyes, but it’s always amazing to see some really great customizations of Thesis.</p>
<p>I came up with five different categories of Thesis trends. Each category has at least three sites in them. Enjoy!</p>
<h3>Keeping it Simple</h3>
<p><em>Themes that do not edit much, but do not keep the exact Thesis look to them. These designs usually consist of color changes, maybe some formatting differences as well.</em></p>
<div id="attachment_805" class="wp-caption aligncenter" style="width: 530px">
	<a href="http://hanep.org"><img src="http://asnio.com/wp-content/uploads/2009/06/hanep.gif" alt="Simple customization, easy to look at banner." title="Hanep.org" width="530" height="180" class="size-full wp-image-805" /></a>
	<p class="wp-caption-text">Simple customization, easy to look at banner.</p>
</div>
<div id="attachment_810" class="wp-caption aligncenter" style="width: 530px">
	<a href="http://www.girliegeek.com/"><img src="http://asnio.com/wp-content/uploads/2009/06/girliegeek.gif" alt="Very light customization, cool color choices" title="GirlieGeek.com" width="530" height="180" class="size-full wp-image-810" /></a>
	<p class="wp-caption-text">Very light customization, cool color choices</p>
</div>
<div id="attachment_811" class="wp-caption aligncenter" style="width: 530px">
	<a href="http://www.mindtweaks.com/wordpress/"><img src="http://asnio.com/wp-content/uploads/2009/06/mindtweaks.gif" alt="Adds a few images here and there, adds a custom logo." title="MindTweaks.com" width="530" height="180" class="size-full wp-image-811" /></a>
	<p class="wp-caption-text">Adds a few images here and there, adds a custom logo.</p>
</div>
<h3>Taking Notice to Great Typography</h3>
<p><em>The following designs put the most effort into displaying beautiful type to the readers in an easy to read way. Thesis is already known as a theme with great typography, but these blogs below really kick it up a notch.</em></p>
<div id="attachment_813" class="wp-caption aligncenter" style="width: 530px">
	<a href="http://www.lettercult.com/"><img src="http://asnio.com/wp-content/uploads/2009/06/lettercult.gif" alt="Very gorgeous type for post titles" title="LetterCult.com" width="530" height="180" class="size-full wp-image-813" /></a>
	<p class="wp-caption-text">Very gorgeous type for post titles</p>
</div>
<div id="attachment_814" class="wp-caption aligncenter" style="width: 530px">
	<a href="http://www.upstartblogger.com/"><img src="http://asnio.com/wp-content/uploads/2009/06/upstart-blogger.gif" alt="This layout always has had awesome type interfaces throughout the design." title="Upstartblogger.com" width="530" height="180" class="size-full wp-image-814" /></a>
	<p class="wp-caption-text">This layout always has had awesome type interfaces throughout the design.</p>
</div>
<div id="attachment_815" class="wp-caption aligncenter" style="width: 530px">
	<a href="http://prettymuchamazing.com/"><img src="http://asnio.com/wp-content/uploads/2009/06/pretty-much-amazing.gif" alt="I think the header says it all" title="PrettyMuchAmazing.com" width="530" height="180" class="size-full wp-image-815" /></a>
	<p class="wp-caption-text">I think the header says it all</p>
</div>
<div id="attachment_816" class="wp-caption aligncenter" style="width: 530px">
	<a href="http://evschoemaker.com.au/"><img src="http://asnio.com/wp-content/uploads/2009/06/amo.gif" alt="Just look at that giant ampersand!" title="Constabulary" width="530" height="180" class="size-full wp-image-816" /></a>
	<p class="wp-caption-text">Just look at that giant ampersand!</p>
</div>
<h3>Image Reliant</h3>
<p><em>The designs below really all have images to support their theme. Such as I do here, a large image is somewhere on these blogs tha reinforce what the blogger is trying to say.</em></p>
<div id="attachment_818" class="wp-caption aligncenter" style="width: 530px">
	<a href="http://superdeluxelive.com/"><img src="http://asnio.com/wp-content/uploads/2009/06/charelston.gif" alt="A slideshow is on the right with a variety of different images." title="superdeluxelive.com" width="530" height="180" class="size-full wp-image-818" /></a>
	<p class="wp-caption-text">A slideshow is on the right with a variety of different images.</p>
</div>
<div id="attachment_819" class="wp-caption aligncenter" style="width: 530px">
	<a href="http://www.virtualsportsnetwork.com/"><img src="http://asnio.com/wp-content/uploads/2009/06/sports.gif" alt="A large screenshot of a video game is posted at the top of each post." title="www.virtualsportsnetwork.com" width="530" height="180" class="size-full wp-image-819" /></a>
	<p class="wp-caption-text">A large screenshot of a video game is posted at the top of each post.</p>
</div>
<div id="attachment_820" class="wp-caption aligncenter" style="width: 530px">
	<a href="http://www.otherbs.com/"><img src="http://asnio.com/wp-content/uploads/2009/06/otherbs.gif" alt="Still trying to figure it out, but the dude has a shovel. Good use of the Multimedia box however!" title="otherbs.com" width="530" height="180" class="size-full wp-image-820" /></a>
	<p class="wp-caption-text">Still trying to figure it out, but the dude has a shovel. Good use of the Multimedia box however!</p>
</div>
<h3>Rockin’ One Column Layouts</h3>
<p><em>I feel the one column look is the most under utilized look in all of Thesis’s many faces. But I did manage to find some pretty damn nice examples of the one column look.</em></p>
<div id="attachment_824" class="wp-caption aligncenter" style="width: 530px">
	<a href="http://www.acreestudios.com/"><img src="http://asnio.com/wp-content/uploads/2009/06/acreestudios.gif" alt="A great one column look with a unique color choice." title="Acreestudios.com" width="530" height="180" class="size-full wp-image-824" /></a>
	<p class="wp-caption-text">A great one column look with a unique color choice.</p>
</div>
<div id="attachment_825" class="wp-caption aligncenter" style="width: 530px">
	<a href="http://www.bleikamp.com/"><img src="http://asnio.com/wp-content/uploads/2009/06/bleikamp.gif" alt="A nice modern looking design." title="bleikamp.com" width="530" height="180" class="size-full wp-image-825" /></a>
	<p class="wp-caption-text">A nice modern looking design.</p>
</div>
<div id="attachment_829" class="wp-caption aligncenter" style="width: 530px">
	<a href="http://www.kristarella.com/"><img src="http://asnio.com/wp-content/uploads/2009/06/kristarella.gif" alt="Last but not least, probably the nicest one column theme on Thesis." title="www.kristarella.com" width="530" height="180" class="size-full wp-image-829" /></a>
	<p class="wp-caption-text">Last but not least, probably the nicest one column theme on Thesis.</p>
</div>
<h3>Huge Headers</h3>
<p><em>Thesis themes that have adapted to using a huge header to get the point of their blog across in an easy, noticeable and effective way.</em></p>
<div id="attachment_826" class="wp-caption aligncenter" style="width: 530px">
	<a href="http://www.gordon-ryan.com/"><img src="http://asnio.com/wp-content/uploads/2009/06/gordanryan.gif" alt="Great type at the top, clearly spreads the point of his blog in his header." title="Gordon-Ryan.com" width="530" height="180" class="size-full wp-image-826" /></a>
	<p class="wp-caption-text">Great type at the top, clearly spreads the point of his blog in his header.</p>
</div>
<div id="attachment_827" class="wp-caption aligncenter" style="width: 530px">
	<a href="http://thejosevilson.com/blog/"><img src="http://asnio.com/wp-content/uploads/2009/06/jose-vilson.gif" alt="Awesome city background." title="thejosevilson.com/blog/" width="530" height="180" class="size-full wp-image-827" /></a>
	<p class="wp-caption-text">Awesome city background.</p>
</div>
<div id="attachment_828" class="wp-caption aligncenter" style="width: 530px">
	<a href="http://www.shatterboxx.com/"><img src="http://asnio.com/wp-content/uploads/2009/06/shatterbox.gif" alt="Shatterboxx seems to make an appearance in a lot of my Thesis Thursday posts. :p I think the size of this header speaks for itself." title="www.shatterboxx.com" width="530" height="180" class="size-full wp-image-828" /></a>
	<p class="wp-caption-text">Shatterboxx seems to make an appearance in a lot of my Thesis Thursday posts. :p I think the size of this header speaks for itself.</p>
</div>
<h3>But the Trends Don’t Stop Here</h3>
<p>There are so many trends that you can start with Thesis. The design community in Thesis is a little bland at the moment, and all it takes is just one great Thesis designer to come out and create even more trends! What’s stopping you?</p>
<p>I hope this post has inspired you in some way, and I look forward to hitting the 10th Thesis Thursday soon!</p>
<h4>Show off your theme</h4>
<p>While I’m at it, post links to your Thesis theme! I would love to see some new styles here. <img src='http://asnio.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
]]></content:encoded>
			<wfw:commentRss>http://asnio.com/design-trends-in-the-thesis-community/feed/</wfw:commentRss>
		<slash:comments>33</slash:comments>
		</item>
		<item>
		<title>Maximize Your Earnings Through the Thesis Affiliate Program</title>
		<link>http://asnio.com/maximize-thesis-affiliate-program/</link>
		<comments>http://asnio.com/maximize-thesis-affiliate-program/#comments</comments>
		<pubDate>Thu, 11 Jun 2009 20:55:30 +0000</pubDate>
		<dc:creator>Alex</dc:creator>
				<category><![CDATA[Thesis Thursday]]></category>
		<category><![CDATA[affiliate program]]></category>
		<category><![CDATA[make money online]]></category>
		<category><![CDATA[thesis affiliate program]]></category>

		<guid isPermaLink="false">http://asnio.com/?p=749</guid>
		<description><![CDATA[There are so many things that Thesis has to offer you, and one of those things is the ability to get paid. Yes, I am talking about the Thesis Affiliate Program that is available. You don’t even have to own Thesis to use this affiliate program either, which makes this even better. But with all [...]]]></description>
			<content:encoded><![CDATA[<p></p><div class="tweetmeme_button" style="float: right; padding: 0 0 1em 1em;">
			<a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fasnio.com%2Fmaximize-thesis-affiliate-program%2F"><br />
				<img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fasnio.com%2Fmaximize-thesis-affiliate-program%2F&amp;source=AlexFraiser&amp;style=normal&amp;service=bit.ly" height="61" width="50" /><br />
			</a>
		</div>
<p><span class="drop_cap">T</span><acronym>here are so many things that</acronym> Thesis has to offer you, and one of those things is the ability to get paid. Yes, I am talking about the Thesis Affiliate Program that is available.</p>
<p>You don’t even have to own Thesis to use this affiliate program either, which makes this even better.</p>
<p><span id="more-749"></span></p>
<p>But with all of this competition out there to sell the theme, how are you supposed to be the merchant who stands out?</p>
<p>In this article, I am going to share with you a few ideas I use and processes I go through to sell the Thesis theme. I won’t lie and say I have sold a lot of copies, but I do think I have figured out the Thesis community and know of some things that can actually help!</p>
<h3>Use Thesis to it’s Max</h3>
<p>The one thing I have to say about the majority of Thesis bloggers is that they don’t take much time to really customize it a lot. Just look at my current blog design here (I’m coming up with a much more updated one soon though), and hundreds of other Thesis blogs out there — they still have those default styles. Some barely touch the code!</p>
<p>Sure, the standard Thesis look is fine. It’s simple and has great typography. What more could you want from a theme? But when it comes to trying to sell the Thesis theme without making any customizations, your readers will probably have two questions for you:</p>
<ul>
<li><strong>How easy is it to actually use?</strong></li>
<p>Chances are that somewhere in your pitch to sell Thesis, you mention how easy the theme is to use. You should back those words up and do something to prove that Thesis is as easy to use as you say. I can tell you that right now using Thesis out of the box and telling your readers it’s easy to use will not be as effective as you think it will be!</p>
<li><strong>Why sell it to us if you don’t make the best out of it?</strong></li>
<p>You can literally use Thesis and install it to your blog, and you can go farther to actually customize it. If you can customize Thesis a lot and iron out a lot of the defaults, then you are proving to me that Thesis really can be easy to use. But if you just change a few things around and leave most of it the same, I probably won’t be very convinced or inclined to buy it.
</ul>
<h3>Become a Thesis Guru With Words</h3>
<p>If you’re a Thesis user, you probably are sure to let the world know about it. I know I do, both here (obviously with this series), and my other blog.</p>
<p>I think every Thesis user knows something that another one doesn’t. After using Thesis for a while, you just learn all of these cool tricks and little tips. Why not share them with your readers? The Thesis community on Twitter always loves retweeting articles full of great innovative Thesis tricks. It just takes one great article for you and a #thesiswp hash tag on Twitter to earn yourself some credibility. </p>
<h3>More Helpful Tricks</h3>
<p>Here is quick little list of tips you can use to promote Thesis as well. I won’t go into much detail in them though.</p>
<ul>
<li>Edit the link in your footer to your affiliate code. If you have the Personal License, you have to keep it in there anyways. Might want to try and make some money off of it right?</li>
<li>Always add your affiliate code to any <acronym title="Uniform Resource Identifier">URL</acronym> you link to DIYthemes on your blog. So if you want to link to the DIYthemes About page, the link you could use would be: <a href="http://diythemes.com/thesis/about/?a_aid=alexFraiser">http://diythemes.com/thesis/about/?a_aid=alexFraiser</a>.</li>
<li>Don’t restrain your affiliate link to just your blog, whenever you mention Thesis on another site, why not link it? I see it a ton on Twitter, and I think it’s a great way to sell some copies if you mask the link and have an awesome sales pitch.</li>
<li>This may be looked down upon, but if you’re blog is new then stay away from using the banners to sell Thesis. I don’t believe any new blog should have banners up on their blog because it can harm the construction of the community. But that’s just my thought. Read more about <a href="http://www.blogussion.com/blog/creating-a-community/realized-banner-ads-harmful-community">why I decided banner ads weren’t right for my community</a> at <a href="http://www.blogussion.com/">Blogussion</a>.
</ul>
<h3>How Many Thesis Developers Do We Have Here?</h3>
<p>I was just wondering, since the Thesis Developers Option allows you to remove the Thesis link, do any Developers actually do it? I myself don’t, but I am curious if any other Developers do the same?</p>
]]></content:encoded>
			<wfw:commentRss>http://asnio.com/maximize-thesis-affiliate-program/feed/</wfw:commentRss>
		<slash:comments>20</slash:comments>
		</item>
		<item>
		<title>Tips For Keeping Your CSS &amp; Functions Organized</title>
		<link>http://asnio.com/organizes-thesis-css-functions/</link>
		<comments>http://asnio.com/organizes-thesis-css-functions/#comments</comments>
		<pubDate>Thu, 28 May 2009 23:22:41 +0000</pubDate>
		<dc:creator>Alex</dc:creator>
				<category><![CDATA[Thesis Thursday]]></category>
		<category><![CDATA[css]]></category>
		<category><![CDATA[file organization]]></category>
		<category><![CDATA[style sheets]]></category>

		<guid isPermaLink="false">http://asnio.com/?p=632</guid>
		<description><![CDATA[One of thing that sets Thesis apart from other themes is the way you can edit it. You are only required to edit two files to make any customizations throughout your whole website. Those two files, as you may know, are custom_functions.php and custom.css. The reasoning behind this is 100% for organization purposes. In regular [...]]]></description>
			<content:encoded><![CDATA[<p></p><div class="tweetmeme_button" style="float: right; padding: 0 0 1em 1em;">
			<a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fasnio.com%2Forganizes-thesis-css-functions%2F"><br />
				<img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fasnio.com%2Forganizes-thesis-css-functions%2F&amp;source=AlexFraiser&amp;style=normal&amp;service=bit.ly" height="61" width="50" /><br />
			</a>
		</div>
<p><span class="drop_cap">O</span><acronym>ne of thing that sets Thesis</acronym> apart from other themes is the way you can edit it. You are only required to edit two files to make any customizations throughout your whole website. </p>
<p><span id="more-632"></span></p>
<p>Those two files, as you may know, are <code>custom_functions.php</code> and <code>custom.css</code>. The reasoning behind this is 100% for organization purposes. In regular WordPress themes, you have many files to work from. In Thesis, you just have two. It makes so much more sense, and it will ultimately make your site run faster.</p>
<p>The only problem I have with editing only two files is that everything can start to get rather cluttered. You control every element and every piece of the layout in these two files, that if you have a lot of customizations — you’re going to have a mess.</p>
<p>The reason this even occurred to me is because my other blog, <a href="http://www.blogussion.com/">Blogussion</a> is a very heavily edited version of Thesis that has a lot of custom <acronym title="Cascading Style Sheets">CSS</acronym>, and a lot of different functions. I looked into the files one day and realized that I made a mess!</p>
<p>As I was editing, this idea for a Thesis Thursday post came into my head. I’m going to share with you the things I did to keep my files more organized. You can apply some of these tips to any theme really, but I’m going to be speaking in Thesis throughout this tutorial (yes, I did just refer to Thesis as a language).</p>
<h3>“.custom” is ONLY needed on styles you are editing from the default style!</h3>
<p>This was a mistake I made at first, and is something I think is being made on some other Thesis powered blogs as well.</p>
<p>If you read the instructions in the default <code>custom.css</code> file, you will see that:</p>
<blockquote><p>You can use the “custom” class to override *any* CSS declarations contained in the style.css file.</p></blockquote>
<p>If you skim through things like me, that file probably read to you as “Use .custom to add CSS here.” Just know that you only need to add “.custom” in front of the class you are editing from the default <code>style.css</code>. If you made something up on your themes, you do <strong>not</strong> need “.custom” in front of it!</p>
<h3>Create A Color Code Chart</h3>
<p>I actually picked this trick up from <a href="http://css-tricks.com/">Chris Coyier</a>, and I think that any designer, not <em>just</em> a Thesis designer should listen to.</p>
<p>Designing has a lot to do with <em>consistency</em>. In your theme, you don’t want to use a lot of different colors because it can look really weird and tripped out. I find that if you create a color chart of all of the colors you use throughout your coding, you will be in some good shape.</p>
<p>This is what I did at Blogussion, I commented these color codes at the top of the file and whenever I needed a specific color, I just scrolled to the top and got it.</p>
<blockquote><p>
COLOR CHART<br />
RED:#B82626<br />
BLACK:#312F2F<br />
LIGHT GRAY:#CCC<br />
DARK GRAY:#B82626<br />
WHITE:#F1F1F1
</p></blockquote>
<p>You don’t even have to keep it in your <acronym title="Cascading Style Sheets">CSS</acronym>, maybe a file you keep somewhere on your desktop or something.</p>
<h3>Use Comments!</h3>
<p>Using comments in your <acronym title="Cascading Style Sheets">CSS</acronym> will help a lot, especially in Thesis. Because you usually don’t write many of your own styles, but edit them, having some comments around are crucial for editing. </p>
<p>You don’t know what most of the names are, and what exactly they control from the name all the time. So by distinguishing where each line of code goes, it will help you a lot.</p>
<h3>Limit Comments, Create Functions Table</h3>
<p>This is something I’ve done experimentally. The functions file is <acronym title="PHP: Hypertext Preprocessor">PHP</acronym> based, and I am not really knowledgeable with the language. I don’t know how files are organized usually, but this is what I can say I do in my custom_functions file.</p>
<h4>A. Create A List of All Function Names</h4>
<p>When I name my functions, I copy and paste the name to the top of the file. This is kind of like the style sheet color chart I talked about above. I comment in at the top “Functions Chart” and put all of the function names below it. Since I have a lot of functions, this is ideal for me to do.</p>
<h4>B. Remove Any Other Comments</h4>
<p>Once I have all of the function names at the top, I don’t need comments to make reading the function name easier. I would normally just add a comment above each function with the name because looking at all of the different <acronym title="PHP: Hypertext Preprocessor">PHP</acronym> code would get me confused.</p>
<h4>C. Now Locating Functions Is Easier</h4>
<p>If you need to find a function now, you can just open up <code>custom_functions.php</code>, look through your name chart, go to your Search Box (usually CTRL/CMD + F) and paste the function name right in. It will find it, and jump you right down to the function you want to edit.</p>
<p>I hope I explained that well enough for you to understand! You can also apply the same thing with your <acronym title="Cascading Style Sheets">CSS</acronym>, I think it’s way easier than remembering the names of the functions and classes if you have a nice little table at the top of the page to remember it all for you.</p>
<h3>More Thesis Organization Tips</h3>
<ul>
<li><a href="http://www.berchman.com/thesis-tutorial-multiple-custom-page-templates/">Multiple Custom Page Templates</a></li>
<li><a href="http://www.fergusweb.net/coding/thesis-tutorial-creating-new-widget-areas/">Thesis Tutorial — Creating New Widget Areas</a></li>
<li><a href="http://rickbeckman.org/thesis-openhook/">Thesis OpenHook Plugin</a></li>
<li><a href="http://vimeo.com/3087755">Using Firebug for CSS</a></li>
</ul>
<p>I hope you have learned a thing or two about keeping your Thesis files nice and clean. A lot of these tips will be useful for you if you do a lot of customizations, but if you don’t have that many, it may not be as handy.</p>
]]></content:encoded>
			<wfw:commentRss>http://asnio.com/organizes-thesis-css-functions/feed/</wfw:commentRss>
		<slash:comments>14</slash:comments>
		</item>
		<item>
		<title>10 of the Greatest Thesis Minds you should follow on Twitter</title>
		<link>http://asnio.com/thesis-pros-twitter/</link>
		<comments>http://asnio.com/thesis-pros-twitter/#comments</comments>
		<pubDate>Fri, 15 May 2009 01:30:25 +0000</pubDate>
		<dc:creator>Alex</dc:creator>
				<category><![CDATA[Thesis Thursday]]></category>
		<category><![CDATA[openhook]]></category>
		<category><![CDATA[thesis professionals]]></category>
		<category><![CDATA[twitter]]></category>
		<category><![CDATA[WordPress]]></category>

		<guid isPermaLink="false">http://asnio.com/?p=440</guid>
		<description><![CDATA[Twitter has proven to be an amazing place for getting Thesis related news, and updates on blogs that use Thesis. I have found a lot of great information by searching with the #thesiwp hash tag, and have figured out who the Thesis pros are on Twitter. So, with Week 3 of Thesis Thursday here, I [...]]]></description>
			<content:encoded><![CDATA[<p></p><div class="tweetmeme_button" style="float: right; padding: 0 0 1em 1em;">
			<a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fasnio.com%2Fthesis-pros-twitter%2F"><br />
				<img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fasnio.com%2Fthesis-pros-twitter%2F&amp;source=AlexFraiser&amp;style=normal&amp;service=bit.ly" height="61" width="50" /><br />
			</a>
		</div>
<p><span class="drop_cap">T</span><acronym title="Thesis Thursday 3">witter has proven to be an</acronym> amazing place for getting Thesis related news, and updates on blogs that use Thesis. I have found a lot of great information by searching with the <a href="http://twitter.com/#search?q=%23thesiswp">#thesiwp</a> hash tag, and have figured out who the Thesis pros are on Twitter.</p>
<p><span id="more-440"></span></p>
<p>So, with Week 3 of Thesis Thursday here, I present to you 10 of the smartest Thesis users I know of on Twitter. Not all of these people will always tweet about Thesis, but they all have contributed greatly to the Thesis WordPress theme in their own ways.</p>
<h3>1. <a href="http://twitter.com/pearsonified">@pearsonified</a></h3>
<p><img class="alignleft size-full wp-image-456" title="Chris Pearson" src="http://asnio.com/wp-content/uploads/2009/05/cp-thumb-2.jpg" alt="Chris Pearson" width="125" height="125" />The genius behind Thesis (hey, I made a rhyme), <a href="http://www.pearsonified.com/">Chris Pearson</a> is the dude who posts all of the hottest Thesis related news on his Twitter account. Pretty much anything he says on Twitter with that #thesiswp hash tag gets retweeted like 1,000 times, so if there’s a breakthrough somewhere in Thesis, you’ll be damn sure to hear it from him.</p>
<h3>2. <a href="http://twitter.com/KingdomGeek">@KingdomGeek</a></h3>
<p><img class="alignleft size-full wp-image-473" title="rick_beckman" src="http://asnio.com/wp-content/uploads/2009/05/rick_beckman.jpg" alt="rick_beckman" width="125" height="125" /> If you head over to the Thesis Support forums, you will notice one guy who stands out from the rest — and that is <a href="http://rickbeckman.org/">Rick Beckman</a>. He probably supports the most people then anyone else at the Support forums, and to top it all off — he created the kick ass <a href="http://rickbeckman.org/thesis-openhook/">Thesis OpenHook plugin</a> which allows you to make any edit you want to your theme without even leaving your Admin Panel.</p>
<h3>3. <a href="http://twitter.com/kristarella">@kristarella</a></h3>
<p><img class="alignleft size-full wp-image-482" title="Kristarella" src="http://asnio.com/wp-content/uploads/2009/05/profile2_300_.jpg" alt="Kristarella" width="125" height="125" />At her blog <a href="http://www.kristarella.com/">Kristarella</a>, she uses Thesis in a way not many people have before, and that’s by using the one column look. She does it very well, and it looks great. She has some outstandingly awesome tutorials on her blog that I use every time I code a Thesis theme, and is just insanely useful. She posts tips on Twitter, and retweets useful Thesis information.</p>
<h3>4. <a href="http://twitter.com/doublemule">@doublemule</a></h3>
<p><img class="alignleft size-full wp-image-487" title="twitter-doublemule" src="http://asnio.com/wp-content/uploads/2009/05/twitter-doublemule.jpg" alt="twitter-doublemule" width="125" height="125" />Only tweets a little, but <a href="http://www.doublemule.com/">Double Mule</a> is a great blog with a lot of great Thesis stuff on it. But, their blog is something not to be missed by any Thesis user. They have a great, huge SEO tutorial, a list of who they consider to be “Thesis Pros,” and a lot more informative posts about Thesis at their blog.</p>
<h3>5. <a href="http://twitter.com/jamievaron">@jamievaron</a></h3>
<p><img class="alignleft size-full wp-image-485" title="jamie varon" src="http://asnio.com/wp-content/uploads/2009/05/newtwitterpic.jpg" alt="jamie varon" width="125" height="125" />Jamie Varon has created <a href="http://www.twittershouldhireme.com/">some</a> <a href="http://www.intersectedblog.com/">excellent</a> <a href="http://www.shatterboxx.com/">Thesis</a> <a href="http://shorespeak.com/blog/">designs</a> before, and has a great Thesis theme related service in the works. She is definitely talented at what she does with her Thesis themes, and I (and many others I’m sure) can’t wait to see what she has to come up with next.</p>
<h3>6. <a href="http://twitter.com/sugarrae">@sugarrae</a></h3>
<p><a href="http://www.sugarrae.com/">Rae Hoffman</a>’s blog was probably the first customized Thesis I have ever seen. She has a really nice looking customization, and the greatest part about it is that she posts a ton of tutorials on how to pimp out a version of Thesis. She tweets about Internet Marketing and has conversations with her followers a lot, but she does throw out some Thesis stuff here and there.</p>
<h3>7. <a href="http://twitter.com/HowToMakeMyBlog">@HowToMakeMyBlog</a></h3>
<p><img class="alignleft size-full wp-image-500" title="Marko Saric" src="http://asnio.com/wp-content/uploads/2009/05/739434.jpg" alt="Marko Saric" width="160" height="120" />Marko Saric has been such an inspiration for me. I found his blog, <a href="http://www.howtomakemyblog.com/">HowToMakeMyBlog</a>, and I knew two things. One, I wanted to get into the “Blogging about blog” niche, and two — I wanted Thesis. Marko writes some great Thesis tutorials on his blog, and whenever he launches one off, it becomes a huge hit.</p>
<h3>8. <a href="http://twitter.com/ThesisHacker">@thesishacker</a></h3>
<p>The blog <a href="http://www.thesishacker.com/">Thesis Hacker</a> was probably the first Thesis tips blog I read. It helped me so much, and I recommend any new Thesis user who is lost to read this blog for some basic, but handy tutorials. Although this Twitter account is small, it’s used as a feed to post the latest tutorials from the Thesis Hacker blog, which can surely help you out if you ever need a quick tip or two.</p>
<p>His customizations are used on many Thesis blogs, making him a strong influence in the Thesis design community. Definitely a great guy to follow on Twitter for some extra links to useful articles.</p>
<h3>9. <a href="http://twitter.com/jermainemaree">@jermainemaree</a></h3>
<p><img class="alignleft size-full wp-image-507" title="Jermaine Maree" src="http://asnio.com/wp-content/uploads/2009/05/n33021737_35770381_7352.jpg" alt="Jermaine Maree" width="125" height="115" />One of the “<a href="http://www.wpbandit.com/">WPBandits</a>,” and also a <a href="http://www.doublemule.com/thesis-designers-wpbandit-jermaine-maree/">Double Mule Certified Thesis Designer</a>, Jermaine knows how to code some pretty sweet looking Thesis themes. He doesn’t work alone at WPBandit, his partner <a href="http://agnarson.com/">Alex Agnarson </a> does some amazing stuff. I love this quote from the Double Mule article, it shows how great their WPBandit service is:</p>
<blockquote><p>Alex and Jermaine focus on quality, limiting the number of clients worked with to ensure that each customer receives an amazing website. Alex loves to create designs that make Jermaine say, “how am I suppose to code this?” — which typically results in a site that exceeds the client’s expectations and makes other Thesis developers say… how did they code that?</p></blockquote>
<h3>10. <a href="http://twitter.com/mitchcooper">@mitchcooper</a></h3>
<p>Mitch Cooper has done some truly kick ass Thesis design work. He is the guy behind the <a href="http://diyninjas.com/">DIYNinjas</a> and has designed some of the best Thesis sites around.</p>
<p>So there we have it. The third Thesis Thursday (a little late). 10 great Thesis geniuses on Twitter. Hope you enjoyed it, and hope you stick around for some more posts.</p>
<p><small>Any images used were found on the respective owners Twitter page.</small></p>
]]></content:encoded>
			<wfw:commentRss>http://asnio.com/thesis-pros-twitter/feed/</wfw:commentRss>
		<slash:comments>16</slash:comments>
		</item>
	</channel>
</rss>
<!-- WP Super Cache is installed but broken. The path to wp-cache-phase1.php in wp-content/advanced-cache.php must be fixed! -->