<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	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/"
		>
<channel>
	<title>Comments for Programming Thematic 4 You</title>
	<atom:link href="http://programming.thematic4you.com/comments/feed/" rel="self" type="application/rss+xml" />
	<link>http://programming.thematic4you.com</link>
	<description>Code Snippets and more ...</description>
	<lastBuildDate>Wed, 21 Sep 2011 08:20:43 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	
	<item>
		<title>Comment on How to remove the sidebar from a certain page? by Bas</title>
		<link>http://programming.thematic4you.com/2010/01/how-to-remove-the-sidebar-from-a-certain-page/comment-page-1/#comment-125</link>
		<dc:creator>Bas</dc:creator>
		<pubDate>Wed, 21 Sep 2011 08:20:43 +0000</pubDate>
		<guid isPermaLink="false">http://programming.thematic4you.com/?p=20#comment-125</guid>
		<description>I&#039;ve got the same issue as Shipra: how can I just remove one sidebar (secondary aside) from a certain page?</description>
		<content:encoded><![CDATA[<p>I&#8217;ve got the same issue as Shipra: how can I just remove one sidebar (secondary aside) from a certain page?</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on How to remove the sidebar from a certain page? by Allen</title>
		<link>http://programming.thematic4you.com/2010/01/how-to-remove-the-sidebar-from-a-certain-page/comment-page-1/#comment-119</link>
		<dc:creator>Allen</dc:creator>
		<pubDate>Fri, 19 Aug 2011 06:45:36 +0000</pubDate>
		<guid isPermaLink="false">http://programming.thematic4you.com/?p=20#comment-119</guid>
		<description>I&#039;m having the same trouble a plenty of other people... I can get rid of the side bar BUT can&#039;t make use of that space. The page I&#039;m working on is called Sandbox so I edited the CSS to read: 

body.sandbox #container {
	width: 960px;
}
 
body.sandbox #content {
	width: 940px;
}

It&#039;s still not working though. check it out: www.allenjcochran.com/sandbox-2/

Any words of wisdom would be hugely appreciated!</description>
		<content:encoded><![CDATA[<p>I&#8217;m having the same trouble a plenty of other people&#8230; I can get rid of the side bar BUT can&#8217;t make use of that space. The page I&#8217;m working on is called Sandbox so I edited the CSS to read: </p>
<p>body.sandbox #container {<br />
	width: 960px;<br />
}</p>
<p>body.sandbox #content {<br />
	width: 940px;<br />
}</p>
<p>It&#8217;s still not working though. check it out: <a href="http://www.allenjcochran.com/sandbox-2/" rel="nofollow">http://www.allenjcochran.com/sandbox-2/</a></p>
<p>Any words of wisdom would be hugely appreciated!</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on How to use a different layout for a certain page? by nicobr22</title>
		<link>http://programming.thematic4you.com/2010/01/how-to-use-a-different-layout-for-a-certain-page/comment-page-1/#comment-109</link>
		<dc:creator>nicobr22</dc:creator>
		<pubDate>Fri, 24 Jun 2011 14:32:32 +0000</pubDate>
		<guid isPermaLink="false">http://programming.thematic4you.com/?p=6#comment-109</guid>
		<description>Hi,

Thanks, I was looking for this.

Also, I found another way to do this. With this you don&#039;t need to create two .css files, and don&#039;t need the @import code on the .css file neither. Just paste the following code in the functions.php file:

&lt;code&gt;
function childtheme_create_stylesheet() {
    $templatedir = get_bloginfo(&#039;template_directory&#039;);
    $stylesheetdir = get_bloginfo(&#039;stylesheet_directory&#039;);
	if (is_home() &#124;&#124; is_front_page()) {
		?&gt;
		&lt;link rel=&quot;stylesheet&quot; type=&quot;text/css&quot; href=&quot;/library/styles/reset.css&quot; /&gt;
		&lt;link rel=&quot;stylesheet&quot; type=&quot;text/css&quot; href=&quot;/library/styles/typography.css&quot; /&gt;
		&lt;link rel=&quot;stylesheet&quot; type=&quot;text/css&quot; href=&quot;/library/styles/images.css&quot; /&gt;
		&lt;link rel=&quot;stylesheet&quot; type=&quot;text/css&quot; href=&quot;/library/layouts/3c-fixed.css&quot; /&gt;
		&lt;link rel=&quot;stylesheet&quot; type=&quot;text/css&quot; href=&quot;/library/styles/default.css&quot; /&gt;
		&lt;link rel=&quot;stylesheet&quot; type=&quot;text/css&quot; href=&quot;/library/styles/plugins.css&quot; /&gt;
 
		
		&lt;link rel=&quot;stylesheet&quot; type=&quot;text/css&quot; href=&quot;/library/styles/reset.css&quot; /&gt;
		&lt;link rel=&quot;stylesheet&quot; type=&quot;text/css&quot; href=&quot;/library/styles/typography.css&quot; /&gt;
		&lt;link rel=&quot;stylesheet&quot; type=&quot;text/css&quot; href=&quot;/library/styles/images.css&quot; /&gt;
		&lt;link rel=&quot;stylesheet&quot; type=&quot;text/css&quot; href=&quot;/library/layouts/2c-r-fixed.css&quot; /&gt;
		&lt;link rel=&quot;stylesheet&quot; type=&quot;text/css&quot; href=&quot;/library/styles/default.css&quot; /&gt;
		&lt;link rel=&quot;stylesheet&quot; type=&quot;text/css&quot; href=&quot;/library/styles/plugins.css&quot; /&gt;
 
		&lt;?php
	}
}
add_filter(&#039;thematic_create_stylesheet&#039;, &#039;childtheme_create_stylesheet&#039;);
&lt;/code&gt;</description>
		<content:encoded><![CDATA[<p>Hi,</p>
<p>Thanks, I was looking for this.</p>
<p>Also, I found another way to do this. With this you don&#8217;t need to create two .css files, and don&#8217;t need the @import code on the .css file neither. Just paste the following code in the functions.php file:</p>
<p><code><br />
function childtheme_create_stylesheet() {<br />
    $templatedir = get_bloginfo('template_directory');<br />
    $stylesheetdir = get_bloginfo('stylesheet_directory');<br />
	if (is_home() || is_front_page()) {<br />
		?&gt;<br />
		&lt;link rel=&quot;stylesheet&quot; type=&quot;text/css&quot; href=&quot;/library/styles/reset.css" /&gt;<br />
		&lt;link rel=&quot;stylesheet&quot; type=&quot;text/css&quot; href=&quot;/library/styles/typography.css" /&gt;<br />
		&lt;link rel=&quot;stylesheet&quot; type=&quot;text/css&quot; href=&quot;/library/styles/images.css" /&gt;<br />
		&lt;link rel=&quot;stylesheet&quot; type=&quot;text/css&quot; href=&quot;/library/layouts/3c-fixed.css" /&gt;<br />
		&lt;link rel=&quot;stylesheet&quot; type=&quot;text/css&quot; href=&quot;/library/styles/default.css" /&gt;<br />
		&lt;link rel=&quot;stylesheet&quot; type=&quot;text/css&quot; href=&quot;/library/styles/plugins.css" /&gt;</p>
<p>		&lt;link rel=&quot;stylesheet&quot; type=&quot;text/css&quot; href=&quot;/library/styles/reset.css" /&gt;<br />
		&lt;link rel=&quot;stylesheet&quot; type=&quot;text/css&quot; href=&quot;/library/styles/typography.css" /&gt;<br />
		&lt;link rel=&quot;stylesheet&quot; type=&quot;text/css&quot; href=&quot;/library/styles/images.css" /&gt;<br />
		&lt;link rel=&quot;stylesheet&quot; type=&quot;text/css&quot; href=&quot;/library/layouts/2c-r-fixed.css" /&gt;<br />
		&lt;link rel=&quot;stylesheet&quot; type=&quot;text/css&quot; href=&quot;/library/styles/default.css" /&gt;<br />
		&lt;link rel=&quot;stylesheet&quot; type=&quot;text/css&quot; href=&quot;/library/styles/plugins.css" /&gt;</p>
<p>		&lt;?php<br />
	}<br />
}<br />
add_filter(&#039;thematic_create_stylesheet&#039;, &#039;childtheme_create_stylesheet&#039;);<br />
</code></p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on How to remove the sidebar from a certain page? by Santi</title>
		<link>http://programming.thematic4you.com/2010/01/how-to-remove-the-sidebar-from-a-certain-page/comment-page-1/#comment-108</link>
		<dc:creator>Santi</dc:creator>
		<pubDate>Fri, 24 Jun 2011 03:05:49 +0000</pubDate>
		<guid isPermaLink="false">http://programming.thematic4you.com/?p=20#comment-108</guid>
		<description>Not sure if you&#039;re still around. I&#039;m currently using a child theme I made from Thematic however I can&#039;t really seem to change anything. So far I&#039;ve added a header... All I want now is to have my content centered instead of on the left side, and I&#039;ve tried using this code but it doesnt change anything. Not sure what I&#039;m doing wrong. Any help is appreciated.</description>
		<content:encoded><![CDATA[<p>Not sure if you&#8217;re still around. I&#8217;m currently using a child theme I made from Thematic however I can&#8217;t really seem to change anything. So far I&#8217;ve added a header&#8230; All I want now is to have my content centered instead of on the left side, and I&#8217;ve tried using this code but it doesnt change anything. Not sure what I&#8217;m doing wrong. Any help is appreciated.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on How to use a different layout for a certain page? by Greg Turner</title>
		<link>http://programming.thematic4you.com/2010/01/how-to-use-a-different-layout-for-a-certain-page/comment-page-1/#comment-107</link>
		<dc:creator>Greg Turner</dc:creator>
		<pubDate>Fri, 17 Jun 2011 03:54:17 +0000</pubDate>
		<guid isPermaLink="false">http://programming.thematic4you.com/?p=6#comment-107</guid>
		<description>I wanted to be able to have the user be able to define a layout on a per page basis.  To do that, I added a custom field that is set in the admin edit page, and the value of this custom field tells what layout should be used,

I copied the thematic style.css file as the main style sheet for my child theme and took out the reference to the style sheet for the layout.

Then I created a function in the functions.php and hooked it into the wp_head action hook.  In that function, I get the value of the custom field, and output a reference to the correct layout style sheet from thematic.

Comments on this method??  Any better way to do it?  Thanks</description>
		<content:encoded><![CDATA[<p>I wanted to be able to have the user be able to define a layout on a per page basis.  To do that, I added a custom field that is set in the admin edit page, and the value of this custom field tells what layout should be used,</p>
<p>I copied the thematic style.css file as the main style sheet for my child theme and took out the reference to the style sheet for the layout.</p>
<p>Then I created a function in the functions.php and hooked it into the wp_head action hook.  In that function, I get the value of the custom field, and output a reference to the correct layout style sheet from thematic.</p>
<p>Comments on this method??  Any better way to do it?  Thanks</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on How to remove the sidebar from a certain page? by Greg Turner</title>
		<link>http://programming.thematic4you.com/2010/01/how-to-remove-the-sidebar-from-a-certain-page/comment-page-1/#comment-106</link>
		<dc:creator>Greg Turner</dc:creator>
		<pubDate>Fri, 17 Jun 2011 03:45:42 +0000</pubDate>
		<guid isPermaLink="false">http://programming.thematic4you.com/?p=20#comment-106</guid>
		<description>I am confused by this thread, because thematic has multiple sidebars on a page.  This code does not refer to removing a specific sidebar, so I am confused.  I want to remove the primary aside sidebar on some pages, and remove the secondary aside sidebar on other pages.  How can I do this?  Thanks</description>
		<content:encoded><![CDATA[<p>I am confused by this thread, because thematic has multiple sidebars on a page.  This code does not refer to removing a specific sidebar, so I am confused.  I want to remove the primary aside sidebar on some pages, and remove the secondary aside sidebar on other pages.  How can I do this?  Thanks</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on How to remove the sidebar from a certain page? by Sorun</title>
		<link>http://programming.thematic4you.com/2010/01/how-to-remove-the-sidebar-from-a-certain-page/comment-page-1/#comment-105</link>
		<dc:creator>Sorun</dc:creator>
		<pubDate>Thu, 16 Jun 2011 08:23:48 +0000</pubDate>
		<guid isPermaLink="false">http://programming.thematic4you.com/?p=20#comment-105</guid>
		<description>You&#039;ve made my day! got sick of that sidebar...</description>
		<content:encoded><![CDATA[<p>You&#8217;ve made my day! got sick of that sidebar&#8230;</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on How to use a different layout for a certain page? by John Kerns</title>
		<link>http://programming.thematic4you.com/2010/01/how-to-use-a-different-layout-for-a-certain-page/comment-page-1/#comment-104</link>
		<dc:creator>John Kerns</dc:creator>
		<pubDate>Thu, 16 Jun 2011 01:16:12 +0000</pubDate>
		<guid isPermaLink="false">http://programming.thematic4you.com/?p=6#comment-104</guid>
		<description>Thanks for the instructions; they worked perfectly. Incidentally, you could more-or-less cut my_stylesheet() to half it&#039;s length by omitting the else clause, since all it does it set $content to the same value it already has.</description>
		<content:encoded><![CDATA[<p>Thanks for the instructions; they worked perfectly. Incidentally, you could more-or-less cut my_stylesheet() to half it&#8217;s length by omitting the else clause, since all it does it set $content to the same value it already has.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Thematic Action Hooks by Mushon</title>
		<link>http://programming.thematic4you.com/2010/10/thematic-action-hooks/comment-page-1/#comment-95</link>
		<dc:creator>Mushon</dc:creator>
		<pubDate>Wed, 11 May 2011 07:28:57 +0000</pubDate>
		<guid isPermaLink="false">http://programming.thematic4you.com/?p=94#comment-95</guid>
		<description>I love T4U, I wish it could be more extensive though.
What else do you think could be visualized and how? 
Would you share your plans for its future?</description>
		<content:encoded><![CDATA[<p>I love T4U, I wish it could be more extensive though.<br />
What else do you think could be visualized and how?<br />
Would you share your plans for its future?</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on How to remove the sidebar from a certain page? by Arthur</title>
		<link>http://programming.thematic4you.com/2010/01/how-to-remove-the-sidebar-from-a-certain-page/comment-page-1/#comment-89</link>
		<dc:creator>Arthur</dc:creator>
		<pubDate>Tue, 12 Apr 2011 18:11:59 +0000</pubDate>
		<guid isPermaLink="false">http://programming.thematic4you.com/?p=20#comment-89</guid>
		<description>I got the removal of the sidebar working but I can&#039;t access the space.

I&#039;m using this but it doesn&#039;t work.

body.projectew #container {
	width: 960px;
}

body.projectew #content {
	width: 940px;
}

Can anyone help?</description>
		<content:encoded><![CDATA[<p>I got the removal of the sidebar working but I can&#8217;t access the space.</p>
<p>I&#8217;m using this but it doesn&#8217;t work.</p>
<p>body.projectew #container {<br />
	width: 960px;<br />
}</p>
<p>body.projectew #content {<br />
	width: 940px;<br />
}</p>
<p>Can anyone help?</p>
]]></content:encoded>
	</item>
</channel>
</rss>

