<?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/tags/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>10 Greatly Customized Thesis Blogs + Thesis Customization Tips</title>
		<link>http://asnio.com/10-incredibly-well-designed-thesis-blogs/</link>
		<comments>http://asnio.com/10-incredibly-well-designed-thesis-blogs/#comments</comments>
		<pubDate>Thu, 07 May 2009 23:43:36 +0000</pubDate>
		<dc:creator>Alex</dc:creator>
				<category><![CDATA[Thesis Thursday]]></category>
		<category><![CDATA[thesis tutorials]]></category>
		<category><![CDATA[web design]]></category>
		<category><![CDATA[WordPress]]></category>

		<guid isPermaLink="false">http://asnio.com/?p=347</guid>
		<description><![CDATA[With another Thursday comes another Thesis Thursday. This would be the second of the many posts in this everlasting series, and in this Thursday’s post, I am going to showcase 10 blogs powered by Thesis that don’t look like they use Thesis. The sites showcased here you may have not seen before, and I can [...]]]></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%2F10-incredibly-well-designed-thesis-blogs%2F"><br />
				<img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fasnio.com%2F10-incredibly-well-designed-thesis-blogs%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">W</span>ith another Thursday comes another <em>Thesis</em> Thursday. This would be the second of the many posts in this everlasting series, and in this Thursday’s post, I am going to showcase 10 blogs powered by Thesis that don’t look like they use Thesis.</p>
