<?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>HeGeeks.com &#187; Thesis Theme</title>
	<atom:link href="http://hegeeks.com/category/thesis-theme/feed" rel="self" type="application/rss+xml" />
	<link>http://hegeeks.com</link>
	<description>Miscellaneous Ramblings of a Geek Blogger</description>
	<lastBuildDate>Fri, 12 Mar 2010 22:07:09 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.2</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>Thesis Theme Tutorial: How to Add a Second Navigation Menu</title>
		<link>http://hegeeks.com/thesis-theme/thesis-theme-tutorial-how-to-add-a-second-navigation-menu.html</link>
		<comments>http://hegeeks.com/thesis-theme/thesis-theme-tutorial-how-to-add-a-second-navigation-menu.html#comments</comments>
		<pubDate>Wed, 27 Jan 2010 22:27:25 +0000</pubDate>
		<dc:creator>Marko</dc:creator>
				<category><![CDATA[Thesis Theme]]></category>

		<guid isPermaLink="false">http://hegeeks.com/?p=944</guid>
		<description><![CDATA[As you can see I have one navigation bar above the header and one below the header. In this post I will show you how easy it is to add another navigation bar in Thesis theme.
It&#8217;s really simple. In fact, you only have to put the following code into custom_functions.php file.
function menu2() { ?&#62;
&#60;ul id="menu2" [...]


Related posts:<ol><li><a href='http://hegeeks.com/thesis-theme/thesis-theme-tutorial-move-comments-link-from-below-the-post-to-byline.html' rel='bookmark' title='Permanent Link: Thesis Theme Tutorial: Move Comments Link from Below the Post to Byline'>Thesis Theme Tutorial: Move Comments Link from Below the Post to Byline</a></li>
<li><a href='http://hegeeks.com/thesis-theme/how-to-add-custom-banner-ad-in-thesis-theme-header.html' rel='bookmark' title='Permanent Link: How to Add Custom Banner Ad in Thesis Theme Header'>How to Add Custom Banner Ad in Thesis Theme Header</a></li>
<li><a href='http://hegeeks.com/thesis-theme/clickable-image-in-header-in-thesis-theme.html' rel='bookmark' title='Permanent Link: Clickable Header Image in Thesis Theme'>Clickable Header Image in Thesis Theme</a></li>
<li><a href='http://hegeeks.com/thesis-theme/hegeeks-is-powered-by-thesis-theme.html' rel='bookmark' title='Permanent Link: HeGeeks is Powered by Thesis Theme'>HeGeeks is Powered by Thesis Theme</a></li>
</ol>]]></description>
			<content:encoded><![CDATA[<p></p><p>As you can see I have one navigation bar above the header and one below the header. In this post I will show you how easy it is to add another navigation bar in <a href="http://hegeeks.com/go/thesis" target="_blank">Thesis theme</a>.</p>
<p>It&#8217;s really simple. In fact, you only have to put the following code into custom_functions.php file.</p>
<p><code>function menu2() { ?&gt;<br />
&lt;ul id="menu2" class="menu"&gt;<br />
&lt;?php wp_list_categories('title_li='); ?&gt;<br />
&lt;/ul&gt;<br />
&lt;?php }<br />
add_action('thesis_hook_after_header','menu2');</code></p>
<p>This will add a second navigation menu under the header which will include all categories. The default top navigation menu will include whatever you set in Thesis Options &#8211; I only have static pages in top navigation menu.</p>


<p>Related posts:<ol><li><a href='http://hegeeks.com/thesis-theme/thesis-theme-tutorial-move-comments-link-from-below-the-post-to-byline.html' rel='bookmark' title='Permanent Link: Thesis Theme Tutorial: Move Comments Link from Below the Post to Byline'>Thesis Theme Tutorial: Move Comments Link from Below the Post to Byline</a></li>
<li><a href='http://hegeeks.com/thesis-theme/how-to-add-custom-banner-ad-in-thesis-theme-header.html' rel='bookmark' title='Permanent Link: How to Add Custom Banner Ad in Thesis Theme Header'>How to Add Custom Banner Ad in Thesis Theme Header</a></li>
<li><a href='http://hegeeks.com/thesis-theme/clickable-image-in-header-in-thesis-theme.html' rel='bookmark' title='Permanent Link: Clickable Header Image in Thesis Theme'>Clickable Header Image in Thesis Theme</a></li>
<li><a href='http://hegeeks.com/thesis-theme/hegeeks-is-powered-by-thesis-theme.html' rel='bookmark' title='Permanent Link: HeGeeks is Powered by Thesis Theme'>HeGeeks is Powered by Thesis Theme</a></li>
</ol></p>]]></content:encoded>
			<wfw:commentRss>http://hegeeks.com/thesis-theme/thesis-theme-tutorial-how-to-add-a-second-navigation-menu.html/feed</wfw:commentRss>
		<slash:comments>7</slash:comments>
		</item>
		<item>
		<title>Thesis Theme Tutorial: Move Comments Link from Below the Post to Byline</title>
		<link>http://hegeeks.com/thesis-theme/thesis-theme-tutorial-move-comments-link-from-below-the-post-to-byline.html</link>
		<comments>http://hegeeks.com/thesis-theme/thesis-theme-tutorial-move-comments-link-from-below-the-post-to-byline.html#comments</comments>
		<pubDate>Wed, 27 Jan 2010 22:17:08 +0000</pubDate>
		<dc:creator>Marko</dc:creator>
				<category><![CDATA[Thesis Theme]]></category>

		<guid isPermaLink="false">http://hegeeks.com/?p=937</guid>
		<description><![CDATA[In this short Thesis theme tutorial I will show you how to remove comments link that is by default below the post and move it under the headline as I have done on my blog.
First, you will have to remove comment link below the post by inserting the following code to your custom_functions.php file.
remove_action('thesis_hook_after_post', 'thesis_comments_link');
Second, [...]


Related posts:<ol><li><a href='http://hegeeks.com/thesis-theme/thesis-theme-tutorial-how-to-add-a-second-navigation-menu.html' rel='bookmark' title='Permanent Link: Thesis Theme Tutorial: How to Add a Second Navigation Menu'>Thesis Theme Tutorial: How to Add a Second Navigation Menu</a></li>
<li><a href='http://hegeeks.com/thesis-theme/how-to-add-custom-banner-ad-in-thesis-theme-header.html' rel='bookmark' title='Permanent Link: How to Add Custom Banner Ad in Thesis Theme Header'>How to Add Custom Banner Ad in Thesis Theme Header</a></li>
<li><a href='http://hegeeks.com/thesis-theme/how-to-add-tweetmeme-button-to-byline.html' rel='bookmark' title='Permanent Link: How to: Add Tweetmeme Button to Byline'>How to: Add Tweetmeme Button to Byline</a></li>
<li><a href='http://hegeeks.com/thesis-theme/clickable-image-in-header-in-thesis-theme.html' rel='bookmark' title='Permanent Link: Clickable Header Image in Thesis Theme'>Clickable Header Image in Thesis Theme</a></li>
</ol>]]></description>
			<content:encoded><![CDATA[<p></p><p>In this short <a href="http://hegeeks.com/go/thesis" target="_blank">Thesis theme</a> tutorial I will show you how to remove comments link that is by default below the post and move it under the headline as I have done on my blog.</p>
<p>First, you will have to remove comment link below the post by inserting the following code to your custom_functions.php file.</p>
<p><code>remove_action('thesis_hook_after_post', 'thesis_comments_link');</code></p>
<p>Second, you&#8217;ll have to add the comment link to the byline by adding this code to custom_functions.php file.</p>
<p><code>function custom_byline() {<br />
?&gt;<br />
| &lt;a href="&lt;?php comments_link(); ?&gt;" class="url fn"&gt;&lt;span class="url fn"&gt;&lt;?php comments_number('Post a comment','1 Comment','% Comments'); ?&gt;&lt;/span&gt;&lt;/a&gt;<br />
&lt;?<br />
}<br />
add_action('thesis_hook_byline_item','custom_byline');</code></p>
<p>And this is it. And remember &#8211; always make a backup before doing any changes, just in case.</p>


<p>Related posts:<ol><li><a href='http://hegeeks.com/thesis-theme/thesis-theme-tutorial-how-to-add-a-second-navigation-menu.html' rel='bookmark' title='Permanent Link: Thesis Theme Tutorial: How to Add a Second Navigation Menu'>Thesis Theme Tutorial: How to Add a Second Navigation Menu</a></li>
<li><a href='http://hegeeks.com/thesis-theme/how-to-add-custom-banner-ad-in-thesis-theme-header.html' rel='bookmark' title='Permanent Link: How to Add Custom Banner Ad in Thesis Theme Header'>How to Add Custom Banner Ad in Thesis Theme Header</a></li>
<li><a href='http://hegeeks.com/thesis-theme/how-to-add-tweetmeme-button-to-byline.html' rel='bookmark' title='Permanent Link: How to: Add Tweetmeme Button to Byline'>How to: Add Tweetmeme Button to Byline</a></li>
<li><a href='http://hegeeks.com/thesis-theme/clickable-image-in-header-in-thesis-theme.html' rel='bookmark' title='Permanent Link: Clickable Header Image in Thesis Theme'>Clickable Header Image in Thesis Theme</a></li>
</ol></p>]]></content:encoded>
			<wfw:commentRss>http://hegeeks.com/thesis-theme/thesis-theme-tutorial-move-comments-link-from-below-the-post-to-byline.html/feed</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
		<item>
		<title>Clickable Header Image in Thesis Theme</title>
		<link>http://hegeeks.com/thesis-theme/clickable-image-in-header-in-thesis-theme.html</link>
		<comments>http://hegeeks.com/thesis-theme/clickable-image-in-header-in-thesis-theme.html#comments</comments>
		<pubDate>Sun, 24 Jan 2010 00:16:31 +0000</pubDate>
		<dc:creator>Marko</dc:creator>
				<category><![CDATA[Thesis Theme]]></category>

		<guid isPermaLink="false">http://hegeeks.com/?p=917</guid>
		<description><![CDATA[This is a short tutorial to show you how to replace the usual logo text in your header with a clickable image in Thesis theme. To do this simply put the code below into your custom.css file.

.custom #header #logo a {
display:block;
width:500px;
height:100px;
background:url(URL TO YOUR IMAGE) center no-repeat;
outline:none;
text-indent:-9999px;
padding:0em;
border:0em;
margin:0em;
}

.custom #header #tagline {
text-indent:-9999px;
}

This CSS code will move the existing [...]


Related posts:<ol><li><a href='http://hegeeks.com/thesis-theme/how-to-add-custom-banner-ad-in-thesis-theme-header.html' rel='bookmark' title='Permanent Link: How to Add Custom Banner Ad in Thesis Theme Header'>How to Add Custom Banner Ad in Thesis Theme Header</a></li>
<li><a href='http://hegeeks.com/thesis-theme/thesis-theme-tutorial-how-to-add-a-second-navigation-menu.html' rel='bookmark' title='Permanent Link: Thesis Theme Tutorial: How to Add a Second Navigation Menu'>Thesis Theme Tutorial: How to Add a Second Navigation Menu</a></li>
<li><a href='http://hegeeks.com/thesis-theme/thesis-theme-tutorial-move-comments-link-from-below-the-post-to-byline.html' rel='bookmark' title='Permanent Link: Thesis Theme Tutorial: Move Comments Link from Below the Post to Byline'>Thesis Theme Tutorial: Move Comments Link from Below the Post to Byline</a></li>
<li><a href='http://hegeeks.com/thesis-theme/how-to-add-tweetmeme-button-to-byline.html' rel='bookmark' title='Permanent Link: How to: Add Tweetmeme Button to Byline'>How to: Add Tweetmeme Button to Byline</a></li>
</ol>]]></description>
			<content:encoded><![CDATA[<p></p><p>This is a short tutorial to show you how to replace the usual logo text in your header with a clickable image in <a href="http://hegeeks.com/go/thesis" target="_blank">Thesis theme</a>. To do this simply put the code below into your custom.css file.<br />
<code><br />
.custom #header #logo a {<br />
display:block;<br />
width:500px;<br />
height:100px;<br />
background:url(URL TO YOUR IMAGE) center no-repeat;<br />
outline:none;<br />
text-indent:-9999px;<br />
padding:0em;<br />
border:0em;<br />
margin:0em;<br />
}</code><br />
<code><br />
.custom #header #tagline {<br />
text-indent:-9999px;<br />
}<br />
</code><br />
This CSS code will move the existing text out of the screen and put an image in its place. Replace &#8220;URL TO YOUR IMAGE&#8221; with an actual URL where your image is saved.</p>
<p>You can see the example of how I did it on my <a href="http://twittertips.org" target="_blank">Twitter Tips blog</a>. You&#8217;ll also have to change height and width values according to your image size.</p>
<p>There may be better ways to put clickable image in the header, but this worked for me. I have tested it in Firefox 3.5 and Internet Explorer 8 and it looks OK.</p>
<p>If you have a better solution, please let us know in the comments.</p>


