You've made a great job of your theme design.
Now all you need is a PSD to Thesis pro to code it. Hire me.

Recent Articles

On a PSD to Thesis project I’m working on, the client wants a different logo on the blog pages (the blog index, single posts, archives, categories, etc.) to the one on the normal WordPress Pages.

By default, Thesis’ body class for the blog pages is simply ‘custom’, which doesn’t really help anyone. But by adding a few lines of code to your custom_functions.php file, you can style these pages any way you want. Here’s what you need:

// ---------------------------------------------
// Add a body class to the blog
// ---------------------------------------------

function custom_thesis_body_class($classes) {
	if ( is_single() || is_home() || is_category() || is_archive() ) {
		$classes[] = "blog";
	}
	return $classes;
}                                                          

add_filter("thesis_body_classes","custom_thesis_body_class");

Once you’ve uploaded your changes, take a look at the source of your blog pages and you’ll see the body class has been appended to ‘custom blog’. Now all you need to do is call the correct class in your custom.css file and Hey Presto! you’ve got a different logo on your blog pages. For example:

body.blog #logo {
...styles go here...
}

Obviously this isn’t limited to logos. You can use the blog class to style anything on the page that needs to be different/excluded from other pages.

As with most features in Thesis, it’s the little things that can make all the difference to the look of your site. Enjoy.

If you’re a Thesis user and you’ve been looking for a premium skin that’s a bit special, allow me introduce you to Osmotic.

Built on Thesis as a clean blog skin, Osmotic has a bunch of added features and loads of prettiness.

And it’s only available to 25 people. That’s right. I’ve always felt that designing a premium skin, then selling 500 copies kind of makes it, un-premium.

So I’ve capped the number of people who can buy a single user license for Osmotic to just 25. Nice!

Of course this means you’re going to have to pay a little bit extra for all this Osmotic goodness. I’ve fixed the price at $99, but to sweeten the deal and stop you all whining about my attempts to plunder your childrens’ inheritances, I’m also throwing in installation of the skin on your Thesis theme. Even nicer!

Anyway, enough banter. Head over to the Osmotic sales page (HINT: you should click the ‘Buy Now’ button while you’re there) to see what features are in store, or take a look at the Osmotic demo I’ve got running on a test server. Then, tell everyone about it because if I don’t manage to sell 25 copies of the skin I WON’T BE MAKING ANY MORE – and my children will need to take to the streets to forage for food & water!

Happy shopping!