<?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 Topic: How to make a Minimalist Thematic Child Theme</title>
<link>http://themeshaper.com/forums/</link>
<description>Help In Shaping WordPress Themes</description>
<language>en</language>
<pubDate>Thu, 23 May 2013 16:47:02 +0000</pubDate>

<item>
<title>helgatheviking on "How to make a Minimalist Thematic Child Theme"</title>
<link>http://themeshaper.com/forums/topic/how-to-make-a-minimalist-thematic-child-theme#post-26805</link>
<pubDate>Thu, 03 May 2012 22:23:14 +0000</pubDate>
<dc:creator>helgatheviking</dc:creator>
<guid isPermaLink="false">26805@http://themeshaper.com/forums/</guid>
<description>&#60;p&#62;i like it... it almost looks a bit like tumblr.  i'd only consider updating the thematic typography, but that's b/c i am bored with it and want to liven it up.  &#60;/p&#62;
&#60;p&#62;i'm really enjoying this:&#60;br /&#62;
&#60;a href=&#34;http://fluidbaselinegrid.com/&#34; rel=&#34;nofollow&#34;&#62;http://fluidbaselinegrid.com/&#60;/a&#62;
&#60;/p&#62;</description>
</item>
<item>
<title>robYardman on "How to make a Minimalist Thematic Child Theme"</title>
<link>http://themeshaper.com/forums/topic/how-to-make-a-minimalist-thematic-child-theme#post-26790</link>
<pubDate>Thu, 03 May 2012 14:31:03 +0000</pubDate>
<dc:creator>robYardman</dc:creator>
<guid isPermaLink="false">26790@http://themeshaper.com/forums/</guid>
<description>&#60;p&#62;Way awesome guys!!! I love it and will definitely use it.&#60;/p&#62;
&#60;p&#62;I just picked up a client that wants this same minimalist approach for her website/blog. So this is perfect timing.
&#60;/p&#62;</description>
</item>
<item>
<title>barefootford on "How to make a Minimalist Thematic Child Theme"</title>
<link>http://themeshaper.com/forums/topic/how-to-make-a-minimalist-thematic-child-theme#post-26771</link>
<pubDate>Thu, 03 May 2012 00:44:32 +0000</pubDate>
<dc:creator>barefootford</dc:creator>
<guid isPermaLink="false">26771@http://themeshaper.com/forums/</guid>
<description>&#60;p&#62;Also, thanks a bunch to HelgaTheViking for the help.
&#60;/p&#62;</description>
</item>
<item>
<title>barefootford on "How to make a Minimalist Thematic Child Theme"</title>
<link>http://themeshaper.com/forums/topic/how-to-make-a-minimalist-thematic-child-theme#post-26770</link>
<pubDate>Thu, 03 May 2012 00:42:47 +0000</pubDate>
<dc:creator>barefootford</dc:creator>
<guid isPermaLink="false">26770@http://themeshaper.com/forums/</guid>
<description>&#60;p&#62;A few months ago Kathy from the forums here (#Helgatheviking) or (https://twitter.com/#!/Kathy_Darling) helped me customize my child theme to cut down on some of the stuff we wouldn't be using.&#60;/p&#62;
&#60;p&#62;We took out categories, tags, the author, borders and the header to make a very clean, minimalist looking theme. The final product is clean and can be adjusted quickly with images/colors to look very distinct. It's served us well and I wanted to make it available to you guys incase you wanted something similar. Of course, if you do use the code we'd love a link back to &#60;a href=&#34;http://ANewBike.com&#34; rel=&#34;nofollow&#34;&#62;http://ANewBike.com&#60;/a&#62; , but it's not necessary. (We're using Thematic for a bike blog where we tell short bicycle stories.)&#60;/p&#62;
&#60;p&#62;Anyway, here it is in Style.css and functions.php:&#60;/p&#62;
&#60;p&#62;af&#60;br /&#62;
&#60;pre&#62;&#60;code&#62;--------------------------------------------

Style.css text:

/*
Theme Name: anewbike
Description: A Child Theme of thematic
Template: thematic
*/
@import url(../thematic/style.css);
#access {
    border-bottom:1px solid #ccc;
    height:5px;
    font-size:13px;
    overflow:visible;
    z-index:100;
}

#primary { border: none;}

#footer {
    border-top:1px solid #ccc;
    margin-top:5px;
}
#blog-title {
    font-family:Arial,sans-serif;
    font-size:60px;
    font-weight:medium;
    line-height:60px;
}
.skip-link {
    display:none;
}
#access {
    border-bottom:1px solid #ccc;
    height:10px;
    font-size:13px;
    overflow:visible;
    z-index:100;
}
/*** ESSENTIAL STYLES ***/
.sf-menu, .sf-menu * {
    margin:         0;
    padding:        0;
    list-style:     none;
}
.sf-menu {
    line-height:    0;
{
#branding {
    padding:20px 0 20px 0;
}

#main
.entry-title {
    font-family:Arial,sans-serif;
    font-size:34px;
    font-weight:bold;
    line-height:26px;
    padding:0 0 7px 0;
}

}
li.content-column {
    float:left;
    margin-right:15px;
    width:100%;
}

#secondary {
	font-size: 3em;
	}&#60;/code&#62;&#60;/pre&#62;
&#60;p&#62;-------------------------------------------&#60;/p&#62;
&#60;p&#62;Functions.php text:&#60;br /&#62;
&#60;pre&#62;&#60;code&#62;&#38;lt;?php
//removes everything from the #header div
function kia_empty_header(){
	remove_action(&#38;#39;thematic_header&#38;#39;,&#38;#39;thematic_brandingopen&#38;#39;,1);
	remove_action(&#38;#39;thematic_header&#38;#39;,&#38;#39;thematic_blogtitle&#38;#39;,3);
	remove_action(&#38;#39;thematic_header&#38;#39;,&#38;#39;thematic_blogdescription&#38;#39;,5);
	remove_action(&#38;#39;thematic_header&#38;#39;,&#38;#39;thematic_brandingclose&#38;#39;,7);
	remove_action(&#38;#39;thematic_header&#38;#39;,&#38;#39;thematic_access&#38;#39;,9);
}
add_action(&#38;#39;init&#38;#39;,&#38;#39;kia_empty_header&#38;#39;);
//removes author and meta-seperator from post meta
function childtheme_override_postheader_postmeta() {
	$postmeta = &#38;#39;&#38;lt;div class=&#38;quot;entry-meta&#38;quot;&#38;gt;&#38;#39;;
	$postmeta .= thematic_postmeta_entrydate();
	$postmeta .= thematic_postmeta_editlink();
	$postmeta .= &#38;quot;&#38;lt;/div&#38;gt;&#38;lt;!-- .entry-meta --&#38;gt;\n&#38;quot;;
	return $postmeta;
}
//totally removes categories from the post footer
function childtheme_override_postfooter_postcategory(){
	//sound of one hand clapping
}
//totally removes tags from the post footer
function childtheme_override_postfooter_posttags(){
	//sound of one hand clapping
}
?&#38;gt;&#60;/code&#62;&#60;/pre&#62;</description>
</item>

</channel>
</rss>