<p>Related posts:<ol><li><a href='http://hegeeks.com/thesis-theme/how-to-add-custom-banner-ad-in-thesis-theme-header.html' rel='bookmark' title='Permanent Link: How to Add Custom Banner Ad in Thesis Theme Header'>How to Add Custom Banner Ad in Thesis Theme Header</a></li>
<li><a href='http://hegeeks.com/thesis-theme/thesis-theme-tutorial-how-to-add-a-second-navigation-menu.html' rel='bookmark' title='Permanent Link: Thesis Theme Tutorial: How to Add a Second Navigation Menu'>Thesis Theme Tutorial: How to Add a Second Navigation Menu</a></li>
<li><a href='http://hegeeks.com/thesis-theme/thesis-theme-tutorial-move-comments-link-from-below-the-post-to-byline.html' rel='bookmark' title='Permanent Link: Thesis Theme Tutorial: Move Comments Link from Below the Post to Byline'>Thesis Theme Tutorial: Move Comments Link from Below the Post to Byline</a></li>
<li><a href='http://hegeeks.com/thesis-theme/how-to-add-tweetmeme-button-to-byline.html' rel='bookmark' title='Permanent Link: How to: Add Tweetmeme Button to Byline'>How to: Add Tweetmeme Button to Byline</a></li>
</ol></p>]]></content:encoded>
			<wfw:commentRss>http://hegeeks.com/thesis-theme/clickable-image-in-header-in-thesis-theme.html/feed</wfw:commentRss>
		<slash:comments>9</slash:comments>
		</item>
		<item>
		<title>How to Add Custom Banner Ad in Thesis Theme Header</title>
		<link>http://hegeeks.com/thesis-theme/how-to-add-custom-banner-ad-in-thesis-theme-header.html</link>
		<comments>http://hegeeks.com/thesis-theme/how-to-add-custom-banner-ad-in-thesis-theme-header.html#comments</comments>
		<pubDate>Sat, 23 Jan 2010 17:17:11 +0000</pubDate>
		<dc:creator>Marko</dc:creator>
				<category><![CDATA[Thesis Theme]]></category>
		<category><![CDATA[thesis customization]]></category>

		<guid isPermaLink="false">http://hegeeks.com/?p=900</guid>
		<description><![CDATA[I&#8217;ve been asked how did I put Adsense in the header of my Thesis Theme. I&#8217;ll tell you how, it&#8217;s pretty simple. You&#8217;ll have to insert a bit of code in custom_functions.php and custom.css files.
First, put this code in your custom_functions.php:

function header_ad() { ?&#62;
&#60;div id="header_ad"&#62;
PUT HERE YOUR ADSENSE CODE
&#60;/div&#62;
&#60;?php }
add_action('thesis_hook_header', 'header_ad');

Replace the &#8220;PUT HERE YOUR [...]


Related posts:<ol><li><a href='http://hegeeks.com/thesis-theme/clickable-image-in-header-in-thesis-theme.html' rel='bookmark' title='Permanent Link: Clickable Header Image in Thesis Theme'>Clickable Header Image in Thesis Theme</a></li>
<li><a href='http://hegeeks.com/thesis-theme/how-to-add-tweetmeme-button-to-byline.html' rel='bookmark' title='Permanent Link: How to: Add Tweetmeme Button to Byline'>How to: Add Tweetmeme Button to Byline</a></li>
<li><a href='http://hegeeks.com/thesis-theme/thesis-theme-tutorial-move-comments-link-from-below-the-post-to-byline.html' rel='bookmark' title='Permanent Link: Thesis Theme Tutorial: Move Comments Link from Below the Post to Byline'>Thesis Theme Tutorial: Move Comments Link from Below the Post to Byline</a></li>
<li><a href='http://hegeeks.com/thesis-theme/thesis-theme-tutorial-how-to-add-a-second-navigation-menu.html' rel='bookmark' title='Permanent Link: Thesis Theme Tutorial: How to Add a Second Navigation Menu'>Thesis Theme Tutorial: How to Add a Second Navigation Menu</a></li>
</ol>]]></description>
			<content:encoded><![CDATA[<p></p><p>I&#8217;ve been asked how did I put Adsense in the header of my <a href="http://hegeeks.com/go/thesis" target="_blank">Thesis Theme</a>. I&#8217;ll tell you how, it&#8217;s pretty simple. You&#8217;ll have to insert a bit of code in custom_functions.php and custom.css files.</p>
<p>First, put this code in your custom_functions.php:<br />
<code><br />
function header_ad() { ?&gt;<br />
&lt;div id="header_ad"&gt;<br />
PUT HERE YOUR ADSENSE CODE<br />
&lt;/div&gt;<br />
&lt;?php }<br />
add_action('thesis_hook_header', 'header_ad');<br />
</code><br />
Replace the &#8220;PUT HERE YOUR ADSENSE CODE&#8221; with your Google Adsense or some other banner ad code.</p>
<p>Second, insert the following code in your custom.css file:<br />
<code><br />
.custom #header_ad {<br />
float:right;<br />
position:absolute;<br />
width:468px;<br />
height:60px;<br />
top:35px;<br />
margin-left: 45.5em;<br />
}<br />
</code><br />
You&#8217;ll have to change margins to fit your blog design, but basically, this is it.</p>


<p>Related posts:<ol><li><a href='http://hegeeks.com/thesis-theme/clickable-image-in-header-in-thesis-theme.html' rel='bookmark' title='Permanent Link: Clickable Header Image in Thesis Theme'>Clickable Header Image in Thesis Theme</a></li>
<li><a href='http://hegeeks.com/thesis-theme/how-to-add-tweetmeme-button-to-byline.html' rel='bookmark' title='Permanent Link: How to: Add Tweetmeme Button to Byline'>How to: Add Tweetmeme Button to Byline</a></li>
<li><a href='http://hegeeks.com/thesis-theme/thesis-theme-tutorial-move-comments-link-from-below-the-post-to-byline.html' rel='bookmark' title='Permanent Link: Thesis Theme Tutorial: Move Comments Link from Below the Post to Byline'>Thesis Theme Tutorial: Move Comments Link from Below the Post to Byline</a></li>
<li><a href='http://hegeeks.com/thesis-theme/thesis-theme-tutorial-how-to-add-a-second-navigation-menu.html' rel='bookmark' title='Permanent Link: Thesis Theme Tutorial: How to Add a Second Navigation Menu'>Thesis Theme Tutorial: How to Add a Second Navigation Menu</a></li>
</ol></p>]]></content:encoded>
			<wfw:commentRss>http://hegeeks.com/thesis-theme/how-to-add-custom-banner-ad-in-thesis-theme-header.html/feed</wfw:commentRss>
		<slash:comments>14</slash:comments>
		</item>
		<item>
		<title>How to: Add Tweetmeme Button to Byline</title>
		<link>http://hegeeks.com/thesis-theme/how-to-add-tweetmeme-button-to-byline.html</link>
		<comments>http://hegeeks.com/thesis-theme/how-to-add-tweetmeme-button-to-byline.html#comments</comments>
		<pubDate>Sun, 03 Jan 2010 23:02:04 +0000</pubDate>
		<dc:creator>Marko</dc:creator>
				<category><![CDATA[Thesis Theme]]></category>
		<category><![CDATA[thesis customization]]></category>
		<category><![CDATA[tweetmeme]]></category>

		<guid isPermaLink="false">http://hegeeks.com/?p=647</guid>
		<description><![CDATA[This is one of the main customizations that I did on my Thesis theme. Custom text under the headline, also called byline. It&#8217;s rather simple, really. But having the ReTweet button in byline instead in the post, makes the blog post look cleaner, in my opinion. And the best part is, you dont&#8217; even have [...]


Related posts:<ol><li><a href='http://hegeeks.com/thesis-theme/thesis-theme-tutorial-move-comments-link-from-below-the-post-to-byline.html' rel='bookmark' title='Permanent Link: Thesis Theme Tutorial: Move Comments Link from Below the Post to Byline'>Thesis Theme Tutorial: Move Comments Link from Below the Post to Byline</a></li>
<li><a href='http://hegeeks.com/blogging/how-to-add-google-buzz-button-to-your-blog.html' rel='bookmark' title='Permanent Link: How to Add Google Buzz Button to Your Blog'>How to Add Google Buzz Button to Your Blog</a></li>
<li><a href='http://hegeeks.com/thesis-theme/how-to-add-custom-banner-ad-in-thesis-theme-header.html' rel='bookmark' title='Permanent Link: How to Add Custom Banner Ad in Thesis Theme Header'>How to Add Custom Banner Ad in Thesis Theme Header</a></li>
</ol>]]></description>
			<content:encoded><![CDATA[<p></p><p>This is one of the main customizations that I did on my <a href="http://hegeeks.com/blogging/thesis-theme/hegeeks-is-powered-by-thesis-theme.html" target="_self">Thesis theme</a>. Custom text under the headline, also called byline. It&#8217;s rather simple, really. But having the ReTweet button in byline instead in the post, makes the blog post look cleaner, in my opinion. And the best part is, you dont&#8217; even have to have the Tweetmeme plugin installed.</p>
<h3>Create Custom Byline with Tweetmeme Button</h3>
<p>All you need to do, is insert the code below into your custom_functions.php file.</p>
<p><code>function custom_byline() {<br />
?&gt;<br />
&lt;div style="float:right; margin-top:-17px;margin-right:-27px;"&gt;<br />
&lt;script type="text/javascript"&gt;<br />
tweetmeme_url = '&lt;?php the_permalink() ?&gt;';<br />
tweetmeme_style = 'compact';<br />
tweetmeme_source = 'markotu';<br />
tweetmeme_service = 'bit.ly';<br />
&lt;/script&gt;<br />
&lt;script type="text/javascript" src="http://tweetmeme.com/i/scripts/button.js"&gt;&lt;/script&gt; &lt;/div&gt;<br />
&lt;?<br />
}<br />
add_action('thesis_hook_byline_item','custom_byline');</code></p>
<p>You will have to adjust margins to fit your blog, just change the numbers in <code>margin-top:-17px;margin-right:-27px;</code> until it looks good.</p>
<p>Second thing you&#8217;ll want to change is <code>tweetmeme_source = 'markotu';</code>. Obviously you want to put your Twitter user name in there instead of mine.</p>
<p>And last you can change the URL shortening service to your preference in this line <code>tweetmeme_service = 'bit.ly';</code>, if you don&#8217;t like bit.ly. A list of services available and more information is <a href="http://help.tweetmeme.com/2009/08/17/url-shorteners/" target="_self">here</a>.</p>
<p>This is it. I&#8217;ll post more Thesis customization tips and tricks in the future, hope you liked this one.</p>


<p>Related posts:<ol><li><a href='http://hegeeks.com/thesis-theme/thesis-theme-tutorial-move-comments-link-from-below-the-post-to-byline.html' rel='bookmark' title='Permanent Link: Thesis Theme Tutorial: Move Comments Link from Below the Post to Byline'>Thesis Theme Tutorial: Move Comments Link from Below the Post to Byline</a></li>
<li><a href='http://hegeeks.com/blogging/how-to-add-google-buzz-button-to-your-blog.html' rel='bookmark' title='Permanent Link: How to Add Google Buzz Button to Your Blog'>How to Add Google Buzz Button to Your Blog</a></li>
<li><a href='http://hegeeks.com/thesis-theme/how-to-add-custom-banner-ad-in-thesis-theme-header.html' rel='bookmark' title='Permanent Link: How to Add Custom Banner Ad in Thesis Theme Header'>How to Add Custom Banner Ad in Thesis Theme Header</a></li>
</ol></p>]]></content:encoded>
			<wfw:commentRss>http://hegeeks.com/thesis-theme/how-to-add-tweetmeme-button-to-byline.html/feed</wfw:commentRss>
		<slash:comments>11</slash:comments>
		</item>
		<item>
		<title>HeGeeks is Powered by Thesis Theme</title>
		<link>http://hegeeks.com/thesis-theme/hegeeks-is-powered-by-thesis-theme.html</link>
		<comments>http://hegeeks.com/thesis-theme/hegeeks-is-powered-by-thesis-theme.html#comments</comments>
		<pubDate>Sat, 02 Jan 2010 23:03:51 +0000</pubDate>
		<dc:creator>Marko</dc:creator>
				<category><![CDATA[Thesis Theme]]></category>
		<category><![CDATA[review]]></category>

		<guid isPermaLink="false">http://hegeeks.com/?p=579</guid>
		<description><![CDATA[When I started blogging, I didn&#8217;t want to spend any money on themes, I even chose free hosting at first. But after a few initial months of failures, I realized that you get what you pay for. So I moved to paid web host and bought a premium Wordpress theme.
Why did I choose Thesis theme
Many [...]


Related posts:<ol><li><a href='http://hegeeks.com/thesis-theme/how-to-add-custom-banner-ad-in-thesis-theme-header.html' rel='bookmark' title='Permanent Link: How to Add Custom Banner Ad in Thesis Theme Header'>How to Add Custom Banner Ad in Thesis Theme Header</a></li>
<li><a href='http://hegeeks.com/thesis-theme/thesis-theme-tutorial-how-to-add-a-second-navigation-menu.html' rel='bookmark' title='Permanent Link: Thesis Theme Tutorial: How to Add a Second Navigation Menu'>Thesis Theme Tutorial: How to Add a Second Navigation Menu</a></li>
<li><a href='http://hegeeks.com/thesis-theme/clickable-image-in-header-in-thesis-theme.html' rel='bookmark' title='Permanent Link: Clickable Header Image in Thesis Theme'>Clickable Header Image in Thesis Theme</a></li>
<li><a href='http://hegeeks.com/thesis-theme/thesis-theme-tutorial-move-comments-link-from-below-the-post-to-byline.html' rel='bookmark' title='Permanent Link: Thesis Theme Tutorial: Move Comments Link from Below the Post to Byline'>Thesis Theme Tutorial: Move Comments Link from Below the Post to Byline</a></li>
</ol>]]></description>
			<content:encoded><![CDATA[<p></p><p>When I started blogging, I didn&#8217;t want to spend any money on themes, I even chose free hosting at first. But after a few initial months of failures, I realized that you get what you pay for. So I moved to paid web host and bought a premium Wordpress theme.</p>
<h2>Why did I choose Thesis theme</h2>
<p>Many of the very successful blogs use Thesis theme. It makes the blog look more professional and unique. Check out these example blogs that use Thesis <a href="http://www.copyblogger.com/" target="_blank">Copyblogger</a>, <a href="http://www.sugarrae.com/" target="_blank">Sugarrae</a>, <a href="http://www.chrisbrogan.com/" target="_blank">Chris Brogan</a>, <a href="http://blog.tipd.com/" target="_blank">Tip&#8217;d</a>, <a href="http://www.kristarella.com/" target="_blank">Kristarella</a> and see in how many different ways the theme can be used.</p>
<p>Thesis is a premium theme for Wordpress, which means you have to pay to use it. It seemed like a good investment, so I bought it. You can get your own copy of <a href="http://hegeeks.com/go/thesis" target="_blank">Thesis theme</a> for just $87.</p>
<h3>Professional Design<a title="Thesis theme" href="http://hegeeks.com/go/thesis" target="_blank"><img class="alignright size-full wp-image-594" title="thesis-theme" src="http://hegeeks.com/wp-content/uploads/thesis-theme.jpg" alt="Thesis theme" width="300" height="253" /></a></h3>
<p>Thesis theme is very well optimized and loads fast. It is also search engine optimized. There’s no need to use a plugin separately for SEO. And it&#8217;s clean and very easy to read out of the box.</p>
<h3>Post Writing</h3>
<p>It offers professional styling, easy headline and font customization, and extremely easy incorporation of images and ads.</p>
<h3>Customization</h3>
<p>Even if you don&#8217;t know any code, you can still customize it to a great extend by simply clicking through theme options in your Wordpress admin panel. The basic Thesis look is very nice and clean, but if you want to, you can easily customize its look to pretty much whatever you like, provided you know some code.</p>
<h3>Support</h3>
<p>When you buy Thesis, you get access to a forum with a bunch of helpful guys. And they will answer any questions related to the theme. Without that forum, I probably wouldn&#8217;t be able to customize the theme as I did on this blog.</p>
<p>All in all, my blog now looks much more authoritative, trustworthy and professional. And I can only recommend you <a href="http://hegeeks.com/go/thesis" target="_blank">Thesis theme</a>.</p>


<p>Related posts:<ol><li><a href='http://hegeeks.com/thesis-theme/how-to-add-custom-banner-ad-in-thesis-theme-header.html' rel='bookmark' title='Permanent Link: How to Add Custom Banner Ad in Thesis Theme Header'>How to Add Custom Banner Ad in Thesis Theme Header</a></li>
<li><a href='http://hegeeks.com/thesis-theme/thesis-theme-tutorial-how-to-add-a-second-navigation-menu.html' rel='bookmark' title='Permanent Link: Thesis Theme Tutorial: How to Add a Second Navigation Menu'>Thesis Theme Tutorial: How to Add a Second Navigation Menu</a></li>
<li><a href='http://hegeeks.com/thesis-theme/clickable-image-in-header-in-thesis-theme.html' rel='bookmark' title='Permanent Link: Clickable Header Image in Thesis Theme'>Clickable Header Image in Thesis Theme</a></li>
<li><a href='http://hegeeks.com/thesis-theme/thesis-theme-tutorial-move-comments-link-from-below-the-post-to-byline.html' rel='bookmark' title='Permanent Link: Thesis Theme Tutorial: Move Comments Link from Below the Post to Byline'>Thesis Theme Tutorial: Move Comments Link from Below the Post to Byline</a></li>
</ol></p>]]></content:encoded>
			<wfw:commentRss>http://hegeeks.com/thesis-theme/hegeeks-is-powered-by-thesis-theme.html/feed</wfw:commentRss>
		<slash:comments>6</slash:comments>
		</item>
	</channel>
</rss>
