<?xml version="1.0" encoding="UTF-8"?><!-- generator="bbPress" -->

<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
>

<channel>
<title>ThemeShaper Forums Tag: tabs</title>
<link>http://themeshaper.com/forums/</link>
<description>Help In Shaping WordPress Themes</description>
<language>en</language>
<pubDate>Wed, 22 May 2013 01:37:26 +0000</pubDate>

<item>
<title>fwunder on "How are you using Thematic?"</title>
<link>http://themeshaper.com/forums/topic/how-are-you-using-thematic/page/9#post-27113</link>
<pubDate>Thu, 24 May 2012 13:52:46 +0000</pubDate>
<dc:creator>fwunder</dc:creator>
<guid isPermaLink="false">27113@http://themeshaper.com/forums/</guid>
<description>&#60;p&#62;Ye olde eclectic antique shop. A fun Thematic diversion:&#60;/p&#62;
&#60;p&#62;&#60;a href=&#34;http://www.rollingriverantiques.com/&#34; rel=&#34;nofollow&#34;&#62;http://www.rollingriverantiques.com/&#60;/a&#62;&#60;/p&#62;
&#60;p&#62;-fred
&#60;/p&#62;</description>
</item>
<item>
<title>sfrangos on "How are you using Thematic?"</title>
<link>http://themeshaper.com/forums/topic/how-are-you-using-thematic/page/9#post-27106</link>
<pubDate>Thu, 24 May 2012 00:30:02 +0000</pubDate>
<dc:creator>sfrangos</dc:creator>
<guid isPermaLink="false">27106@http://themeshaper.com/forums/</guid>
<description>&#60;p&#62;Hi All -&#60;/p&#62;
&#60;p&#62;Love seeing your work here.  We just finished these sites based on thematic child themes:&#60;/p&#62;
&#60;p&#62;* Our new Agency site:  &#60;a href=&#34;http://Webdirexion.com&#34; rel=&#34;nofollow&#34;&#62;http://Webdirexion.com&#60;/a&#62;&#60;br /&#62;
* A site for an HVAC company:  &#60;a href=&#34;http://ainsworthac.com/&#34; rel=&#34;nofollow&#34;&#62;http://ainsworthac.com/&#60;/a&#62;&#60;/p&#62;
&#60;p&#62;We will be adding some of the sites you post here (and at the new home for Thematic as it celebrates version 1.0 release) in the Thematic showcase here:  &#60;a href=&#34;http://thematicmondo.com/directory/site-showcase/&#34; rel=&#34;nofollow&#34;&#62;http://thematicmondo.com/directory/site-showcase/&#60;/a&#62;  (Webdirexion runs this companion Thematic site as a way to thank and feature the community and their good work with Thematic).&#60;/p&#62;
&#60;p&#62;- Scott&#60;br /&#62;
&#60;a href=&#34;http://webdirexion.com&#34; rel=&#34;nofollow&#34;&#62;http://webdirexion.com&#60;/a&#62;
&#60;/p&#62;</description>
</item>
<item>
<title>siguy on "How are you using Thematic?"</title>
<link>http://themeshaper.com/forums/topic/how-are-you-using-thematic/page/9#post-27055</link>
<pubDate>Fri, 18 May 2012 21:41:48 +0000</pubDate>
<dc:creator>siguy</dc:creator>
<guid isPermaLink="false">27055@http://themeshaper.com/forums/</guid>
<description>&#60;p&#62;It's done! (and moved to &#60;a href=&#34;http://zennkai.com&#34;&#62;zennkai.com&#60;/a&#62;)&#60;/p&#62;
&#60;p&#62;Along with the images that are inserted at thematic_abovecontent I am now also using a function to add some social media feeds that show next to the image on the home page and next to the content on the blog page.&#60;/p&#62;
&#60;p&#62;I played around with using an if statement to only show the block of feeds on the home and blog page but I guess I'm not familiar enough with WPs functions and failed at that so I simply insert them on each page load with display:none in the div's style attribute and override where I want them to actually show.&#60;/p&#62;
&#60;p&#62;It was done this way mainly because I had the social feeds working on just the home page without issue but I was asked very late into the project to add them to the blog page and I just did not have the time to do it properly at that point.&#60;/p&#62;
&#60;p&#62;If anybody want's more information or would like to see my ugly code, I would love to share more info :)
&#60;/p&#62;</description>
</item>
<item>
<title>siguy on "How are you using Thematic?"</title>
<link>http://themeshaper.com/forums/topic/how-are-you-using-thematic/page/9#post-26360</link>
<pubDate>Mon, 16 Apr 2012 04:55:17 +0000</pubDate>
<dc:creator>siguy</dc:creator>
<guid isPermaLink="false">26360@http://themeshaper.com/forums/</guid>
<description>&#60;p&#62;Hey guys, I'm using thematic again for the next in line for redesigns in the Megahair Salon's stable of brands, &#60;a href=&#34;http://www.zennkai.com&#34;&#62;Zennkai Salons&#60;/a&#62;. Currently the site is hosted here: &#60;a href=&#34;http://zenndev.bjb.ca&#34;&#62;http://zenndev.bjb.ca&#60;/a&#62;&#60;/p&#62;
&#60;p&#62;Each time I do this I learn something new and things get easier and more streamlined.&#60;/p&#62;
&#60;p&#62;Notable features this time are a more thorough use of hooks to add the extra nav and social links in the header and a more advanced hook to add an image before .entry-content on some pages. Here's what it looks like if anybody is interested in doing something similar:&#60;/p&#62;
&#60;pre&#62;&#60;code&#62;// add support for an image that appears before the main content area.
// image in images folder named pg_$ID.gif will be put atop of page $ID
function precontent_image() {
	$imgloc = get_stylesheet_directory().&#38;#39;/images/pg_&#38;#39;.get_the_ID().&#38;#39;.gif&#38;#39;;
	$imgfile = get_bloginfo(&#38;#39;stylesheet_directory&#38;#39;).&#38;#39;/images/pg_&#38;#39;.get_the_ID().&#38;#39;.gif&#38;#39;;
	if (file_exists($imgloc)) { ?&#38;gt;
		&#38;lt;div id=&#38;quot;precontent-image&#38;quot;&#38;gt;&#38;lt;img src=&#38;quot;&#38;lt;?php echo $imgfile ?&#38;gt;&#38;quot;&#38;gt;&#38;lt;/div&#38;gt;
	&#38;lt;?php }
}
add_action(&#38;#39;thematic_abovecontent&#38;#39;, &#38;#39;precontent_image&#38;#39;);&#60;/code&#62;&#60;/pre&#62;</description>
</item>
<item>
<title>Jagst3r15 on "How are you using Thematic?"</title>
<link>http://themeshaper.com/forums/topic/how-are-you-using-thematic/page/9#post-26153</link>
<pubDate>Wed, 04 Apr 2012 04:31:02 +0000</pubDate>
<dc:creator>Jagst3r15</dc:creator>
<guid isPermaLink="false">26153@http://themeshaper.com/forums/</guid>
<description>&#60;p&#62;Thanks. I updated it and the Theme Options are now fully functional. Will be releasing a new theme soon too.
&#60;/p&#62;</description>
</item>
<item>
<title>robYardman on "How are you using Thematic?"</title>
<link>http://themeshaper.com/forums/topic/how-are-you-using-thematic/page/9#post-26147</link>
<pubDate>Tue, 03 Apr 2012 22:26:32 +0000</pubDate>
<dc:creator>robYardman</dc:creator>
<guid isPermaLink="false">26147@http://themeshaper.com/forums/</guid>
<description>&#60;p&#62;Hey nice work Jagst.
&#60;/p&#62;</description>
</item>
<item>
<title>Jagst3r15 on "How are you using Thematic?"</title>
<link>http://themeshaper.com/forums/topic/how-are-you-using-thematic/page/9#post-26013</link>
<pubDate>Mon, 19 Mar 2012 18:46:48 +0000</pubDate>
<dc:creator>Jagst3r15</dc:creator>
<guid isPermaLink="false">26013@http://themeshaper.com/forums/</guid>
<description>&#60;p&#62;New free child theme available here: &#60;a href=&#34;http://seamlessthemes.com/2012/03/19/standard-is-here-download-it-now/&#34; rel=&#34;nofollow&#34;&#62;http://seamlessthemes.com/2012/03/19/standard-is-here-download-it-now/&#60;/a&#62; . &#60;/p&#62;
&#60;p&#62;Features:&#60;/p&#62;
&#60;p&#62;A simple, yet elegant design&#60;br /&#62;
Theme options to change various css elements, including three different background patterns to choose from&#60;br /&#62;
A better and cleaner default gallery&#60;br /&#62;
HTML 5 support (note: still a work in progress)&#60;br /&#62;
Pre-customized Twitter widget and Contact Form 7&#60;br /&#62;
Yoast Breadcrumb support (must have plugin installed!)&#60;br /&#62;
GPL License – free to use and abuse&#60;/p&#62;
&#60;p&#62;Note: Theme Options is still out of date and under construction. Removed some features that may be a security risk so it is safe to use now (pretty much only allows css changes).
&#60;/p&#62;</description>
</item>
<item>
<title>hira2 on "How are you using Thematic?"</title>
<link>http://themeshaper.com/forums/topic/how-are-you-using-thematic/page/9#post-25938</link>
<pubDate>Thu, 15 Mar 2012 18:38:47 +0000</pubDate>
<dc:creator>hira2</dc:creator>
<guid isPermaLink="false">25938@http://themeshaper.com/forums/</guid>
<description>&#60;p&#62;Not using it yet, but hope to in the future. In the meantime just checking out how bbPress looks.
&#60;/p&#62;</description>
</item>
<item>
<title>xxxevilgrinxxx on "How are you using Thematic?"</title>
<link>http://themeshaper.com/forums/topic/how-are-you-using-thematic/page/9#post-25935</link>
<pubDate>Thu, 15 Mar 2012 13:46:15 +0000</pubDate>
<dc:creator>xxxevilgrinxxx</dc:creator>
<guid isPermaLink="false">25935@http://themeshaper.com/forums/</guid>
<description>&#60;p&#62;I've been using Thematic for a while (a child theme of Power Blog). When the 2011 theme (Duster sorta) came out, I switched for a bit. Sure it's pretty, but there's nothing quite like the nice clean look of thematic - that and not having a heart attack every time I check for errors!&#60;/p&#62;
&#60;p&#62;So it's back to my old love for me :)
&#60;/p&#62;</description>
</item>
<item>
<title>Jagst3r15 on "How are you using Thematic?"</title>
<link>http://themeshaper.com/forums/topic/how-are-you-using-thematic/page/9#post-25883</link>
<pubDate>Tue, 13 Mar 2012 02:23:41 +0000</pubDate>
<dc:creator>Jagst3r15</dc:creator>
<guid isPermaLink="false">25883@http://themeshaper.com/forums/</guid>
<description>&#60;p&#62;I'll be releasing some brand new free and premium Thematic Child themes. Check out &#60;a href=&#34;http://www.seamlessthemes.com&#34; rel=&#34;nofollow&#34;&#62;http://www.seamlessthemes.com&#60;/a&#62; (site is still under construction, but just gonna unveil it now).
&#60;/p&#62;</description>
</item>
<item>
<title>robYardman on "How are you using Thematic?"</title>
<link>http://themeshaper.com/forums/topic/how-are-you-using-thematic/page/9#post-25538</link>
<pubDate>Wed, 22 Feb 2012 08:39:47 +0000</pubDate>
<dc:creator>robYardman</dc:creator>
<guid isPermaLink="false">25538@http://themeshaper.com/forums/</guid>
<description>&#60;p&#62;Hi wlanni, I like them.&#60;/p&#62;
&#60;p&#62;I really appreciate your effort in breaking the standard thematic mold. Typically you can point out residual design elements from thematic based themes. I catch myself in that a lot. And it takes a lot of work to break those elements.&#60;/p&#62;
&#60;p&#62;It's the same with a lot of framework themes. You can typically tell the framework a website is based on. Thesis is another that is very typical in that.
&#60;/p&#62;</description>
</item>
<item>
<title>wlanni on "How are you using Thematic?"</title>
<link>http://themeshaper.com/forums/topic/how-are-you-using-thematic/page/9#post-25465</link>
<pubDate>Sun, 19 Feb 2012 00:53:04 +0000</pubDate>
<dc:creator>wlanni</dc:creator>
<guid isPermaLink="false">25465@http://themeshaper.com/forums/</guid>
<description>&#60;p&#62;Recently developed two sites for a massive arts initiative in Los Angeles for the J. Paul Getty Trust (The Getty Museum) in Los Angeles. HEAVY customization, especially in creating custom post types, and organizing a massive cross database of items using Thematic on WordPress:&#60;/p&#62;
&#60;p&#62;&#60;a href=&#34;http://www.getty.edu/pacificstandardtime&#34; rel=&#34;nofollow&#34;&#62;http://www.getty.edu/pacificstandardtime&#60;/a&#62;&#60;br /&#62;
&#60;a href=&#34;http://www.pacificstandardtimefestival.org&#34; rel=&#34;nofollow&#34;&#62;http://www.pacificstandardtimefestival.org&#60;/a&#62;
&#60;/p&#62;</description>
</item>
<item>
<title>robYardman on "How are you using Thematic?"</title>
<link>http://themeshaper.com/forums/topic/how-are-you-using-thematic/page/8#post-25221</link>
<pubDate>Tue, 07 Feb 2012 23:44:10 +0000</pubDate>
<dc:creator>robYardman</dc:creator>
<guid isPermaLink="false">25221@http://themeshaper.com/forums/</guid>
<description>&#60;p&#62;Makes perfect sense. I was just curious the reasoning of using it.
&#60;/p&#62;</description>
</item>
<item>
<title>fwunder on "How are you using Thematic?"</title>
<link>http://themeshaper.com/forums/topic/how-are-you-using-thematic/page/8#post-25220</link>
<pubDate>Tue, 07 Feb 2012 22:32:29 +0000</pubDate>
<dc:creator>fwunder</dc:creator>
<guid isPermaLink="false">25220@http://themeshaper.com/forums/</guid>
<description>&#60;p&#62;@robYardman&#60;/p&#62;
&#60;p&#62;Compass/SASS is not a replacement for Thematic's excellent native style structures. It's not CSS - It's a tool for helping to create CSS - A CSS framework. The variables, math functions, mixens, etc. speed the process and (for me) just makes sense. I was struggling with an efficient way to create something like this:  &#60;a href=&#34;http://grafiks101.com/dev/just-for-fun/&#34; rel=&#34;nofollow&#34;&#62;http://grafiks101.com/dev/just-for-fun/&#60;/a&#62;  for a project I was working on. The supplied 3c-fixed.css may have been a better way to go, but I was already a little familiar with the method I used and Compass/SASS (and Thematic)  made it relatively easy to develop.&#60;/p&#62;
&#60;p&#62;I hope that makes sense.
&#60;/p&#62;</description>
</item>
<item>
<title>robYardman on "How are you using Thematic?"</title>
<link>http://themeshaper.com/forums/topic/how-are-you-using-thematic/page/8#post-25217</link>
<pubDate>Tue, 07 Feb 2012 19:31:07 +0000</pubDate>
<dc:creator>robYardman</dc:creator>
<guid isPermaLink="false">25217@http://themeshaper.com/forums/</guid>
<description>&#60;p&#62;@fwunder&#60;/p&#62;
&#60;p&#62;What does Compass offer over Thematic's native column structuring?
&#60;/p&#62;</description>
</item>
<item>
<title>fwunder on "How are you using Thematic?"</title>
<link>http://themeshaper.com/forums/topic/how-are-you-using-thematic/page/8#post-25181</link>
<pubDate>Sat, 04 Feb 2012 15:38:15 +0000</pubDate>
<dc:creator>fwunder</dc:creator>
<guid isPermaLink="false">25181@http://themeshaper.com/forums/</guid>
<description>&#60;p&#62;For me....Thematic and this community have proven to be invaluable sources. I've learned more than I thought I didn't know!&#60;/p&#62;
&#60;p&#62;A little sandbox project I decided to tackle a couple of days ago would have been a real struggle for me a month or two ago.&#60;/p&#62;
&#60;p&#62;This may (or may not) help others.  It might help me too if you tell me I'm crazy and did it all wrong! ;) Compass, SASS and Thematic. I'm a believer!&#60;/p&#62;
&#60;p&#62;&#60;a href=&#34;http://grafiks101.com/dev/&#34; rel=&#34;nofollow&#34;&#62;http://grafiks101.com/dev/&#60;/a&#62;
&#60;/p&#62;</description>
</item>
<item>
<title>memzoomvn on "How are you using Thematic?"</title>
<link>http://themeshaper.com/forums/topic/how-are-you-using-thematic/page/8#post-25176</link>
<pubDate>Sat, 04 Feb 2012 03:19:50 +0000</pubDate>
<dc:creator>memzoomvn</dc:creator>
<guid isPermaLink="false">25176@http://themeshaper.com/forums/</guid>
<description>&#60;p&#62;I think the problem rests with the asides styling. I seem to be able to highlight everything properly, but I'll take a look at it in a bit to see if I can fix anything.like &#60;a href=&#34;http://langtham.com.vn&#34; rel=&#34;nofollow&#34;&#62;http://langtham.com.vn&#60;/a&#62;
&#60;/p&#62;</description>
</item>
<item>
<title>robYardman on "How are you using Thematic?"</title>
<link>http://themeshaper.com/forums/topic/how-are-you-using-thematic/page/8#post-25132</link>
<pubDate>Tue, 31 Jan 2012 14:28:49 +0000</pubDate>
<dc:creator>robYardman</dc:creator>
<guid isPermaLink="false">25132@http://themeshaper.com/forums/</guid>
<description>&#60;p&#62;Another great website made possible by Thematic:&#60;/p&#62;
&#60;p&#62;&#60;a href=&#34;http://www.harrymontoyaforcongress.com/&#34; rel=&#34;nofollow&#34;&#62;http://www.harrymontoyaforcongress.com/&#60;/a&#62;
&#60;/p&#62;</description>
</item>
<item>
<title>Dominor Novus on "How are you using Thematic?"</title>
<link>http://themeshaper.com/forums/topic/how-are-you-using-thematic/page/8#post-25065</link>
<pubDate>Sat, 28 Jan 2012 20:56:56 +0000</pubDate>
<dc:creator>Dominor Novus</dc:creator>
<guid isPermaLink="false">25065@http://themeshaper.com/forums/</guid>
<description>&#60;p&#62;@jmastrom: I've gone through a similar process of finding the Holy Grail of all themes. My search ended when I found the Thematic framework.&#60;/p&#62;
&#60;p&#62;Just make sure you're using a child theme and NEVER editing the core WordPress or Thematic files. This rule of thumb is for &#60;em&#62;your&#60;/em&#62; benefit. &#60;/p&#62;
&#60;p&#62;From what I can see, you're using Thematic as your actual theme. As a result, every time you upgrade Thematic, all your modified code will be overwritten. &#60;/p&#62;
&#60;p&#62;See here: &#60;a href=&#34;http://www.catswhocode.com/blog/wordpress-how-to-easily-create-a-thematic-child-theme&#34; rel=&#34;nofollow&#34;&#62;http://www.catswhocode.com/blog/wordpress-how-to-easily-create-a-thematic-child-theme&#60;/a&#62;&#60;/p&#62;
&#60;p&#62;Post back once you've made progress with your design.
&#60;/p&#62;</description>
</item>
<item>
<title>jmastrom on "How are you using Thematic?"</title>
<link>http://themeshaper.com/forums/topic/how-are-you-using-thematic/page/8#post-25011</link>
<pubDate>Mon, 23 Jan 2012 21:50:31 +0000</pubDate>
<dc:creator>jmastrom</dc:creator>
<guid isPermaLink="false">25011@http://themeshaper.com/forums/</guid>
<description>&#60;p&#62;Howdy!&#60;/p&#62;
&#60;p&#62;I am making my first serious foray into Wordpress.  I think Wordpress seriosly rocks.&#60;/p&#62;
&#60;p&#62;Anyway, I started a site &#60;a href=&#34;http://www.wptutorialseo.com,&#34; rel=&#34;nofollow&#34;&#62;http://www.wptutorialseo.com,&#60;/a&#62; and planned on using the site to blog about Wordpress mods and plugins, as well as SEO.&#60;/p&#62;
&#60;p&#62;For the last few days I have been suffering theme paralysis/overload.  I have seen so many themes, and frameworks, that my eyes glaxed over, so I had to stop for some gin.  I have been drinking too much gin.&#60;/p&#62;
&#60;p&#62;I recalled that one of my wrox books (I am not buying anymore of them, but that is another story) mentioned some frameworks.  After trying Sandbox (way too basic), and a couple of others, I decided to try thematic.  So far so good.&#60;/p&#62;
&#60;p&#62;So... after a long winded psedo-explanation here is what I hope to do with thematic:&#60;br /&#62;
Mod it like a wild horse.  Of course, I am a noob, and a bit of a hack.. but what the heck.  I can do PHP/MySQL, and it looks like the community here is &#34;goldilocks&#34; )not to big, not too small.  So hopefully I can help you all out while I partake in your knowledge and experience.&#60;/p&#62;
&#60;p&#62;Peace&#60;br /&#62;
Joe
&#60;/p&#62;</description>
</item>
<item>
<title>Dominor Novus on "How are you using Thematic?"</title>
<link>http://themeshaper.com/forums/topic/how-are-you-using-thematic/page/8#post-24951</link>
<pubDate>Wed, 18 Jan 2012 10:19:42 +0000</pubDate>
<dc:creator>Dominor Novus</dc:creator>
<guid isPermaLink="false">24951@http://themeshaper.com/forums/</guid>
<description>&#60;p&#62;I've recently finished this website for an entertainment company:&#60;/p&#62;
&#60;p&#62;&#60;a href=&#34;http://www.thebutterflycompany.ie/&#34; rel=&#34;nofollow&#34;&#62;http://www.thebutterflycompany.ie/&#60;/a&#62;&#60;/p&#62;
&#60;p&#62;Refresh the home page if you want to play the flash animation through.&#60;/p&#62;
&#60;p&#62;Thematic is a fantastic framework that you can pretty much let do its thing bar a little color scheming, font styling and graphics.
&#60;/p&#62;</description>
</item>
<item>
<title>robYardman on "How are you using Thematic?"</title>
<link>http://themeshaper.com/forums/topic/how-are-you-using-thematic/page/8#post-24904</link>
<pubDate>Sun, 15 Jan 2012 02:36:01 +0000</pubDate>
<dc:creator>robYardman</dc:creator>
<guid isPermaLink="false">24904@http://themeshaper.com/forums/</guid>
<description>&#60;p&#62;Just finishing up a customers website.&#60;/p&#62;
&#60;p&#62;&#60;a href=&#34;http://www.petersonoutdoors.biz/&#34; rel=&#34;nofollow&#34;&#62;http://www.petersonoutdoors.biz/&#60;/a&#62;&#60;/p&#62;
&#60;p&#62;This was built off the Power Blog theme as a start. Using the Shopp plugin for the store front.
&#60;/p&#62;</description>
</item>
<item>
<title>siguy on "How are you using Thematic?"</title>
<link>http://themeshaper.com/forums/topic/how-are-you-using-thematic/page/8#post-24797</link>
<pubDate>Tue, 10 Jan 2012 22:35:35 +0000</pubDate>
<dc:creator>siguy</dc:creator>
<guid isPermaLink="false">24797@http://themeshaper.com/forums/</guid>
<description>&#60;p&#62;It's almost done!&#60;/p&#62;
&#60;p&#62;&#60;a href=&#34;http://new.eccotique.com&#34; rel=&#34;nofollow&#34;&#62;http://new.eccotique.com&#60;/a&#62; (once it's perfected it will be moved to &#60;a href=&#34;http://eccotique.com&#34; rel=&#34;nofollow&#34;&#62;http://eccotique.com&#60;/a&#62;)&#60;/p&#62;
&#60;p&#62;I'm using the Map Categories to Pages plugin to put posts from the Hair, Beauty and What's Happening categories on their respective pages and some custom functions to add the featured image to the page/post title, also, google web fonts.&#60;/p&#62;
&#60;p&#62;Let me know what you think!
&#60;/p&#62;</description>
</item>
<item>
<title>fwunder on "How are you using Thematic?"</title>
<link>http://themeshaper.com/forums/topic/how-are-you-using-thematic/page/8#post-24716</link>
<pubDate>Sat, 07 Jan 2012 17:01:41 +0000</pubDate>
<dc:creator>fwunder</dc:creator>
<guid isPermaLink="false">24716@http://themeshaper.com/forums/</guid>
<description>&#60;p&#62;Wow! You folks are really good!&#60;/p&#62;
&#60;p&#62;Just getting started here, but having lots of fun. Here's a work-in-progress as I learn more and more about the power of Thematic.&#60;/p&#62;
&#60;p&#62;&#60;a href=&#34;http://timwunderlich.com/&#34; rel=&#34;nofollow&#34;&#62;http://timwunderlich.com/&#60;/a&#62;&#60;/p&#62;
&#60;p&#62;Thanks!&#60;/p&#62;
&#60;p&#62;Oh, my nephew really is a smart guy if you're hiring! ;)
&#60;/p&#62;</description>
</item>
<item>
<title>sfrangos on "How are you using Thematic?"</title>
<link>http://themeshaper.com/forums/topic/how-are-you-using-thematic/page/8#post-24531</link>
<pubDate>Sat, 31 Dec 2011 20:20:43 +0000</pubDate>
<dc:creator>sfrangos</dc:creator>
<guid isPermaLink="false">24531@http://themeshaper.com/forums/</guid>
<description>&#60;p&#62;Hi All -&#60;/p&#62;
&#60;p&#62;We just completed developing three corporate sister sites, all on one multi-site installation using Thematic child themes.  WebFadds did development -- Mark Mahorsky, design.&#60;/p&#62;
&#60;ul&#62;
&#60;li&#62;&#60;a href=&#34;http://associaliving.com/&#34; rel=&#34;nofollow&#34;&#62;http://associaliving.com/&#60;/a&#62;&#60;/li&#62;
&#60;li&#62;&#60;a href=&#34;http://associationtimes.associaliving.com/&#34; rel=&#34;nofollow&#34;&#62;http://associationtimes.associaliving.com/&#60;/a&#62;&#60;/li&#62;
&#60;li&#62;&#60;a href=&#34;http://blog.associaliving.com/&#34; rel=&#34;nofollow&#34;&#62;http://blog.associaliving.com/&#60;/a&#62;&#60;/li&#62;
&#60;/ul&#62;
&#60;p&#62;Cheers -- enjoying all the designs here.  NOTE:  We are also posting some at:  &#60;a href=&#34;http://thematicmondo.com/directory/site-showcase/&#34; rel=&#34;nofollow&#34;&#62;http://thematicmondo.com/directory/site-showcase/&#60;/a&#62;&#60;/p&#62;
&#60;p&#62;- Scott
&#60;/p&#62;</description>
</item>
<item>
<title>Nicholas on "How are you using Thematic?"</title>
<link>http://themeshaper.com/forums/topic/how-are-you-using-thematic/page/8#post-23611</link>
<pubDate>Wed, 26 Oct 2011 04:54:23 +0000</pubDate>
<dc:creator>Nicholas</dc:creator>
<guid isPermaLink="false">23611@http://themeshaper.com/forums/</guid>
<description>&#60;p&#62;great site danny.
&#60;/p&#62;</description>
</item>
<item>
<title>Marfalkov on "How are you using Thematic?"</title>
<link>http://themeshaper.com/forums/topic/how-are-you-using-thematic/page/8#post-21424</link>
<pubDate>Mon, 23 May 2011 06:54:20 +0000</pubDate>
<dc:creator>Marfalkov</dc:creator>
<guid isPermaLink="false">21424@http://themeshaper.com/forums/</guid>
<description>&#60;p&#62;Hello Guys,&#60;/p&#62;
&#60;p&#62;i love thematic more and more :)&#60;/p&#62;
&#60;p&#62;&#60;a href=&#34;http://presszo53.hu/en/&#34; rel=&#34;nofollow&#34;&#62;http://presszo53.hu/en/&#60;/a&#62;
&#60;/p&#62;</description>
</item>
<item>
<title>dannydamnboy on "How are you using Thematic?"</title>
<link>http://themeshaper.com/forums/topic/how-are-you-using-thematic/page/8#post-21083</link>
<pubDate>Fri, 06 May 2011 10:20:24 +0000</pubDate>
<dc:creator>dannydamnboy</dc:creator>
<guid isPermaLink="false">21083@http://themeshaper.com/forums/</guid>
<description>&#60;p&#62;Hi folks, let's give a look at &#60;a href=&#34;http://www.dissonanze.it&#34;&#62;Dissonanze.it&#60;/a&#62;&#60;br /&#62;
Please remeber: this is a BETA (maybe, on IE, you can experience issues...). Check it out!
&#60;/p&#62;</description>
</item>
<item>
<title>oims4 on "How are you using Thematic?"</title>
<link>http://themeshaper.com/forums/topic/how-are-you-using-thematic/page/8#post-20973</link>
<pubDate>Sun, 01 May 2011 15:59:34 +0000</pubDate>
<dc:creator>oims4</dc:creator>
<guid isPermaLink="false">20973@http://themeshaper.com/forums/</guid>
<description>&#60;p&#62;Hey All, &#60;/p&#62;
&#60;p&#62;For the last couple of years I've been working on a interactive, online/offline, public art project called ArtCard. Thematic has been my partner from the very beginning. I love you Thematic! &#60;/p&#62;
&#60;p&#62;Check it: &#60;a href=&#34;http://www.la-artist.com/&#34; rel=&#34;nofollow&#34;&#62;http://www.la-artist.com/&#60;/a&#62;&#60;/p&#62;
&#60;p&#62;-oims4
&#60;/p&#62;</description>
</item>
<item>
<title>Marfalkov on "How are you using Thematic?"</title>
<link>http://themeshaper.com/forums/topic/how-are-you-using-thematic/page/8#post-20732</link>
<pubDate>Wed, 20 Apr 2011 14:06:35 +0000</pubDate>
<dc:creator>Marfalkov</dc:creator>
<guid isPermaLink="false">20732@http://themeshaper.com/forums/</guid>
<description>&#60;p&#62;Hello Guys,&#60;/p&#62;
&#60;p&#62;Recently i created a nice little page with thematic for my musician friend:&#60;/p&#62;
&#60;p&#62;&#60;a href=&#34;http://gregbal.hu/en/&#34; rel=&#34;nofollow&#34;&#62;http://gregbal.hu/en/&#60;/a&#62;&#60;/p&#62;
&#60;p&#62;C&#38;#38;C are very welcome! :)
&#60;/p&#62;</description>
</item>

</channel>
</rss>
