<?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 on: How to Build Two-Column Sidebar Boxes</title>
	<atom:link href="http://thesisthemetools.com/how-to-build-two-column-sidebar-boxes/feed/" rel="self" type="application/rss+xml" />
	<link>http://thesisthemetools.com</link>
	<description>Tips, Tricks, and Tools for the Thesis Theme</description>
	<lastBuildDate>Wed, 25 Aug 2010 22:43:43 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0.1</generator>
	<item>
		<title>By: Iseng Ngeblog</title>
		<link>http://thesisthemetools.com/how-to-build-two-column-sidebar-boxes/comment-page-1/#comment-4948</link>
		<dc:creator>Iseng Ngeblog</dc:creator>
		<pubDate>Sun, 23 May 2010 21:12:06 +0000</pubDate>
		<guid isPermaLink="false">http://thesisthemetools.com/?page_id=240#comment-4948</guid>
		<description>Great tips this is what i need because this is my first day with thesis
Thanks</description>
		<content:encoded><![CDATA[<p>Great tips this is what i need because this is my first day with thesis<br />
Thanks</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Mike</title>
		<link>http://thesisthemetools.com/how-to-build-two-column-sidebar-boxes/comment-page-1/#comment-4940</link>
		<dc:creator>Mike</dc:creator>
		<pubDate>Sun, 23 May 2010 03:46:59 +0000</pubDate>
		<guid isPermaLink="false">http://thesisthemetools.com/?page_id=240#comment-4940</guid>
		<description>question:

How do I register this so that it shows up under the &quot;widgets&quot; admin panel. This way I can easily drag/drop my own widgets right from there.</description>
		<content:encoded><![CDATA[<p>question:</p>
<p>How do I register this so that it shows up under the &#8220;widgets&#8221; admin panel. This way I can easily drag/drop my own widgets right from there.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Nic</title>
		<link>http://thesisthemetools.com/how-to-build-two-column-sidebar-boxes/comment-page-1/#comment-4558</link>
		<dc:creator>Nic</dc:creator>
		<pubDate>Sun, 02 May 2010 09:17:58 +0000</pubDate>
		<guid isPermaLink="false">http://thesisthemetools.com/?page_id=240#comment-4558</guid>
		<description>Hi Mike

I&#039;ve learnt a great deal from reading your tutorials.  As a newbie one of the things I value most is the comment you add to each line of code that explains what it&#039;ll do.

Keep up the great work.

Best

Nic</description>
		<content:encoded><![CDATA[<p>Hi Mike</p>
<p>I&#8217;ve learnt a great deal from reading your tutorials.  As a newbie one of the things I value most is the comment you add to each line of code that explains what it&#8217;ll do.</p>
<p>Keep up the great work.</p>
<p>Best</p>
<p>Nic</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Mike Nichols</title>
		<link>http://thesisthemetools.com/how-to-build-two-column-sidebar-boxes/comment-page-1/#comment-4546</link>
		<dc:creator>Mike Nichols</dc:creator>
		<pubDate>Fri, 30 Apr 2010 17:27:49 +0000</pubDate>
		<guid isPermaLink="false">http://thesisthemetools.com/?page_id=240#comment-4546</guid>
		<description>Hi, Michelle,

Glad you were able to use the code!

There are two ways to move the sidebar box around: the margin property or with relative positioning. The margin property doesn&#039;t always work, but we&#039;ll start with it anyway. 

All you have to do is to experiment with the numbers in the margin property in the CSS code. The property as it stands now is:

	/* separates box from elements around it */
	margin: 2em 0 2em 0;

Remember that the numbers in the margin property represent top - right - bottom - left (in other words they go in clockwise order starting at the top). If your box is too far to the left, try adding to the left value like this:

	/* separates box from elements around it */
	margin: 2em 0 2em 3em;

Like I said, this may not work. If it doesn&#039;t then relative positioning will. Insert the following properties into the #sidebar_two_column_box selector:

    position: relative;
    top: 0px;
    left: 0px;

If your box is too far to the left, increase the size of the left property with a positive number like &quot;10px&quot;. If it&#039;s too far to the right, move the box to the left with a negative number, like &quot;-10px&quot;. Be sure to include the &quot;px&quot; next to the number. Incidentally, if you are more comfortable with using &quot;em&quot; for sizes, feel free to use it.

Hope this helps!</description>
		<content:encoded><![CDATA[<p>Hi, Michelle,</p>
<p>Glad you were able to use the code!</p>
<p>There are two ways to move the sidebar box around: the margin property or with relative positioning. The margin property doesn&#8217;t always work, but we&#8217;ll start with it anyway. </p>
<p>All you have to do is to experiment with the numbers in the margin property in the CSS code. The property as it stands now is:</p>
<p>	/* separates box from elements around it */<br />
	margin: 2em 0 2em 0;</p>
<p>Remember that the numbers in the margin property represent top &#8211; right &#8211; bottom &#8211; left (in other words they go in clockwise order starting at the top). If your box is too far to the left, try adding to the left value like this:</p>
<p>	/* separates box from elements around it */<br />
	margin: 2em 0 2em 3em;</p>
<p>Like I said, this may not work. If it doesn&#8217;t then relative positioning will. Insert the following properties into the #sidebar_two_column_box selector:</p>
<p>    position: relative;<br />
    top: 0px;<br />
    left: 0px;</p>
<p>If your box is too far to the left, increase the size of the left property with a positive number like &#8220;10px&#8221;. If it&#8217;s too far to the right, move the box to the left with a negative number, like &#8220;-10px&#8221;. Be sure to include the &#8220;px&#8221; next to the number. Incidentally, if you are more comfortable with using &#8220;em&#8221; for sizes, feel free to use it.</p>
<p>Hope this helps!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Michelle {Brown Eyed Baker}</title>
		<link>http://thesisthemetools.com/how-to-build-two-column-sidebar-boxes/comment-page-1/#comment-4539</link>
		<dc:creator>Michelle {Brown Eyed Baker}</dc:creator>
		<pubDate>Fri, 30 Apr 2010 00:57:44 +0000</pubDate>
		<guid isPermaLink="false">http://thesisthemetools.com/?page_id=240#comment-4539</guid>
		<description>This is great! A quick question though - how can I get the box centered? I tried to set &quot;align: center;&quot; in the custom.css file, but it didn&#039;t do anything. Any  ideas? Thanks!</description>
		<content:encoded><![CDATA[<p>This is great! A quick question though &#8211; how can I get the box centered? I tried to set &#8220;align: center;&#8221; in the custom.css file, but it didn&#8217;t do anything. Any  ideas? Thanks!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Mike Nichols</title>
		<link>http://thesisthemetools.com/how-to-build-two-column-sidebar-boxes/comment-page-1/#comment-4303</link>
		<dc:creator>Mike Nichols</dc:creator>
		<pubDate>Sat, 17 Apr 2010 20:36:36 +0000</pubDate>
		<guid isPermaLink="false">http://thesisthemetools.com/?page_id=240#comment-4303</guid>
		<description>Hi, David,

Yes, you can have different boxes on as many different pages as you wish through the magic of conditional tags, as described in this article: http://thesisthemetools.com/tutorial-customizing-just-your-front-page-pages-or-posts-using-conditional-tags/

Just designate a box as applying to a certain page or type of page, and it will appear only on that page. For example, for a named page:

function front_page_box() {
    if (is_page(&#039;Front Page&#039;)) {
        ...your code...
    }
}

and for the blog page -- which is always known in WP-speak as the &quot;home&quot; page:

function home_page_box() {
    if (is_home()) {
        ...your code...
    }
}

Or if you want the picture to appear on every page except the blog page, just negate the condition with an exclamation mark (!):


function home_page_box() {
    if (!is_home()) {
        ...your code...
    }
}
Everything else you do besides the conditional tag is the same. 

Hope this helps!</description>
		<content:encoded><![CDATA[<p>Hi, David,</p>
<p>Yes, you can have different boxes on as many different pages as you wish through the magic of conditional tags, as described in this article: <a href="http://thesisthemetools.com/tutorial-customizing-just-your-front-page-pages-or-posts-using-conditional-tags/" rel="nofollow">http://thesisthemetools.com/tutorial-customizing-just-your-front-page-pages-or-posts-using-conditional-tags/</a></p>
<p>Just designate a box as applying to a certain page or type of page, and it will appear only on that page. For example, for a named page:</p>
<p>function front_page_box() {<br />
    if (is_page(&#8216;Front Page&#8217;)) {<br />
        &#8230;your code&#8230;<br />
    }<br />
}</p>
<p>and for the blog page &#8212; which is always known in WP-speak as the &#8220;home&#8221; page:</p>
<p>function home_page_box() {<br />
    if (is_home()) {<br />
        &#8230;your code&#8230;<br />
    }<br />
}</p>
<p>Or if you want the picture to appear on every page except the blog page, just negate the condition with an exclamation mark (!):</p>
<p>function home_page_box() {<br />
    if (!is_home()) {<br />
        &#8230;your code&#8230;<br />
    }<br />
}<br />
Everything else you do besides the conditional tag is the same. </p>
<p>Hope this helps!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: David</title>
		<link>http://thesisthemetools.com/how-to-build-two-column-sidebar-boxes/comment-page-1/#comment-4302</link>
		<dc:creator>David</dc:creator>
		<pubDate>Sat, 17 Apr 2010 20:18:55 +0000</pubDate>
		<guid isPermaLink="false">http://thesisthemetools.com/?page_id=240#comment-4302</guid>
		<description>OR ... if I can use your two-column sidebar box on one page, and the Multimedia box in the same place on another page.

Thanks again for the great site.
David</description>
		<content:encoded><![CDATA[<p>OR &#8230; if I can use your two-column sidebar box on one page, and the Multimedia box in the same place on another page.</p>
<p>Thanks again for the great site.<br />
David</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: David</title>
		<link>http://thesisthemetools.com/how-to-build-two-column-sidebar-boxes/comment-page-1/#comment-4296</link>
		<dc:creator>David</dc:creator>
		<pubDate>Sat, 17 Apr 2010 17:55:00 +0000</pubDate>
		<guid isPermaLink="false">http://thesisthemetools.com/?page_id=240#comment-4296</guid>
		<description>Hi Mike -

This worked perfectly, thanks. Do you have any idea if it&#039;s possible to create two identically sized boxes for different pages? One for the home page sidebar and one for the blog sidebar? I&#039;d like to place different content in each.

thanks,
David</description>
		<content:encoded><![CDATA[<p>Hi Mike -</p>
<p>This worked perfectly, thanks. Do you have any idea if it&#8217;s possible to create two identically sized boxes for different pages? One for the home page sidebar and one for the blog sidebar? I&#8217;d like to place different content in each.</p>
<p>thanks,<br />
David</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: David</title>
		<link>http://thesisthemetools.com/how-to-build-two-column-sidebar-boxes/comment-page-1/#comment-4278</link>
		<dc:creator>David</dc:creator>
		<pubDate>Fri, 16 Apr 2010 01:12:43 +0000</pubDate>
		<guid isPermaLink="false">http://thesisthemetools.com/?page_id=240#comment-4278</guid>
		<description>This worked great for me. Just copied your code, pasted it in, changed the particulars, and voila! I had a two-column sidebar photo box without using up my MM Box so I can save it for video.

Thank you, Mike.</description>
		<content:encoded><![CDATA[<p>This worked great for me. Just copied your code, pasted it in, changed the particulars, and voila! I had a two-column sidebar photo box without using up my MM Box so I can save it for video.</p>
<p>Thank you, Mike.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Jorge l Nokia-Tips.com</title>
		<link>http://thesisthemetools.com/how-to-build-two-column-sidebar-boxes/comment-page-1/#comment-508</link>
		<dc:creator>Jorge l Nokia-Tips.com</dc:creator>
		<pubDate>Fri, 09 Oct 2009 19:33:32 +0000</pubDate>
		<guid isPermaLink="false">http://thesisthemetools.com/?page_id=240#comment-508</guid>
		<description>Hello, I&#039;ve successfully added this great tutorial to one of my site and I&#039;d like to add another to the sidebar, I&#039;m going to of course call it something else but what I&#039;d like help in is the code to put ads like in your example exactly those types 125x125 like that 3 of them, is it just html linking to the ads on my server ie. just write the html code and wrap in the function but make sure my ads are 125x125 something like this I&#039;m think because I just realized that its the same thing as my RSS box but with images at 125x125 am I right. Thanks</description>
		<content:encoded><![CDATA[<p>Hello, I&#8217;ve successfully added this great tutorial to one of my site and I&#8217;d like to add another to the sidebar, I&#8217;m going to of course call it something else but what I&#8217;d like help in is the code to put ads like in your example exactly those types 125&#215;125 like that 3 of them, is it just html linking to the ads on my server ie. just write the html code and wrap in the function but make sure my ads are 125&#215;125 something like this I&#8217;m think because I just realized that its the same thing as my RSS box but with images at 125&#215;125 am I right. Thanks</p>
]]></content:encoded>
	</item>
</channel>
</rss>
