<?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>Theme Thesis</title>
	<atom:link href="http://themethesis.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://themethesis.com</link>
	<description>Thesis Skins and Customizations</description>
	<lastBuildDate>Sat, 24 Jul 2010 14:29:40 +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>4 Ideas For Styling Link Hovers With CSS</title>
		<link>http://themethesis.com/tutorials/css-link-hovers/</link>
		<comments>http://themethesis.com/tutorials/css-link-hovers/#comments</comments>
		<pubDate>Sat, 24 Jul 2010 14:29:40 +0000</pubDate>
		<dc:creator>Matt Dunn</dc:creator>
				<category><![CDATA[Tutorials]]></category>

		<guid isPermaLink="false">http://themethesis.com/?p=2341</guid>
		<description><![CDATA[
Links are a basic part of the Internet.  They&#8217;re what keep it connected, really, so why not make these connections fun? A link hover is what happens when you hover your mouse over a link (obviously).  Usually you&#8217;ll see an underline, or an underline removed, or a different colour.  But there are [...]]]></description>
			<content:encoded><![CDATA[<div class="tw_button" style=";float:right;margin-left:10px;"><a href="http://twitter.com/share?url=http%3A%2F%2Fthemethesis.com%2Ftutorials%2Fcss-link-hovers%2F&amp;text=RT+%40themethesis+4+Ideas+For+Styling+Link+Hovers+With+CSS&amp;related=themethesis:mmatthewlyle&amp;lang=en&amp;count=vertical&amp;counturl=http://themethesis.com/tutorials/css-link-hovers/"  class="twitter-share-button">Tweet</a></div><p><a class="post_image_link" href="http://themethesis.com/tutorials/css-link-hovers/" title="Permanent link to 4 Ideas For Styling Link Hovers With CSS"><img class="post_image alignnone" src="http://themethesis.com/wp-content/uploads/2010/07/css-link-hovers.jpg" width="580" height="190" alt="CSS Link Hovers" /></a>
</p><p>Links are a basic part of the Internet.  They&#8217;re what keep it connected, really, so why not make these connections fun? A link hover is what happens when you hover your mouse over a link (obviously).  Usually you&#8217;ll see an underline, or an underline removed, or a different colour.  But there are many ways to show people that they can click, so I thought I&#8217;d show you four of my favourites.</p>
<p><span id="more-2341"></span></p>
<ol>
<li>
<h2>Transition</h2>
<p>CSS3 has introduced an awesome new property called &#8220;transition&#8221;.  Don&#8217;t be scared when I say CSS3, as this degrades perfectly fine and non-supporting browsers will just show a regular hover (I&#8217;m looking at you Internet Explorer).  You can use this transition property to make your link change colour slowly. It&#8217;s a very subtle but nice-looking effect.</p>
<p>You apply the transition like so: </p>
<pre class="brush: css">
a:hover {
   color:#000;
   -webkit-transition:color 500ms ease-in;
   -moz-transition:color 500ms ease-in;
   -o-transition:color 500ms ease-in;
   transition:color 500ms ease-in;
}
</pre>
<p><a href="#" class="transition">Check me out, I&#8217;m an example.</a>
</li>
<li>
<h2>Shadow</h2>
<p>Another CSS3 trick.  Make sure to specify this <em>along with</em> a colour, as otherwise it won&#8217;t degrade nicely at all and your older browser users will get confused.</p>
<pre class="brush: css">
a:hover {text-shadow: 1px 1px 1px rgba(0,0,0,.4);}
</pre>
<p><a href="#" class="shadow">If you hover me, good things will happen.</a>
</li>
<li>
<h2>Move</h2>
<p>This is a simple one, but one that I like and use a lot.  You can add some cool interactivity if you slightly alter a link&#8217;s position on hover.</p>
<pre class="brush: css">
a:hover {position: relative; top: 2px;}
</pre>
<p><a href="#" class="move">I just can&#8217;t stay still when you hover me!</a>
</li>
<li>
<h2>Opacity</h2>
<p>This is a trick for images, and one that I use all the time.  It&#8217;s nice to give images a hover state, as not all images are clickable, so you should be letting your readers know which ones are.</p>
<pre class="brush: css">
a.img {opacity: .5;}
</pre>
<p>You can see an example of this on the social media links at the top of this page. These links also move.
</li>
</ol>
<p>Well there they are.  There&#8217;s nothing super mind-blowing here, but it&#8217;s the little details that count and will make your website a little more special.  <strong>Are there any techniques that you like to use? Share them in the comments.</strong></p>
<p style="text-align: right;">image by <a href="http://www.flickr.com/photos/aidanmorgan/4126708151/">aidan morgan</a></p>
]]></content:encoded>
			<wfw:commentRss>http://themethesis.com/tutorials/css-link-hovers/feed/</wfw:commentRss>
		<slash:comments>8</slash:comments>
		</item>
		<item>
		<title>How to Make a jQuery-Powered Alert Box for the Thesis WordPress Theme</title>
		<link>http://themethesis.com/tutorials/jquery-alert-box/</link>
		<comments>http://themethesis.com/tutorials/jquery-alert-box/#comments</comments>
		<pubDate>Fri, 09 Jul 2010 13:20:24 +0000</pubDate>
		<dc:creator>Matt Dunn</dc:creator>
				<category><![CDATA[Tutorials]]></category>

		<guid isPermaLink="false">http://themethesis.com/?p=2325</guid>
		<description><![CDATA[
The details of this tutorial only apply to people using the  Thesis theme.  The technique, however, can apply to anyone.  So if you&#8217;re new to jQuery with any tip of website, read on.
As you may know, the wonderful Thesis theme comes with some default paragraph styles.  This includes styling for notes [...]]]></description>
			<content:encoded><![CDATA[<div class="tw_button" style=";float:right;margin-left:10px;"><a href="http://twitter.com/share?url=http%3A%2F%2Fthemethesis.com%2Ftutorials%2Fjquery-alert-box%2F&amp;text=RT+%40themethesis+How+to+Make+a+jQuery-Powered+Alert+Box+for+the+Thesis+WordPress+Theme&amp;related=themethesis:mmatthewlyle&amp;lang=en&amp;count=vertical&amp;counturl=http://themethesis.com/tutorials/jquery-alert-box/"  class="twitter-share-button">Tweet</a></div><p><a class="post_image_link" href="http://themethesis.com/tutorials/jquery-alert-box/" title="Permanent link to How to Make a jQuery-Powered Alert Box for the Thesis WordPress Theme"><img class="post_image alignnone" src="http://themethesis.com/wp-content/uploads/2010/07/jquery-alert-box.jpg" width="580" height="190" alt="jQuery Alert Box Thesis" /></a>
</p><p class="note">The details of this tutorial only apply to people using the <a href="http://themethesis.com/go/thesis"> Thesis</a> theme.  The technique, however, can apply to anyone.  So if you&#8217;re new to jQuery with any tip of website, read on.</p>
<p>As you may know, the wonderful <a href="http://themethesis.com/go">Thesis</a> theme comes with some <a href="http://themethesis.com/go/thesis-styles/">default paragraph styles</a>.  This includes styling for notes (as you can see above) and alerts (as you can see above that).  These are great, but wouldn&#8217;t it be cool if you could close the alert after you&#8217;ve been alerted? Potentially.</p>
<p>This tutorial has a bigger purpose than that, though.  It should be a great introduction to jQuery for those who have never used it before.  So let&#8217;s begin.</p>
<p><span id="more-2325"></span></p>
<ol>
<li>
<h2>Turn jQuery on</h2>
<p>On a normal site you would call jQuery from the head of your document. Thesis has support for this built in, so in your Wordpress dashboard go to Thesis &gt; Page Options &gt; Javascript and select the jQuery library.</li>
<li>
<h2>Place the following in custom_functions.php:</h2>
<pre class="brush: php">
function custom_alert_box() {
?&gt;

&lt;script type=&quot;text/javascript&quot;&gt;// &lt;![CDATA[
$(document).ready(function() {
   $(&#039;#closealert&#039;).click(function(){
     $(&#039;p.alert&#039;).hide(&#039;2000&#039;);
   });
 });

// ]]&gt;&lt;/script&gt;

add_action(&#039;wp_head&#039;, &#039;custom_alert_box&#039;);
</pre>
<p>So what does this mean? It means that <em>p.alert</em> will be closed when you click something with the ID <em>closealert</em> and the animation will be finished in 2000ms.  This allows for lots of customization, as <em>#closealert</em> could be an image or a span that says close me or a header, or whatever you think would be most useful.</li>
<li>
<h2>Add alerts with your close mechanism</h2>
<p>Now when you use the built-in alert style with <em>&lt;p class=&#8221;alert&#8221;&gt;</em>, place your #closealert button in there somewhere and you&#8217;re all set.</li>
</ol>
<p>Tip: If you don&#8217;t want to add a closing mechanism, then you can change the applicable lines in the code to this:</p>
<pre class="brush: php">
$(&#039;p.alert).click(function(){
$(&#039;p.alert&#039;).hide(&#039;2000&#039;);
</pre>
<p>Now when you click anywhere in the alert box it will close.</p>
<p><strong>Enjoy</strong></ol>
<p class="note">This post was brought to you by the <a href="http://themethesis.com/go/thesis">Thesis Wordpress theme</a>; the search-engine optimized powerhouse of a framework designed to help you get a website up and running faster and more successfully.  Want more information? Get it <a href="http://themethesis.com/go/thesis">here</a>.  Want a professional website built on the Thesis framework and customized just for you? <a href="http://themethesis.com/contact-2/">Contact me.</a></p>
]]></content:encoded>
			<wfw:commentRss>http://themethesis.com/tutorials/jquery-alert-box/feed/</wfw:commentRss>
		<slash:comments>5</slash:comments>
		</item>
		<item>
		<title>How to Use Thumbnails for Previous/Next Navigation in Wordpress</title>
		<link>http://themethesis.com/tutorials/previous-next-thumbnails-wordpress/</link>
		<comments>http://themethesis.com/tutorials/previous-next-thumbnails-wordpress/#comments</comments>
		<pubDate>Tue, 06 Jul 2010 16:11:54 +0000</pubDate>
		<dc:creator>Matt Dunn</dc:creator>
				<category><![CDATA[Tutorials]]></category>

		<guid isPermaLink="false">http://themethesis.com/?p=2310</guid>
		<description><![CDATA[
Almost every Wordpress theme you&#8217;ll come across has support for going to the previous or next post.  That&#8217;s all well and good, but in Wordpress 2.9 we got the ability to have post thumbnails.  Wouldn&#8217;t it be great to use thumbnails instead of or alongside our post titles? The answer is yes, it [...]]]></description>
			<content:encoded><![CDATA[<div class="tw_button" style=";float:right;margin-left:10px;"><a href="http://twitter.com/share?url=http%3A%2F%2Fthemethesis.com%2Ftutorials%2Fprevious-next-thumbnails-wordpress%2F&amp;text=RT+%40themethesis+How+to+Use+Thumbnails+for+Previous%2FNext+Navigation+in+Wordpress&amp;related=themethesis:mmatthewlyle&amp;lang=en&amp;count=vertical&amp;counturl=http://themethesis.com/tutorials/previous-next-thumbnails-wordpress/"  class="twitter-share-button">Tweet</a></div><p><a class="post_image_link" href="http://themethesis.com/tutorials/previous-next-thumbnails-wordpress/" title="Permanent link to How to Use Thumbnails for Previous/Next Navigation in Wordpress"><img class="post_image alignnone" src="http://themethesis.com/wp-content/uploads/2010/07/previous-next-thumbnails.jpg" width="580" height="190" alt="Previous Next Link Thumbnails" /></a>
</p><p>Almost every Wordpress theme you&#8217;ll come across has support for going to the previous or next post.  That&#8217;s all well and good, but in Wordpress 2.9 we got the ability to have post thumbnails.  Wouldn&#8217;t it be great to use thumbnails instead of or alongside our post titles? The answer is yes, it would.  So I embarked on a journey to figure out how to add this functionality to your theme, and have posted the results below.  First for regular Wordpress users, and then for Thesis users.</p>
<p><span id="more-2310"></span></p>
<ol>
<li>
<h2>Add post thumbnail support</h2>
<p>Open up functions.php and place <enm>add_theme_support(&#8216;post-thumbnails&#8217;);</em> in there, if it isn&#8217;t there already.
</li>
<li>
<h2>Add the code</h2>
<p>Open single.php and go down to where the previous_post_link and next_post_link is situated.  If your theme doesn&#8217;t have that already, then just find a proper place for the thumbnails.  Place the following code in:</p>
<pre class="brush: php">
&lt;?php
$prevPost = get_previous_post();
$prevthumbnail = get_the_post_thumbnail($prevPost-&gt;ID, array(150,150) );
previous_post_link(&#039;%link&#039;,&#039;&#039;.$prevthumbnail.&#039;&#039;, TRUE);
?&gt;

&lt;p class=&quot;prev_next2&quot;&gt;&lt;?php previous_post_link(&#039;%link&#039;,&#039;&lt;&#039;) ; ?&gt;

&lt;?php
$nextPost = get_next_post();
$nextthumbnail = get_the_post_thumbnail($nextPost-&gt;ID, array(150,150) );
next_post_link(&#039;%link&#039;,&#039;&#039;.$nextthumbnail.&#039;&#039;, TRUE);
?&gt;
&lt;p class=&quot;prev_next2&quot;&gt;&lt;?php previous_post_link(&#039;%link&#039;,&#039;&gt;&#039;) ; ?&gt;&lt;/p&gt;
</pre>
<p>And that&#8217;s it for the code.  The 150,150 is the size of the thumbnail, so feel free to experiment with that.  You can style the thumbnail by targetting .wp-post-image in your css.  The <em>&#8216;<'</em> can be changed to &#8216;%title&#8217; if you&#8217;d like to put your previous/next titles in there instead of an arrow, and this can be styled by targeting <em>p.prev_next2</em>.
</li>
<li>
<h2>Add post thumbnails to your post</h2>
<p>Go into your post screen on the dashboard, and make sure you have an image set for &#8220;Featured image&#8221; on the right hand size.  This is where the thumbnail will come from.</li>
<li>
<h2>For Thesis users:</h2>
</li>
<p>The trick works the same for <a href="http://themethesis.com/go/thesis">Thesis</a>, only instead of placing it in single.php, place it in a function like follows:</p>
<pre class="brush: php">
function prev_next(){
if (is_single()) {
?&gt;

// CODE HERE

&lt;?php } }
add_action(&#039;thesis_hook_after_content, &#039;prev_next);
remove_action(&#039;thesis_hook_after_content&#039;,&#039;thesis_prev_next_posts&#039;);
</pre>
<p>The remove_action gets rid of the previous/next navigation that is already built in.
</ol>
<h2>Sources:</h2>
<p><a href="http://wordpress.org/support/topic/368725">Wordpress support forums</a><br />
<a href="http://digwp.com/2009/08/wordpress-page-navigation/">Digging into Wordpress</a></p>
]]></content:encoded>
			<wfw:commentRss>http://themethesis.com/tutorials/previous-next-thumbnails-wordpress/feed/</wfw:commentRss>
		<slash:comments>6</slash:comments>
		</item>
		<item>
		<title>27 More Customizations for the Thesis Wordpress Theme</title>
		<link>http://themethesis.com/tutorials/27-more-customizations-for-the-thesis-theme/</link>
		<comments>http://themethesis.com/tutorials/27-more-customizations-for-the-thesis-theme/#comments</comments>
		<pubDate>Tue, 29 Jun 2010 00:05:38 +0000</pubDate>
		<dc:creator>Matt Dunn</dc:creator>
				<category><![CDATA[Roundups]]></category>
		<category><![CDATA[Tutorials]]></category>

		<guid isPermaLink="false">http://themethesis.com/?p=2296</guid>
		<description><![CDATA[
It&#8217;s been a while since 47 Customizations for the Thesis Theme was posted and there has been some great Thesis tutorials written since then.  Here I&#8217;ll share some of my favourite ones.

WordPress 3.0

Enable WordPress 3.0 Features for the Thesis Theme
WordPress 3.0 has some cool new features that Thesis doesn&#8217;t out-of-the-box support yet.  Learn [...]]]></description>
			<content:encoded><![CDATA[<div class="tw_button" style=";float:right;margin-left:10px;"><a href="http://twitter.com/share?url=http%3A%2F%2Fthemethesis.com%2Ftutorials%2F27-more-customizations-for-the-thesis-theme%2F&amp;text=RT+%40themethesis+27+More+Customizations+for+the+Thesis+Wordpress+Theme&amp;related=themethesis:mmatthewlyle&amp;lang=en&amp;count=vertical&amp;counturl=http://themethesis.com/tutorials/27-more-customizations-for-the-thesis-theme/"  class="twitter-share-button">Tweet</a></div><p><a class="post_image_link" href="http://themethesis.com/tutorials/27-more-customizations-for-the-thesis-theme/" title="Permanent link to 27 More Customizations for the Thesis Wordpress Theme"><img class="post_image alignnone" src="http://themethesis.com/wp-content/uploads/2010/04/thesis-tutorials1.jpg" width="540" height="190" alt="Thesis Theme Tutorials" /></a>
</p><p>It&#8217;s been a while since <a href="http://themethesis.com/tutorials/47-customizations-for-the-thesis-theme/">47 Customizations for the Thesis Theme</a> was posted and there has been some great <a href="http://themethesis.com/go/thesis">Thesis</a> tutorials written since then.  Here I&#8217;ll share some of my favourite ones.</p>
<p><span id="more-2296"></span></p>
<h2>WordPress 3.0</h2>
<dl>
<dt><a href="http://www.matthodder.com/enable-wordpress-3-0-features-for-the-thesis-theme/">Enable WordPress 3.0 Features for the Thesis Theme</a></dt>
<dd>WordPress 3.0 has some cool new features that Thesis doesn&#8217;t out-of-the-box support yet.  Learn how to add that support yourself.</dd>
<dt><a href="http://www.kristarella.com/2010/06/wordpress-3-0-custom-post-types-taxonomies-thesis">WordPress 3.0 custom post types, taxonomies &amp; Thesis</a></dt>
<dd>Learn about the more techy Wordpress 3.0 advancements and how to use them with your Thesis theme here.</dd>
<dt><a href="http://themethesis.com/tutorials/wordpress-3-nav-menu-thesis/">How to Add the WordPress 3 Nav Menu to Thesis</a></dt>
<dd>Learn how to quickly add the Wordpress 3.0 navigation menus to your Thesis site.</dd>
</dl>
<h2>Making it Pop</h2>
<dl>
<dt><a href="http://www.artofblog.com/thesis-body-classes/">Using Thesis Custom Body Classes To Break Down Design Barriers</a></dt>
<dd>Want to add some flair to a specific post on your Thesis-based site?  Learn how to do so with custom body classes.</dd>
<dt><a href="http://themethesis.com/guides/style-thesis-sidebar/">Styling the Thesis Sidebar</a></dt>
<dd>Using the default sidebar can be a giveaway that you&#8217;re using the Thesis theme.  Here I&#8217;ll teach you how to style yours and make it unique.</dd>
<dt><a href="http://www.doublemule.com/custom-comment-avatars-thesis-default-gravatar-images/">How to Make Custom Comment Avatars for Thesis</a></dt>
<dd>Sick of the default gravatar in your comments? Here&#8217;s an article on putting your own in.</dd>
<dt><a href="http://thesistutor.com/how-to-make-a-rotating-header-image-in-thesis/">How to Make a Rotating Header Image in Thesis</a></dt>
<dd>One header image? Boring! Learn how to make it rotate.</dd>
<dt><a href="http://www.kristarella.com/2010/05/position-your-thesis-nav/">Position Your Thesis Nav</a></dt>
<dd>Sometimes you don&#8217;t want your navigation bar where it comes by default.  Luckily it&#8217;s easy to change its position.</dd>
<dt><a href="http://gregrickaby.com/2010/04/how-to-use-jquery-lazy-load-in-thesis-1-7.html">How to Use jQuery Lazy Load in Thesis 1.7</a></dt>
<dd>Want to be like the cool kids and have your content load in as you go to it? Here you&#8217;ll learn how to do so.</dd>
</dl>
<h2>Pages &amp; Features</h2>
<dl>
<dt><a href="http://gregrickaby.com/2010/02/how-to-create-additional-page-templates.html">How to Create Additional Page Templates</a></dt>
<dd>Page templates are infinitely useful in Wordpress, but a little trickier with Thesis.  Learn how start creating them.</dd>
<dt><a href="http://mattflies.com/tech/another-tabbed-widget-for-thesis-tutorial-better/">Another Tabbed Widget for Thesis Tutorial</a></dt>
<dd>Learn how to add a cool tabbed widget to your sidebar.  (See the one on the right here for an example)</p>
</dd>
<dt><a href="http://themethesis.com/tutorials/jquery-wordpress-archives/">Create a Powerful jQuery-Powered Archives Page</a></dt>
<dd>Create a useful Archives page like the one used <a href="http://themethesis.com/archives">here</a>.</p>
</dd>
<dt><a href="http://gregrickaby.com/2010/03/how-to-create-a-sub-loop-in-thesis.html">How to Create a Subloop in Thesis</a></dt>
<dd>A tutorial on using advanced loops in Thesis.</dd>
<dt><a href="http://themethesis.com/tutorials/extra-widgets-thesis/">Add Extra Widget Areas to Thesis</a></dt>
<dd>Thesis only comes with 2 widgets by default, but sometimes we need more.  Learn how to add them with this tutorial.</dd>
</dl>
<h2>Functionality</h2>
<dl>
<dt><a href="http://thoughtsunlimited.net/blog/wordpress/hide-dates-in-old-thesis-theme-posts/">Hide Dates in Old WordPress Posts Using the Thesis Theme</a></dt>
<dd>Have some old content that&#8217;s still applicable and relevant? Don&#8217;t let people judge it by its date! Learn how to hide the dates in only old posts.</dd>
<dt><a href="http://thesisready.com/tutorial/smarter-thesis-hooks/">Smarter Thesis Hooks</a></dt>
<dd>If you&#8217;re doing any kind of real customization to your Thesis theme, you probably have functions all over the place.  Learn how to implement them efficiently.</dd>
</dl>
<h2>Slideshows</h2>
<dl>
<dt><a href="http://themethesis.com/tutorials/featured-slider-thesis/">Adding a Featured Content Slider to Thesis in 5 Quick Steps</a></dt>
<p>Learn how to add a jQuery slider to your Thesis site using s3lider.</p>
<dt><a href="http://thesistutor.com/how-to-make-a-jquery-image-slideshow-in-thesis/">How To Make a jQuery Image Slideshow in Thesis</a></dt>
<dd>Learn how to quickly add a jQuery image slideshow to your Thesis site.</dd>
<dt><a href="http://wpblogger.com/thesis-adding-content-slider-no-plugin.php">Adding a Featured Content Slider for Thesis</a></dt>
<dd>Use jQuery Cycle to add a content slider to your Thesis site.</dd>
<dt><a href="http://gregrickaby.com/2010/04/how-to-create-a-featured-content-slider.html">How to Create a Featured Content Slider</a></dt>
<dd>An in-depth tutorial to show you how to add support for a featured content slider in Thesis.</p>
</dd>
<dt><a href="http://www.emptycabinmedia.com/thesis-feature-box-slider/">Thesis Feature Box &#8211; How to Add a Slider</a></dt>
<dd>Learn how to add the d13slidehow to your Thesis feature box.</p>
</dd>
<dt><a href="http://eblogtip.com/featured/thesis-tutorials-how-to-integrate-cu3er-post-elements-to-thesis-theme-feature-box.html">How To Integrate Cu3er Post Elements To Thesis Theme Feature Box</a></dt>
<dd>Cu3er is a popular flash slideshow.  Learn how to get it working in your Thesis feature box. </dd>
</dl>
<h2>Social Media Integration</h2>
<dl>
<dt><a href="http://mattflies.com/tech/how-to-install-twitters-anywhere-on-thesis/">How to Install Twitter&#8217;s @anywhere in Thesis</a></dt>
<dd>@anywhere was launched recently with some really cool features.  Learn how to implement it on your Thesis site.</p>
</dd>
<dt><a href="http://mattflies.com/tech/inserting-facebooks-like-button-in-thesis/">Inserting Facebook&#8217;s Like Button in Thesis</a></dt>
<dd>Facebook is a huge source of traffic.  Everybody and their grandmothers is on it.  Learn how to leverage that in your site with this tutorial.</p>
</dd>
<dt><a href="http://www.artofblog.com/add-a-tweet-this-post-box-to-your-thesis-post-footer/">Add A Tweet This Post Box To Your Thesis Post Footer</a></dt>
<dd>Learn how to give visitors a custom tweet they can send out directly from your post.</dd>
<dt><a href="http://themethesis.com/tutorials/show-retweets-without-plugin-wordpress/">Show Number of Retweets in WordPress Without a Plugin</a></dt>
<dd>Use social proof to entice people to share your Wordpress posts with unlimited customization potential.</dd>
<dt><a href="http://themethesis.com/tutorials/social-networking-links/">Add Social Links to WordPress Without a Plugin</a></dt>
<dd>Learn how to make sharing easy by putting already-formatted social media links in your posts without using a plugin.</dd>
<dt><a href="http://wpblogger.com/create-floating-areas.php">Create a &#8220;Floating&#8221; Area in Thesis</a></dt>
<dd>Keep your social media links from and centre with this floating tutorial.</dd>
</dl>
<p style="text-align: right;">photo by <a href="http://www.flickr.com/photos/back_garage/3250840374/">back_garage</a></p>
]]></content:encoded>
			<wfw:commentRss>http://themethesis.com/tutorials/27-more-customizations-for-the-thesis-theme/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>How to Style Individual Wordpress Posts in Seconds</title>
		<link>http://themethesis.com/tutorials/styling-specific-wordpress-posts/</link>
		<comments>http://themethesis.com/tutorials/styling-specific-wordpress-posts/#comments</comments>
		<pubDate>Tue, 22 Jun 2010 17:13:45 +0000</pubDate>
		<dc:creator>Matt Dunn</dc:creator>
				<category><![CDATA[Tutorials]]></category>

		<guid isPermaLink="false">http://themethesis.com/?p=2276</guid>
		<description><![CDATA[
It&#8217;s time for a really quick tip.
With art directed posts being all the rage now, everybody wants to style everything.  There are plugins and custom fields and all sorts of ways to do this, but Wordpress already has two not-so-popular functions that allow you to style specific posts or pages
So here they are:

Body Class

&#60;body [...]]]></description>
			<content:encoded><![CDATA[<div class="tw_button" style=";float:right;margin-left:10px;"><a href="http://twitter.com/share?url=http%3A%2F%2Fthemethesis.com%2Ftutorials%2Fstyling-specific-wordpress-posts%2F&amp;text=RT+%40themethesis+How+to+Style+Individual+Wordpress+Posts+in+Seconds&amp;related=themethesis:mmatthewlyle&amp;lang=en&amp;count=vertical&amp;counturl=http://themethesis.com/tutorials/styling-specific-wordpress-posts/"  class="twitter-share-button">Tweet</a></div><p><a class="post_image_link" href="http://themethesis.com/tutorials/styling-specific-wordpress-posts/" title="Permanent link to How to Style Individual Wordpress Posts in Seconds"><img class="post_image alignnone" src="http://themethesis.com/wp-content/uploads/2010/06/style-individual-wordpress-posts.jpg" width="580" height="190" alt="Style Individual Wordpress Posts" /></a>
</p><p>It&#8217;s time for a really quick tip.</p>
<p>With <strong>art directed posts</strong> being all the rage now, everybody wants to style everything.  There are plugins and custom fields and all sorts of ways to do this, but Wordpress already has two not-so-popular functions that allow you to <strong>style specific posts or pages</strong></p>
<p>So here they are:</p>
<p><span id="more-2276"></span></p>
<h2>Body Class</h2>
<pre class="brush: php">
&lt;body &lt;?php body_class(); ?&gt;&gt;
</pre>
<p>This will generate something like this:</p>
<pre class="brush: php">
&lt;body class=&quot;single postid-61 logged-in&quot;&gt;
</pre>
<p>Using this you can easily change the background image of your post by targetting <em>.postid-61</em> in your CSS file.  You could change anything else by targetting whatever it is, such as <em>.postid-61</em> li to change your lists or <em>.postid-61</em> a to change your link colours.</p>
<h2>Post Class</h2>
<pre class="brush: php">
&lt;div &lt;?php post_class() ?&gt; id=&quot;post-&lt;?php the_ID(); ?&gt;&quot;&gt;
</pre>
<p>This will generate something like:</p>
<pre class="brush: php">
&lt;div class=&quot;post&quot; id=&quot;post-61&quot;&gt;
</pre>
<p>This will allow you to style the post section in the same way by targeting #post-61. Thus you can change the <em>p</em> font or the <em>h1</em> or anything else.</p>
<p><strong>There&#8217;s a lot you can do with these tags</strong>, since your content is wrapped in post and the rest of your site is wrapped in the body class. Not all themes will have this built in, so if yours doesn&#8217;t you can just replace the body and post tags with the functions above. I didn&#8217;t go over everything you can do here because it&#8217;s almost limitless, I just wanted to make sure that you were aware of the possibilities.  There are links at the bottom you can read if you want more detail on the body class.  Have fun! </p>
<p><em>Note: depending on your CSS structure you may have to place !important in your tags to override others.</em></p>
<h2>Further reading</h2>
<p><a href="http://www.nathanrice.net/blog/wordpress-2-8-and-the-body_class-function/">Wordpress 2.8 and the body class function</a><br />
<a href="http://wpengineer.com/wordpress-28-body_class-automatic_feed_links/">Wordpress 2.8 body_class, automatic_feed_links</a><br />
<a href="http://perishablepress.com/press/2009/05/26/dynamic-body-class-id-php-wordpress/">9 Ways to Set Dynamic Body IDs via PHP and Wordpress</a></p>
<p style="text-align: right">photo by <a href="http://www.flickr.com/photos/ivanomak/3812008486/">ivan makarov</a></p>
]]></content:encoded>
			<wfw:commentRss>http://themethesis.com/tutorials/styling-specific-wordpress-posts/feed/</wfw:commentRss>
		<slash:comments>5</slash:comments>
		</item>
		<item>
		<title>The Most Important Features for Your Premium Wordpress Theme</title>
		<link>http://themethesis.com/misc/premium-wordpress-theme-features/</link>
		<comments>http://themethesis.com/misc/premium-wordpress-theme-features/#comments</comments>
		<pubDate>Tue, 15 Jun 2010 23:30:29 +0000</pubDate>
		<dc:creator>Matt Dunn</dc:creator>
				<category><![CDATA[Misc]]></category>

		<guid isPermaLink="false">http://themethesis.com/?p=2242</guid>
		<description><![CDATA[
I recently did a survey both here and on the Third Tribe forums in an attempt to figure out just what it is people want from a premium Wordpress theme.  We all keep creating but nobody ever really asks the question.  
Every day somebody comes out with a theme with an options page [...]]]></description>
			<content:encoded><![CDATA[<div class="tw_button" style=";float:right;margin-left:10px;"><a href="http://twitter.com/share?url=http%3A%2F%2Fthemethesis.com%2Fmisc%2Fpremium-wordpress-theme-features%2F&amp;text=RT+%40themethesis+The+Most+Important+Features+for+Your+Premium+Wordpress+Theme&amp;related=themethesis:mmatthewlyle&amp;lang=en&amp;count=vertical&amp;counturl=http://themethesis.com/misc/premium-wordpress-theme-features/"  class="twitter-share-button">Tweet</a></div><p><a class="post_image_link" href="http://themethesis.com/misc/premium-wordpress-theme-features/" title="Permanent link to The Most Important Features for Your Premium Wordpress Theme"><img class="post_image alignnone" src="http://themethesis.com/wp-content/uploads/2010/06/premium-wordpress-theme-features.jpg" width="580" height="190" alt="Premium Wordpress Theme Features" /></a>
</p><p>I recently did a survey both <a href="http://themethesis.com/misc/premium-wordpress-theme-worth-it/">here</a> and on the <a href="http://themethesis.com/go/third-tribe/">Third Tribe</a> forums in an attempt to figure out just what it is people want from a premium Wordpress theme.  We all keep creating but nobody ever <em>really</em> asks the question.  </p>
<p>Every day somebody comes out with a theme with an options page that&#8217;s bigger than the previous.  <strong>But is that what the customers want?</strong></p>
<p><span id="more-2242"></span><br />
I got some great results both over here on the poll and also in the Third Tribe forums.  I&#8217;m going to share the poll results with you here, first in bar form and then in a pie graph:</p>
<p><img src="http://themethesis.com/wp-content/uploads/2010/06/premium-wordpress-features.jpg" alt="" title="Premium Wordpress Features" width="580" height="1032" class="aligncenter size-full wp-image-2247" /></p>
<p>As you can see, the top results were as follows:</p>
<h2>Great Design</h2>
<p> A bit of a shocker to me, honestly.  I thought more feature-oriented choices would be the highest ranked categories for premium Wordpress themes.  But get to <a href="http://emberapp.com">Ember</a> and <a href="http://dribbble.com">Dribbble</a> and everywhere else and look for inspiration, because great design is as important in a premium theme as it is in a free one or a custom site.</p>
<h2>Ease of Customization</h2>
<p> Not surprising being that the poll was posted on a <a href="http://themethesis.com/go/thesis">Thesis</a>-oriented site, but ease of customization came in second.  People paid good money for your theme, so they&#8217;re going to want to be able to use it for their purposes. </p>
<h2>Support</h2>
<p> This is my personal reason for buying premium products.  Have a support forum, a phone number, or be quick to respond to e-mails as that&#8217;s one of the important extras that premium theme purchasers are looking for from you when they buy.</p>
<p>So in closing, make sure that your site has a <strong>great design</strong>, is <strong>useful</strong> for a wide variety of people or extremely useful for a niche, and <strong>support the product</strong> like you want everyone to succeed with it.  Which you do, so that shouldn&#8217;t be too difficult. <img src='http://themethesis.com/wp-includes/images/smilies/icon_wink.gif' alt=';)' class='wp-smiley' /> </p>
<p>I&#8217;m going to leave you with a great quote from <a href="http://chrisbrogan.com">Chris Brogan</a> in his response on the <a href="http://themethesis.com/go/third-tribe/">Third Tribe</a> forums that sums up my personal opinion on premium products in general pretty well:</p>
<blockquote><p>&#8220;It has to do something really well that I can&#8217;t do myself. <a href="http://themethesis.com/go/thesis">Thesis</a> gives me better SEO plus some really simple business execution. Press75 Video Elements makes a video heavy site really easy with just a few copy/pastes. There are lots of others that DO something for me. I don&#8217;t pay for colors. I pay for function.&#8221;</p></blockquote>
<p><em> &#8211; Chris Brogan </em></p>
<p><strong>What are your thoughts on the matter?</strong></p>
<p style="text-align: right;">sort of humorous sign picture by <a href="http://www.flickr.com/photos/mattjiggins/3018279954/">matt jiggins</a></p>
]]></content:encoded>
			<wfw:commentRss>http://themethesis.com/misc/premium-wordpress-theme-features/feed/</wfw:commentRss>
		<slash:comments>5</slash:comments>
		</item>
		<item>
		<title>How to Add the Wordpress 3 Nav Menu to Thesis</title>
		<link>http://themethesis.com/tutorials/wordpress-3-nav-menu-thesis/</link>
		<comments>http://themethesis.com/tutorials/wordpress-3-nav-menu-thesis/#comments</comments>
		<pubDate>Mon, 14 Jun 2010 12:43:47 +0000</pubDate>
		<dc:creator>Matt Dunn</dc:creator>
				<category><![CDATA[Tutorials]]></category>

		<guid isPermaLink="false">http://themethesis.com/?p=2235</guid>
		<description><![CDATA[
Wordpress 3 has a sweet new menu.  Thesis already had a sweet menu.  Still, some people would like to take advantage of all that this new release of Wordpress offers and using the new navigation menu is one of them.  Luckily it&#8217;s incredibly easy to add support for the new nav menu [...]]]></description>
			<content:encoded><![CDATA[<div class="tw_button" style=";float:right;margin-left:10px;"><a href="http://twitter.com/share?url=http%3A%2F%2Fthemethesis.com%2Ftutorials%2Fwordpress-3-nav-menu-thesis%2F&amp;text=RT+%40themethesis+How+to+Add+the+Wordpress+3+Nav+Menu+to+Thesis&amp;related=themethesis:mmatthewlyle&amp;lang=en&amp;count=vertical&amp;counturl=http://themethesis.com/tutorials/wordpress-3-nav-menu-thesis/"  class="twitter-share-button">Tweet</a></div><p><a class="post_image_link" href="http://themethesis.com/tutorials/wordpress-3-nav-menu-thesis/" title="Permanent link to How to Add the Wordpress 3 Nav Menu to Thesis"><img class="post_image alignnone" src="http://themethesis.com/wp-content/uploads/2010/06/thesis-wordpress-3-nav-menu.jpg" width="580" height="190" alt="Wordpress 3 Nav Menu in Thesis" /></a>
</p><p>Wordpress 3 has a sweet new menu.  <a href="http://themethesis.com/go/thesis">Thesis</a> already had a sweet menu.  Still, some people would like to take advantage of all that this new release of Wordpress offers and using the new navigation menu is one of them.  Luckily it&#8217;s incredibly easy to add support for the new nav menu in <a href="http://themethesis.com/go/thesis">Thesis</a>.</p>
<p><span id="more-2235"></span><br />
Open custom_functions.php and add:</p>
<pre class="brush: php">
function wp3_nav() { ?&gt;

	&lt;?php
	add_theme_support( &#039;nav-menus&#039; );
	wp_nav_menu();
	?&gt;

&lt;?php }
add_action(&#039;thesis_hook_before_header&#039;, &#039;wp3_nav&#039;);
remove_action(&#039;thesis_hook_before_header&#039;, &#039;thesis_nav_menu&#039;);
</pre>
<p>That adds support for the new menu and removes the original Thesis nav.  You can style the new nav the same way that you styled the old one, as that seems works out of the box.  You can have both running at the same time if you omit the last line.  You can also change the <a href="http://themethesis.com/go/hooks/">hook</a> for our new function wp3_nav and place it anywhere you&#8217;d like.</p>
<p>I only preliminarily tested this to make sure it worked and could be styled, so you might find bugs.  Note that Wordpress 3 isn&#8217;t even in final release yet.</p>
<p>More information:<br />
<a href="http://codex.wordpress.org/Template_Tags/wp_nav_menu">wp_nav_menu</a> at the Codex.</p>
]]></content:encoded>
			<wfw:commentRss>http://themethesis.com/tutorials/wordpress-3-nav-menu-thesis/feed/</wfw:commentRss>
		<slash:comments>8</slash:comments>
		</item>
		<item>
		<title>Theme Thesis is on Facebook</title>
		<link>http://themethesis.com/site-updates/theme-thesis-facebook/</link>
		<comments>http://themethesis.com/site-updates/theme-thesis-facebook/#comments</comments>
		<pubDate>Sun, 13 Jun 2010 14:19:34 +0000</pubDate>
		<dc:creator>Matt Dunn</dc:creator>
				<category><![CDATA[Site Updates]]></category>

		<guid isPermaLink="false">http://themethesis.com/?p=2223</guid>
		<description><![CDATA[
This is just a quick update to let everyone know that Theme Thesis is now on Facebook. 
If you follow the Theme Thesis Twitter account you&#8217;ll see that it&#8217;s filled with web design resources and goodies, and that&#8217;s what the Facebook account will be like.  Facebook and Twitter are different venues, though, so the [...]]]></description>
			<content:encoded><![CDATA[<div class="tw_button" style=";float:right;margin-left:10px;"><a href="http://twitter.com/share?url=http%3A%2F%2Fthemethesis.com%2Fsite-updates%2Ftheme-thesis-facebook%2F&amp;text=RT+%40themethesis+Theme+Thesis+is+on+Facebook&amp;related=themethesis:mmatthewlyle&amp;lang=en&amp;count=vertical&amp;counturl=http://themethesis.com/site-updates/theme-thesis-facebook/"  class="twitter-share-button">Tweet</a></div><p><a class="post_image_link" href="http://themethesis.com/site-updates/theme-thesis-facebook/" title="Permanent link to Theme Thesis is on Facebook"><img class="post_image alignnone" src="http://themethesis.com/wp-content/uploads/2010/06/theme-thesis-facebook.jpg" width="580" height="190" alt="Theme Thesis on Facebook" /></a>
</p><p><strong>This is just a quick update to let everyone know that Theme Thesis is now on <a href="http://facebook.com/themethesis">Facebook.</a> </strong></p>
<p>If you follow the Theme Thesis <a href="http://twitter.com/themethesis">Twitter</a> account you&#8217;ll see that it&#8217;s filled with web design resources and goodies, and that&#8217;s what the <a href="http://facebook.com/themethesis">Facebook</a> account will be like.  Facebook and Twitter are different venues, though, so the volume will be restricted and the only resources that will make it over there will be the best of the best.</p>
<p><em> Become a &#8220;liker&#8221; to stay updated with Theme Thesis happenings, get the best web design resources, and generally have a good time. </em></p>
<p>Hopefully I&#8217;ll see you there!<br />
<a href="http://facebook.com/themethesis">facebook.com/themethesis</a></p>
]]></content:encoded>
			<wfw:commentRss>http://themethesis.com/site-updates/theme-thesis-facebook/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>5 Reasons Gravity Forms Makes Your Current Form Plugin Look Like Crap</title>
		<link>http://themethesis.com/resources/gravity-forms/</link>
		<comments>http://themethesis.com/resources/gravity-forms/#comments</comments>
		<pubDate>Fri, 11 Jun 2010 13:19:02 +0000</pubDate>
		<dc:creator>Matt Dunn</dc:creator>
				<category><![CDATA[Resources]]></category>

		<guid isPermaLink="false">http://themethesis.com/?p=2208</guid>
		<description><![CDATA[
I was recently looking for a forms plugin and was getting frustrated.  Normally my only use for forms is as a simple contact form, but this time I needed something more robust for use on a contest site.  It had to be really easy for users to submit their entries, and equally as [...]]]></description>
			<content:encoded><![CDATA[<div class="tw_button" style=";float:right;margin-left:10px;"><a href="http://twitter.com/share?url=http%3A%2F%2Fthemethesis.com%2Fresources%2Fgravity-forms%2F&amp;text=RT+%40themethesis+5+Reasons+Gravity+Forms+Makes+Your+Current+Form+Plugin+Look+Like+Crap&amp;related=themethesis:mmatthewlyle&amp;lang=en&amp;count=vertical&amp;counturl=http://themethesis.com/resources/gravity-forms/"  class="twitter-share-button">Tweet</a></div><p><a class="post_image_link" href="http://themethesis.com/resources/gravity-forms/" title="Permanent link to 5 Reasons Gravity Forms Makes Your Current Form Plugin Look Like Crap"><img class="post_image alignnone" src="http://themethesis.com/wp-content/uploads/2010/06/gravity-forms.jpg" width="580" height="190" alt="Gravity Forms Review" /></a>
</p><p>I was recently looking for a forms plugin and was getting frustrated.  Normally my only use for forms is as a simple contact form, but this time I needed something more robust for use on a contest site.  It had to be really easy for users to submit their entries, and equally as easy for the administrators to review them.  Something was going wrong with every plugin I was using, and I was about to think of other ways to make the site work.</p>
<p><strong>Then I stumbled upon <a href="http://themethesis.com/go/gravity-forms/">Gravity forms</a></strong>.</p>
<p>It was everything I was looking for, so I bought it and couldn&#8217;t be happier.  I&#8217;ve narrowed down the 5 reasons that Gravity Forms is better than the form plugin you&#8217;re using, and I&#8217;m going to go into them quickly here:</p>
<p><span id="more-2208"></span></p>
<h3>Support</h3>
<p>This is the biggest difference between free and premium anything and why I gladly pay for most things I use.  If you have a problem on your site, or are building a site for someone else, you probably need it fixed now.  Not in a few weeks when the author gets around to messaging you back.  Gravity Forms is a small operation, so there&#8217;s no phone number or anything, but you&#8217;ll get your answer fairly quickly on the support forums.</p>
<h3>Mail services</h3>
<p>There&#8217;s no need to use your mail service for any responses.  You can see <em>and</em> reply to form inquiries via the Wordpress dashboard.  Feel like sending an autoresponse to somebody after they fill your form out? You can do that too, and you can pass information like their name to the e-mail to personalize it.</p>
<h3>Form Scheduling and Limited Entries</h3>
<p>Having a contest? Let people only submit entries for the contest duration.  Better yet, if you&#8217;re only allowing a certain number of submissions you can set the form to expire after that many people have replied.  Briliant.</p>
<h3>Validation</h3>
<p>I don&#8217;t work my ass off on making a website validate just to install a plugin and have it mess all that up.  Gravity Forms validates strict.  Nerdy stuff, but important to some of us.</p>
<p><strong>And my number one favourite feature of Gravity Forms is&#8230;.</strong></p>
<h3>Post creation</h3>
<p>You can allow anybody to post to your blog using your form.  This includes letting them fill out custom fields.  This means that for a contest site, the entries can already be processed and held in Drafts for moderation, requiring only one click to put them live.</p>
<h2>Who it&#8217;s for</h2>
<p><a href="http://themethesis.com/go/gravity-forms/" title="Gravity Forms Plugin for WordPress"><img src="http://gravityforms.s3.amazonaws.com/banners/300x250.gif" alt="Gravity Forms Contact Form Plugin for WordPress" width="300" height="250" style="border:none; float: right;" /></a><br />
Anybody who needs a very easy to use and robust system for forms.  This could be somebody who gets contacted a lot, needs to allow user-generated content, or is setting the form up for a client.</p>
<h2>Who it&#8217;s not for</h2>
<p>Somebody who rarely uses forms.  If you get contacted once every two months, you might not need to spend the $40.  But then again, you might want to anyway for the ease of use and just in case you need support.</p>
<h2>Buy Gravity Forms</h2>
<p>You can <a href="http://themethesis.com/go/gravity-forms/">buy Gravity Forms</a>, get more information and find out more about its other features (such as conditional logic, field population, data passing etc) over at the <a href="http://themethesis.com/go/gravity-forms/">official website</a>.</p>
<p><strong>Have any experience with Gravity Forms or know of another form software that might be better? Let us know in the comments!</strong> </p>
]]></content:encoded>
			<wfw:commentRss>http://themethesis.com/resources/gravity-forms/feed/</wfw:commentRss>
		<slash:comments>8</slash:comments>
		</item>
		<item>
		<title>How to Easily Run Internet Explorer on Your Mac</title>
		<link>http://themethesis.com/resources/run-internet-explorer-on-mac/</link>
		<comments>http://themethesis.com/resources/run-internet-explorer-on-mac/#comments</comments>
		<pubDate>Wed, 09 Jun 2010 13:02:01 +0000</pubDate>
		<dc:creator>Matt Dunn</dc:creator>
				<category><![CDATA[Resources]]></category>

		<guid isPermaLink="false">http://themethesis.com/?p=2174</guid>
		<description><![CDATA[
Internet Explorer, as much as a lot of us despise it, has a considerable market share in the browser space.  Some people even still use the defunct Internet Explorer 6 (which sucks) but even Internet Explorer 8 has its own kinks and intricacies to worry about.
And up until recently it&#8217;s been hard to test [...]]]></description>
			<content:encoded><![CDATA[<div class="tw_button" style=";float:right;margin-left:10px;"><a href="http://twitter.com/share?url=http%3A%2F%2Fthemethesis.com%2Fresources%2Frun-internet-explorer-on-mac%2F&amp;text=RT+%40themethesis+How+to+Easily+Run+Internet+Explorer+on+Your+Mac&amp;related=themethesis:mmatthewlyle&amp;lang=en&amp;count=vertical&amp;counturl=http://themethesis.com/resources/run-internet-explorer-on-mac/"  class="twitter-share-button">Tweet</a></div><p><a class="post_image_link" href="http://themethesis.com/resources/run-internet-explorer-on-mac/" title="Permanent link to How to Easily Run Internet Explorer on Your Mac"><img class="post_image alignnone" src="http://themethesis.com/wp-content/uploads/2010/06/internet-explorer-on-mac.jpg" width="580" height="190" alt="Run Internet Explorer on Mac" /></a>
</p><p>Internet Explorer, as much as a lot of us despise it, has a considerable market share in the browser space.  Some people even still use the defunct Internet Explorer 6 (which sucks) but even Internet Explorer 8 has its own kinks and intricacies to worry about.</p>
<p>And up until recently it&#8217;s been hard to test a design against them if you&#8217;re using a Mac (which many designers are). </p>
<p><span id="more-2174"></span><br />
The three most popular options for testing are:</p>
<ul>
<li><strong>Run a Windows partition</strong>: Obviously this isn&#8217;t ideal as it requires a reboot every time you want to see how something looks on IE.  And it costs money.  And you have to support an operating system you probably don&#8217;t <em>really</em> support, hence your computer choice.
<li><strong>Use a website like Browsershots</strong>: Just as troublesome as I&#8217;ve never found one of these to work properly for me.  They always seem <em>incredibly</em> slow (as they&#8217;re taking pictures on servers and sending them to you) and buggy.  Not fun.
<li><strong>Have a Windows PC</strong>: This is even worse than option 1 for obvious reasons. </li>
</ul>
<p>However, I just recently found out about a cool little program called <a href="http://winebottler.kronenberg.org/">WineBottler</a>, and I&#8217;m going to show you how to use it to <strong>install Internet Explorer on Mac</strong>.  </p>
<ol>
<h3>
<li>Download <a href="http://winebottler.kronenberg.org/">WineBottler</a></li>
</h3>
<p><a href="http://themethesis.com/wp-content/uploads/2010/06/install-ie-mac-step-1.jpg" class="thickbox"><img src="http://themethesis.com/wp-content/uploads/2010/06/install-ie-mac-step-1-300x223.jpg" alt="Install IE Mac Step 1" class="alignright" /></a><br />
Drag both Wine and WineBottler to your Applications folder.</li>
<div style="clear:both;"></div>
<li>
<h3>Install Internet Explorer</h3>
<p><a href="http://themethesis.com/wp-content/uploads/2010/06/install-ie-mac-step-2.png" class="thickbox"><img src="http://themethesis.com/wp-content/uploads/2010/06/install-ie-mac-step-2-300x209.png" alt="Install IE Mac Step 2" class="alignright" /></a><br />
It&#8217;s located under &#8220;Install Predefined Prefixes&#8221;. Choose the version you&#8217;d like and click silent install if you&#8217;d like.</li>
<div style="clear:both;"></div>
<li>
<h3>Run it</h3>
<p><a href="http://themethesis.com/wp-content/uploads/2010/06/install-mac-ie-step-3.png" class="thickbox"><img src="http://themethesis.com/wp-content/uploads/2010/06/install-mac-ie-step-3-300x224.png" alt="Install IE Mac Step 3" class="alignright" /></a><br />
Yeah.  That&#8217;s it. </li>
<div style="clear:both;"></div>
</ol>
<p><strong>Can you believe how simple that was?</strong> I couldn&#8217;t.  The performance isn&#8217;t perfect but it&#8217;s very simple to install, and now you can run Internet Explorer on your Mac with just a click of a button.</p>
]]></content:encoded>
			<wfw:commentRss>http://themethesis.com/resources/run-internet-explorer-on-mac/feed/</wfw:commentRss>
		<slash:comments>12</slash:comments>
		</item>
	</channel>
</rss>