<p><span id="more-347"></span></p>
<p>The sites showcased here you may have not seen before, and I can tell you that I did not just pluck out these sites from the <a href="http://diythemes.com/thesis/showcase/?a_aid=499b722332330">Thesis Showcase</a> at DIYthemes. I just figured that it would be pointless to show you sites you have already seen, so I took the extra time to find some very unique themes from the Thesis community.</p>
<h4>Why Do This?</h4>
<p>The reason why I am showing you these blogs is because the one complaint I hear a lot about Thesis is that “all the blogs that run it look the same.” I want to prove to those people that you can use Thesis and not leave much to recognize it later by showing off these awesome blogs.</p>
<h3>WPBandit.com</h3>
<p><img src="http://asnio.com/wp-content/uploads/2009/05/wpbandit.gif" alt="WPBandit.com" title="WPBandit.com" width="480" height="150" class="aligncenter size-full wp-image-385" /><br />
Not only do they release some cool <a href="http://www.wpbandit.com/thesis-themes/">Thesis themes</a> at their site, but they are running on a very cool theme themselves!</p>
<p>The design is not only very appealing to the eye, but the additions to the header are what makes this theme so great to look at. Navigation is very easy, and the way the content is displayed on the blog is very elegant and totally readable.</p>
<p><a href="http://www.wpbandit.com">Visit Site</a></p>
<h3>MakeThingsFair.com</h3>
<p><img src="http://asnio.com/wp-content/uploads/2009/05/makethingsfair.gif" alt="makethingsfair" title="makethingsfair" width="480" height="150" class="aligncenter size-full wp-image-397" /><br />
Not only is the cause for the site amazing, so are the customizations made to the theme!</p>
<p>At first glance, the only thing that gave this site away are the forms in the sidebar, but pretty much from there it is all solid customizations.</p>
<p>This theme is rockin’ the 3 column look, and really makes the content stand out from the rest of the site by adding an easy to look at yellow background to each title. Truly, a great use of the Thesis theme.</p>
<p><a href="http://makethingsfair.com/">Visit Site</a></p>
<h3>Kuronoir.net</h3>
<p><img src="http://asnio.com/wp-content/uploads/2009/05/kuronoir.gif" alt="kuronoir" title="kuronoir" width="480" height="150" class="aligncenter size-full wp-image-401" /><br />
I can’t tell you how to pronounce that, but I can tell you that this is one pimpin’ Thesis customization!</p>
<p>Here is a great example of how well you can make Thesis look by inverting it’s original colors and going dark. There are so many cool things about this design. To name a few, the borders around the whole wrapper, the use of images as headings in the sidebar, an awesome header and footer, and plenty more.</p>
<p><a href="http://kuronoir.net/">Visit Site</a></p>
<h3>Ahjira.com</h3>
<p><img src="http://asnio.com/wp-content/uploads/2009/05/suzanneahjira.gif" alt="suzanneahjira" title="suzanneahjira" width="480" height="150" class="aligncenter size-full wp-image-403" /><br />
Someone I have talked with quite a bit on Twitter, and also a bearer of a nicely customized Thesis.</p>
<p>What I love most about this is the effect in the header (for all of those crazy colors), and how she connects the subscribe box between the header and sidebar. Besides that stuff, she has some cool gradients all throughout the blog to add a 3D effect to her containers, as well as a great navigation menu and sidebar, along with a great, big footer.</p>
<p><a href="http://ahjira.com/">Visit Site</a></p>
<h3>PhillipBarron.net</h3>
<p><img src="http://asnio.com/wp-content/uploads/2009/05/philbarron.gif" alt="philbarron" title="philbarron" width="480" height="150" class="aligncenter size-full wp-image-405" /><br />
Definitely the most interesting theme in this mini-showcase, however Phil Barron has really done a number on his theme.</p>
<p>All throughout the design, he has some really interesting textures going on. A cool grungy on as the background, a rough texture for the content box, and a field as his footer. The other thing is great about this is the trick he did to keep the navigation bar at the top of the page at all times. Great work Phil.</p>
<p><a href="http://www.philipbarron.net/">Visit Site</a></p>
<h3>Blogussion.com</h3>
<p><img src="http://asnio.com/wp-content/uploads/2009/05/blogussion.gif" alt="blogussion" title="blogussion" width="480" height="150" class="aligncenter size-full wp-image-407" /><br />
Shameless self promotion or is this actually a well done theme that you may not have seen?</p>
<p>I designed this site, and I did my best to take out the standard Thesis look in just about every aspect of the design. A simple header with plenty of links and simple navigation, a tricked out sidebar, and an overhaul of the standard comments look.</p>
<p><a href="http://www.blogussion.com/">Visit Site</a></p>
<h3>CreepyLA.com</h3>
<p><img src="http://asnio.com/wp-content/uploads/2009/05/creepyla.gif" alt="creepyla" title="creepyla" width="480" height="150" class="aligncenter size-full wp-image-409" /><br />
A blog full of creepy content, but there is nothing creepy about their awesome customizations.</p>
<p>The logo is really cool, as are the textures used throughout the site. I personally think that the font they use on the site is really fun, matches the site’s theme well, and more importantly — uncommonly used.</p>
<p><a href="http://creepyla.com/">Visit Site</a><br />
<s><br />
<h3>BlueAnalytics.com</h3>
<p><img src="http://asnio.com/wp-content/uploads/2009/05/blueanalytics.gif" alt="blueanalytics" title="blueanalytics" width="480" height="150" class="aligncenter size-full wp-image-411" /><br />
Besides having a unique Thesis theme, this site really displays their content in a pretty unique manner.</p>
<p>I love the simplicity here, and the way the content is organized is totally unique. It is light on images (as a matter of fact, I only see 8 images, 7 of those being tiny icons) and uses the sexy Trebuchet MS to support that “clean” vibe the site gives off.<br />
</s><strong>No Longer on Thesis</strong></p>
<h3>CuteOverload.com</h3>
<p><img src="http://asnio.com/wp-content/uploads/2009/05/cuteoverload.gif" alt="cuteoverload" title="cuteoverload" width="480" height="150" class="aligncenter size-full wp-image-412" /><br />
Cute animals and a really cool design. What’s a better combination?</p>
<p>Even though this site has that standard Thesis navigation, I still find this to be a very unique design. The colors, the images, and the amazing header are all what contributes to this awesome Thesis theme.</p>
<p>Okay, maybe those little furry animals made me add this design to the showcase. I mean seriously, look at those dogs. One of them is literally eating the other one.</p>
<p><a href="http://cuteoverload.com/">Visit Site</a></p>
<h3>Shatterboxx</h3>
<p><img src="http://asnio.com/wp-content/uploads/2009/05/shatterboxx.gif" alt="shatterboxx" title="shatterboxx" width="480" height="150" class="aligncenter size-full wp-image-413" /><br />
Yeah, really, it’s Thesis. Seriously.</p>
<p>The simplest one in this showcase, this design has no sidebar, or anything else you would expect from a site using Thesis. The header is beautiful, and you have to admire the whole one column look.</p>
<p><a href="http://www.shatterboxx.com/">Visit Site</a></p>
<h3>Need Tips For Customizing <em>Your</em> Thesis theme?</h3>
<p>With all of those awesome sites listed above, I don’t blame you for feeling like your Thesis theme just isn’t meeting it’s true potential in looks.</p>
<p>There are tons of sites out there for Thesis to help you customize it. Not a lot of people understand the hook system, so these are the kind of sites you may be interested in for customizing Thesis.</p>
<ul>
<li><a href="http://www.thesishacker.com/">Thesis Hacker</a></li>
<li><a href="http://thesisthemehq.com/">Thesis Theme HQ</a></li>
<li><a href="http://www.sugarrae.com/category/blogging-it/">Sugarrae</a></li>
<li><a href="http://www.kristarella.com/tag/thesis/">Kristarella</a></li>
<li><a href="http://www.blogussion.com/blog/thesis">Blogussion</a></li>
<li><a href="http://mattflies.com/?s=Thesis">MattFlies</a></li>
<li><a href="http://www.berchman.com/tag/thesis/">Berchman</a></li>
<li><a href="http://howtomakemyblog.com/">HowToMakeMyBlog</a></li>
<li><a href="http://www.wolf-howl.com/?s=thesis">GrayWolf</a></li>
<li><a href="http://franklinbishop.net/category/thesis-wordpress-theme-tutorial/">Franklin Bishop</a></li>
<li><a href="http://www.doublemule.com/">DoubleMule</a></li>
<li><a href="http://www.fergusweb.net/?s=thesis">FergusWeb</a></li>
<li><a href="http://rickbeckman.org/search-results/?cx=partner-pub-6093792204608100%3A991mt8-vwdn&#038;cof=FORID%3A10&#038;ie=UTF-8&#038;q=thesis&#038;sa=Search#1221">Rick Beckman</a></li>
<li><a href="http://www.google.com/cse?cx=008969877694267133240%3Athnptpv_7pa&#038;ie=UTF-8&#038;q=Thesis&#038;sa=Search">Empty Cabin Media</a></li>
</ul>
<p>Enjoy! That took like 2 days to do, such madness.</p>
]]></content:encoded>
			<wfw:commentRss>http://asnio.com/10-incredibly-well-designed-thesis-blogs/feed/</wfw:commentRss>
		<slash:comments>60</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! -->