<?xml version='1.0' encoding='UTF-8'?><?xml-stylesheet href="http://www.blogger.com/styles/atom.css" type="text/css"?><feed xmlns='http://www.w3.org/2005/Atom' xmlns:openSearch='http://a9.com/-/spec/opensearchrss/1.0/' xmlns:georss='http://www.georss.org/georss' xmlns:thr='http://purl.org/syndication/thread/1.0'><id>tag:blogger.com,1999:blog-8198937227131193549</id><updated>2010-04-29T11:43:16.451-07:00</updated><title type='text'>Three Column Blogger</title><subtitle type='html'>3 Column Blogs Easy And Fast.  How to Add Columns To Free Blogger Templates.  You Can Have A 3 Column Layout on Your Blog!</subtitle><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/8198937227131193549/posts/default'/><link rel='alternate' type='text/html' href='http://www.threecolumnblogger.com/'/><link rel='hub' href='http://pubsubhubbub.appspot.com/'/><link rel='http://schemas.google.com/g/2005#feed' type='application/atom+xml' href='http://www.threecolumnblogger.com/atom.xml'/><author><name>REIT Wrecks</name><email>noreply@blogger.com</email></author><generator version='7.00' uri='http://www.blogger.com'>Blogger</generator><openSearch:totalResults>15</openSearch:totalResults><openSearch:startIndex>1</openSearch:startIndex><openSearch:itemsPerPage>25</openSearch:itemsPerPage><entry><id>tag:blogger.com,1999:blog-8198937227131193549.post-1921089231057042834</id><published>2009-06-13T19:30:00.000-07:00</published><updated>2009-12-02T01:17:58.929-08:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='three column blogger'/><category scheme='http://www.blogger.com/atom/ns#' term='three column minima lefty stretch'/><category scheme='http://www.blogger.com/atom/ns#' term='3 Column Blogs'/><title type='text'>Three Column Minima Lefty Stretch - Two Columns on the Right</title><content type='html'>&lt;div align="justify"&gt;This blog is all about adding columns to free blogger templates, and this post will help you adding a third column to Minima Lefty Stretch. &lt;span style="COLOR: rgb(255,0,0)"&gt;&lt;em&gt;Note as of 11/28/09: thanks to everyone's constructive comments, I have improved these instructions. They now should be even easier to use. The two most common issues are columns dropping to the bottom of the page, or "squished columns" For the latter, carefully read my post on adjusting margins. For the former, your column width settings are wrong or you have existing widgets that are too wide for your newly narrowed columns. You'll need to reduce their width, or remove them.&lt;/em&gt;&lt;/span&gt; If you are looking for a three column tutorial for another blogger template, please look to the right under "three column mods". This tutorial will help you make a three column Minima Lefty Stretch blog with the main column on the left and two sidebars on the right. If you want a 3 column Minima Lefty Stretch blogger with the main column in the middle and one sidebar on the each side, see the main post on &lt;a href="http://www.threecolumnblogger.com/2008/11/three-column-minima-lefty-stretch.html"&gt;three column minima lefty stretch&lt;/a&gt;.&lt;br /&gt;&lt;br /&gt;If you want both your sidebars on the right, this post is for you. So without further adieu, let's get started. First, open up Blogger and go into your Dashboard, then click on the "Layout" tab. Then go into the "Edit HTML" tab.&lt;br /&gt;&lt;br /&gt;You will see a bunch of gobbledygook and gobbledygook it shall remain - you don't need to know anything about it. Just scroll down until you see the "Outer-Wrapper" section, it is marked by the following: /* Outer Wrapper. Easy enough, but an even easier way to find it is use your brower's control F (CTRL+F) command. You can just type CTRL F and then type /* Outer-Wrapper into the dialog box and click "next".&lt;br /&gt;&lt;br /&gt;/* Outer-Wrapper&lt;br /&gt;-----------------------------------------------&lt;br /&gt;&lt;br /&gt;Now, change the width of the "main-wrapper" from 67% to 48%, and the float from $endSide to $startSide. Note that the html code "$startSide" is case sensitive:&lt;br /&gt;&lt;br /&gt;#main-wrapper {&lt;br /&gt;margin-$endSide: 2%; &lt;span style="COLOR: rgb(255,0,0)"&gt;&lt;-------change to $startSide&lt;/span&gt;&lt;br /&gt;width: 67%; &lt;span style="COLOR: rgb(255,0,0)"&gt;&lt;-------change to 48%&lt;/span&gt;&lt;br /&gt;float: $endSide; &lt;span style="COLOR: rgb(255,0,0)"&gt;&lt;-------change to $startSide&lt;/span&gt;&lt;br /&gt;display: inline; /* fix for doubling margin in IE */&lt;br /&gt;word-wrap: break-word; /* fix for long text breaking sidebar float in IE */&lt;br /&gt;overflow: hidden; /* fix for long non-text content breaking IE sidebar float */&lt;br /&gt;&lt;br /&gt;That piece of code should now look EXACTLY like this:&lt;br /&gt;&lt;br /&gt;&lt;span style="COLOR: rgb(0,0,153)"&gt;#main-wrapper {&lt;br /&gt;margin-&lt;span style="COLOR: rgb(255,0,0)"&gt;$startSide&lt;/span&gt;: 2%;&lt;br /&gt;width: &lt;span style="COLOR: rgb(255,0,0)"&gt;48&lt;/span&gt;%;&lt;br /&gt;float: &lt;span style="COLOR: rgb(255,0,0)"&gt;$startSide&lt;/span&gt;;&lt;br /&gt;display: inline; /* fix for doubling margin in IE */&lt;br /&gt;word-wrap: break-word; /* fix for long text breaking sidebar float in IE */&lt;br /&gt;overflow: hidden; /* fix for long non-text content breaking IE sidebar float */&lt;br /&gt;&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;Next, change the float of the "sidebar-wrapper" from $startSide to $endSide. Note that the html code "$endSide" is case sensitive:&lt;br /&gt;&lt;br /&gt;#sidebar-wrapper {&lt;br /&gt;margin-$startSide: 2%;&lt;br /&gt;width: 20%;&lt;br /&gt;float: $startSide;&lt;span style="COLOR: rgb(255,0,0)"&gt;&lt;-------change to $endSide&lt;/span&gt;&lt;br /&gt;display: inline; /* fix for doubling margin in IE */&lt;br /&gt;word-wrap: break-word; /* fix for long text breaking sidebar float in IE */&lt;br /&gt;overflow: hidden; /* fix for long non-text content breaking IE sidebar float */&lt;br /&gt;&lt;br /&gt;So far so good. Now, take this new block of code (below, in red) and paste it exactly as it appears directly in the space just before the */ Headings section. It's helpful to use "CTRL C" to copy, and then "CTRL V" to paste, if you didn't already know that trick. Regardless of how you cut and paste, you must paste the code directly in that space before the */Headings section and do not accidentally delete any code from the "#sidebar-wrapper" code above, including the "}" character at the very end. To paraphrase Monty Python, every character is sacred!&lt;br /&gt;&lt;br /&gt;&lt;/div&gt;&lt;div align="justify"&gt;&lt;div style="BORDER-BOTTOM: rgb(101,115,131) 1px solid; BORDER-LEFT: rgb(101,115,131) 1px solid; PADDING-BOTTOM: 15px; PADDING-LEFT: 15px; WIDTH: 400px; PADDING-RIGHT: 15px; BORDER-TOP: rgb(101,115,131) 1px solid; BORDER-RIGHT: rgb(101,115,131) 1px solid; PADDING-TOP: 15px"&gt;&lt;br /&gt;&lt;span style="COLOR: rgb(255,0,0)"&gt;#right-sidebar-wrapper {&lt;br /&gt;margin-$startSide: 2%;&lt;br /&gt;width: 20%;&lt;br /&gt;float: $endSide;&lt;br /&gt;display: inline; /* fix for doubling margin in IE */&lt;br /&gt;word-wrap: break-word; /* fix for long text breaking sidebar float in IE */&lt;br /&gt;overflow: hidden; /* fix for long non-text content breaking IE sidebar float */&lt;br /&gt;}&lt;br /&gt;&lt;/span&gt;&lt;/div&gt;&lt;/div&gt;&lt;br /&gt;&lt;br /&gt;The new code block should look exactly like this:&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;div align="justify"&gt;&lt;div style="BORDER-BOTTOM: rgb(101,115,131) 1px solid; BORDER-LEFT: rgb(101,115,131) 1px solid; PADDING-BOTTOM: 15px; PADDING-LEFT: 15px; WIDTH: 400px; PADDING-RIGHT: 15px; BORDER-TOP: rgb(101,115,131) 1px solid; BORDER-RIGHT: rgb(101,115,131) 1px solid; PADDING-TOP: 15px"&gt;&lt;br /&gt;&lt;span style="COLOR: rgb(0,0,153)"&gt;#main-wrapper {&lt;br /&gt;margin-&lt;span style="COLOR: rgb(255,0,0)"&gt;$startSide&lt;/span&gt;: 2%;&lt;br /&gt;width: &lt;span style="COLOR: rgb(255,0,0)"&gt;48&lt;/span&gt;%;&lt;br /&gt;float: &lt;span style="COLOR: rgb(255,0,0)"&gt;$startSide&lt;/span&gt;;&lt;br /&gt;display: inline; /* fix for doubling margin in IE */&lt;br /&gt;word-wrap: break-word; /* fix for long text breaking sidebar float in IE */&lt;br /&gt;overflow: hidden; /* fix for long non-text content breaking IE sidebar float */&lt;br /&gt;}&lt;br /&gt;#sidebar-wrapper {&lt;br /&gt;margin-$startSide: 2%;&lt;br /&gt;width: 20%;&lt;br /&gt;float:-&lt;span style="COLOR: rgb(255,0,0)"&gt;$endSide&lt;/span&gt;: 2%;&lt;br /&gt;&lt;br /&gt;display: inline; /* fix for doubling margin in IE */&lt;br /&gt;word-wrap: break-word; /* fix for long text breaking sidebar float in IE */&lt;br /&gt;overflow: hidden; /* fix for long non-text content breaking IE sidebar float */&lt;br /&gt;}&lt;/span&gt;&lt;span style="COLOR: rgb(255,0,0)"&gt;&lt;br /&gt;#right-sidebar-wrapper {&lt;br /&gt;margin-$startSide: 2%;&lt;br /&gt;width: 20%;&lt;br /&gt;float: $endSide;&lt;br /&gt;display: inline; /* fix for doubling margin in IE */&lt;br /&gt;word-wrap: break-word; /* fix for long text breaking sidebar float in IE */&lt;br /&gt;overflow: hidden; /* fix for long non-text content breaking IE sidebar float */&lt;br /&gt;}&lt;br /&gt;&lt;/span&gt;&lt;/div&gt;&lt;/div&gt;&lt;div align="justify"&gt;&lt;br /&gt;&lt;br /&gt;At this point, believe it or not, there is only one more step. This particular step is hard only because you need to make sure you paste the additional code in the right spot, and this next spot can be a hard place to identify (CTRL+F helps here a lot).&lt;br /&gt;&lt;br /&gt;Anyway, scroll down to the very end of the entire page. Several lines above the very end you will see the following:&lt;br /&gt;&lt;br /&gt;&lt;span style="COLOR: rgb(0,0,153)"&gt;&amp;lt;!-- spacer for skins that want sidebar and main to be the same height--&gt;&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;Now, immediately above the line that says &lt;span style="COLOR: rgb(0,0,153)"&gt;&amp;lt;!-- spacer for skins that want sidebar and main to be the same height--&gt;&lt;/span&gt; and below the end of the "main-wrapper" div section (be careful not to delete any of the code in that section), paste in the following code EXACTLY as it appears below:&lt;br /&gt;&lt;br /&gt;&lt;/div&gt;&lt;div align="justify"&gt;&lt;div style="BORDER-BOTTOM: rgb(101,115,131) 1px solid; BORDER-LEFT: rgb(101,115,131) 1px solid; PADDING-BOTTOM: 15px; PADDING-LEFT: 15px; WIDTH: 400px; PADDING-RIGHT: 15px; BORDER-TOP: rgb(101,115,131) 1px solid; BORDER-RIGHT: rgb(101,115,131) 1px solid; PADDING-TOP: 15px"&gt;&lt;br /&gt;&lt;div align="left"&gt;&lt;span style="COLOR: rgb(255,0,0)"&gt;&amp;lt;div id='right-sidebar-wrapper'&gt;&lt;br /&gt;&amp;lt;b:section class='sidebar' id='right-sidebar' preferred='yes'&gt;&lt;br /&gt;&amp;lt;b:widget id='Subscribe1' locked='false' title='Subscribe' type='Subscribe'/&gt;&lt;br /&gt;&amp;lt;/b:section&gt;&lt;br /&gt;&amp;lt;/div&gt;&lt;br /&gt;&lt;/span&gt;&lt;/div&gt;&lt;/div&gt;&lt;/div&gt;&lt;div align="justify"&gt;&lt;br /&gt;&lt;br /&gt;Note: this will also insert the RSS feed widget into your new sidebar, but you can delete that and add the widget of your own choice after you finish adding the column. &lt;span style="COLOR: rgb(255,0,0)"&gt;&lt;em&gt;Update 11/28/09: If you get an error message that says the widget ID should be unique, you have an existing RSS feed widget already loaded in your original sidebar and you'll have to delete that one temporarily. But don't worry, you can customize all of your widgets when you get the columns all set up.&lt;/em&gt;&lt;/span&gt; If you don't get this message, there's no need to worry about it - the button is just a placeholder and you can replace and rearrange all of your widgets when you finish. So, after you do that, the newly modified section should now look like this:&lt;br /&gt;&lt;br /&gt;&lt;/div&gt;&lt;div align="justify"&gt;&lt;div style="BORDER-BOTTOM: rgb(101,115,131) 1px solid; BORDER-LEFT: rgb(101,115,131) 1px solid; PADDING-BOTTOM: 15px; PADDING-LEFT: 15px; WIDTH: 400px; PADDING-RIGHT: 15px; BORDER-TOP: rgb(101,115,131) 1px solid; BORDER-RIGHT: rgb(101,115,131) 1px solid; PADDING-TOP: 15px"&gt;&lt;br /&gt;&lt;div align="left"&gt;&lt;span style="COLOR: rgb(0,0,153)"&gt;&lt;br /&gt;&amp;lt;div id='main-wrapper'&gt;&lt;br /&gt;&amp;lt;b:section class='main' id='main' showaddelement='no'&gt;&lt;br /&gt;&amp;lt;b:widget id='Blog1' locked='true' title='Blog Posts' type='Blog'/&gt;&lt;br /&gt;&amp;lt;/b:section&gt;&lt;br /&gt;&amp;lt;/div&gt;&lt;br /&gt;&lt;br /&gt;&amp;lt;div id='sidebar-wrapper'&gt;&lt;br /&gt;&amp;lt;b:section class='sidebar' id='sidebar' preferred='yes'&gt;&lt;br /&gt;&amp;lt;b:widget id='BlogArchive1' locked='false' title='Blog Archive' type='BlogArchive'/&gt;&lt;br /&gt;&amp;lt;b:widget id='BloggerButton1' locked='false' title='' type='BloggerButton'/&gt;&lt;br /&gt;&amp;lt;b:section&gt;&lt;br /&gt;&amp;lt;/div&gt;&lt;/span&gt;&lt;br /&gt;&lt;span style="COLOR: rgb(255,0,0)"&gt;&lt;br /&gt;&amp;lt;div id='right-sidebar-wrapper'&gt;&lt;br /&gt;&amp;lt;b:section class='sidebar' id='right-sidebar' preferred='yes'&gt;&lt;br /&gt;&amp;lt;b:widget id='Subscribe1' locked='false' title='Subscribe' type='Subscribe'/&gt;&lt;br /&gt;&amp;lt;/b:section&gt;&lt;br /&gt;&amp;lt;/div&gt;&lt;/span&gt;&lt;br /&gt;&lt;span style="COLOR: rgb(0,0,153)"&gt;&lt;br /&gt;&amp;lt;--spacer for skins that want sidebar and main to be the same height--&gt;&lt;/span&gt;&lt;br /&gt;&lt;/div&gt;&lt;/div&gt;&lt;/div&gt;&lt;div align="justify"&gt;&lt;br /&gt;&lt;br /&gt;And you are a now master Minima Lefty Stretch coder, because you're done! Hit preview to see your new 3 column Minima Lefty Stretch layout, and then save the template. Best of luck with your blogging. I hope your new 3 column Minima Lefty Stretch template helps make your blogging even more fun and enjoyable! &lt;/div&gt;&lt;div align="justify"&gt;&lt;/div&gt;&lt;div align="justify"&gt;&lt;br /&gt;&lt;br /&gt;Best of luck with your blogging. Links to this post are always welcome.  If you would like to create a quick link in one of your posts or on your blogroll but are unsure how to do it, just insert this html string in your post text:&lt;/div&gt;&lt;span style="COLOR: rgb(255,0,0)"&gt;&lt;br /&gt;&amp;lt;/a href="http://www.threecolumnblogger.com/"&gt;Three Column Blogger&amp;lt;/a&gt; &lt;/span&gt;&lt;br /&gt;&lt;br /&gt;It will appear in your post text/blogroll as &lt;a href="http://www.threecolumnblogger.com/"&gt;Three Column Blogger&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;Thanks!!&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/8198937227131193549-1921089231057042834?l=www.threecolumnblogger.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://www.blogger.com/feeds/8198937227131193549/1921089231057042834/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='https://www.blogger.com/comment.g?blogID=8198937227131193549&amp;postID=1921089231057042834' title='49 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/8198937227131193549/posts/default/1921089231057042834'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/8198937227131193549/posts/default/1921089231057042834'/><link rel='alternate' type='text/html' href='http://www.threecolumnblogger.com/2009/06/three-column-minima-lefty-stretch-two.html' title='Three Column Minima Lefty Stretch - Two Columns on the Right'/><author><name>REIT Wrecks</name><email>noreply@blogger.com</email><gd:extendedProperty xmlns:gd='http://schemas.google.com/g/2005' name='OpenSocialUserId' value='00692419550533468334'/></author><thr:total>49</thr:total></entry><entry><id>tag:blogger.com,1999:blog-8198937227131193549.post-3291450662227459449</id><published>2008-11-19T19:12:00.000-08:00</published><updated>2009-11-29T01:13:58.176-08:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='Three Column Rounders 3'/><category scheme='http://www.blogger.com/atom/ns#' term='3 Column Rounders 4'/><category scheme='http://www.blogger.com/atom/ns#' term='3 Column Blogs'/><title type='text'>3 Column Rounders 4</title><content type='html'>&lt;div align="justify"&gt;This post on 3 column blogs is for the Rounders 4 template. Someday, Blogger will make it easy and produce 3 column blogs, but until then we'll just have to modify the templates. If you haven't already, take a look at &lt;a href="http://www.threecolumnblogger.com/2008/09/adding-third-column-to-blogger.html"&gt;"Adding a Third Column to Blogger"&lt;/a&gt; to see why it's better to modify than to download a hack.&lt;br /&gt;&lt;br /&gt;If you do choose to modify your blogger template, this tutorial will show you how to easily turn your Rounders 4 template into a 3 column blog with just a little bit of time and attention.&lt;br /&gt;&lt;br /&gt;These instructions are simple and easy, and you can do it if you don't know the first thing about HTML (which is perfect because I don't know anything about it either). &lt;span style="color:#ff0000;"&gt;&lt;em&gt;Update (11/28/09): I thought I had fixed the problems with loading custom header and footer images, but the fix is not working for everyone.  Some problems may relate to non-Blogger or XML templates.  For now though, if you have custom images in your header, this mod may not give you the look you want.  Everything esle works perfectly though, so if anybody out there has a solution for header image issue, do share!  Cheers.&lt;/em&gt;&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;These instructions are for those using Blogger's new "Layout" version. I will be adding instructions for the Rounders "Classic" template shortly. Each version of Rounders is slightly different, so if you are not using Rounders 4, look in the right sidebar for the specific version of Rounders that you are using, and click on on that link.&lt;br /&gt;&lt;br /&gt;So let's turn your Rounders 4 template into a 3 column blog! First, open up Blogger and go into your Dashboard, then click on the "Layout" tab. Then go into the "Edit HTML" tab. You will see a bunch of html code - but don't worry you don't need to know anything about it. Just scroll down until you see this:&lt;br /&gt;&lt;br /&gt;/* Page Structure&lt;br /&gt;-----------------------------------------------&lt;br /&gt;&lt;em&gt;(or, allow me to introduce your browser's control F (CTRL+F) command: you can type CTRL F, then type /* Page Structure into the dialog box and click and click next)&lt;/em&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;Now, change the width of the "outer-wrapper" from 740 to 990:&lt;br /&gt;&lt;br /&gt;#outer-wrapper {&lt;br /&gt;width:740px;&lt;span style="color:#ff0000;"&gt;&lt;-------change to 990&lt;/span&gt;&lt;br /&gt;margin:0 auto;&lt;br /&gt;text-align:$startSide;&lt;br /&gt;font: $bodyFont;&lt;br /&gt;}&lt;br /&gt;&lt;br /&gt;Next, you'll need to add 12 pixel margins to your main column, so you will make a minor change in the margin line of the "main-wrap":&lt;br /&gt;&lt;/div&gt;&lt;div align="left"&gt;&lt;br /&gt;#main-wrap1 {&lt;br /&gt;width:485px;&lt;br /&gt;float:left;&lt;br /&gt;background:$mainBgColor url("http://www1.blogblog.com/rounders2/corners_main_bot.gif") no-repeat $startSide bottom;&lt;br /&gt;margin:15px 0 0 ;&lt;span style="color:#ff0000;"&gt;&lt;-------change this to "12px 0 0 12px"&lt;/span&gt;&lt;br /&gt;padding:0 0 10px;&lt;br /&gt;color:$mainTextColor;&lt;br /&gt;font-size:97%;&lt;br /&gt;line-height:1.5em;&lt;br /&gt;word-wrap: break-word; /* fix for long text breaking sidebar float in IE */&lt;br /&gt;overflow: hidden; /* fix for long non-text content breaking IE sidebar float */&lt;br /&gt;}&lt;br /&gt;&lt;br /&gt;That piece of code should now look EXACTLY like this:&lt;br /&gt;&lt;br /&gt;&lt;span style="color:#000099;"&gt;#outer-wrapper {&lt;br /&gt;width:&lt;span style="color:#ff0000;"&gt;990&lt;/span&gt;px;&lt;br /&gt;margin:0 auto;&lt;br /&gt;text-align:$startSide;&lt;br /&gt;font: $bodyFont;&lt;br /&gt;}&lt;br /&gt;#main-wrap1 {&lt;br /&gt;width:485px;&lt;br /&gt;float:left;&lt;br /&gt;background:$mainBgColor url("http://www1.blogblog.com/rounders2/corners_main_bot.gif") no-repeat $startSide bottom;&lt;br /&gt;margin:&lt;span style="color:#ff0000;"&gt;12&lt;/span&gt;px 0 0 &lt;span style="color:#ff0000;"&gt;12px&lt;/span&gt;;&lt;br /&gt;padding:0 0 10px;&lt;br /&gt;color:$mainTextColor;&lt;br /&gt;font-size:97%;&lt;br /&gt;line-height:1.5em;&lt;br /&gt;word-wrap: break-word; /* fix for long text breaking sidebar float in IE */&lt;br /&gt;overflow: hidden; /* fix for long non-text content breaking IE sidebar float */&lt;br /&gt;}&lt;br /&gt;&lt;/span&gt;&lt;/div&gt;&lt;div align="justify"&gt;&lt;br /&gt;So far so good. Now, just after the "sidebarwrap" code block in the same section, paste in the following code (you can use "CTRL C" to copy it, and then "CTRL V" to paste it):&lt;br /&gt;&lt;br /&gt;&lt;/div&gt;&lt;div align="justify"&gt;&lt;div style="BORDER-BOTTOM: #657383 1px solid; BORDER-LEFT: #657383 1px solid; PADDING-BOTTOM: 15px; PADDING-LEFT: 15px; WIDTH: 455px; PADDING-RIGHT: 15px; BORDER-TOP: #657383 1px solid; BORDER-RIGHT: #657383 1px solid; PADDING-TOP: 15px"&gt;&lt;br /&gt;&lt;div align="left"&gt;&lt;span style="color:#ff0000;"&gt;&lt;br /&gt;#left-sidebar-wrap {&lt;br /&gt;width:240px;&lt;br /&gt;float:left;&lt;br /&gt;margin:15px 0 0;&lt;br /&gt;font-size:97%;&lt;br /&gt;line-height:1.5em;&lt;br /&gt;word-wrap: break-word; /* fix for long text breaking sidebar float in IE */&lt;br /&gt;overflow: hidden; /* fix for long non-text content breaking IE sidebar float */&lt;br /&gt;}&lt;br /&gt;&lt;br /&gt;#newsidebar h2 {&lt;br /&gt;color: $postTitleColor;&lt;br /&gt;border-bottom: 1px dotted $postTitleColor;&lt;br /&gt;}&lt;br /&gt;#newsidebarbottom h2 {&lt;br /&gt;color: $postTitleColor;&lt;br /&gt;border-bottom: 1px dotted $postTitleColor;&lt;br /&gt;}&lt;br /&gt;&lt;/span&gt;&lt;/div&gt;&lt;/div&gt;&lt;/div&gt;&lt;div align="justify"&gt;&lt;br /&gt;&lt;br /&gt;Now, we need to adjust the header and footer images. The reason why there are so few tutorials on three column rounders modifications is that it requires a little bit of knowledge to expand the rounders header image. This image uploads from Blogger's "blogblog" website, which means you need to not only increase the width of the image, but you also need to find someplace to host the new, expanded image. But don't worry, Three Column Blogger has done all this for you!&lt;br /&gt;&lt;br /&gt;The first thing you need to do is locate the /* Blog Header section, it's one section below where you just pasted the new sidebar code. You will see two urls in the code, one url links to a file that helps create the top rounded part of the header image (corners_cap_top.gif), and the other url links to a file that helps create the bottom rounded portion of the header image (corners_cap_bot.gif). The code looks like this:&lt;br /&gt;&lt;/div&gt;&lt;div align="left"&gt;&lt;br /&gt;#header-wrapper {&lt;br /&gt;background:&lt;span style="color:#ff0000;"&gt;$titleBgColor&lt;/span&gt; url("http://www2.blogblog.com/rounders4/corners_cap_top.gif") no-repeat $startSide top;&lt;br /&gt;margin-top:22px;&lt;br /&gt;margin-$endSide:0;&lt;br /&gt;margin-bottom:0;&lt;br /&gt;margin-$startSide:0;&lt;br /&gt;padding-top:8px;&lt;br /&gt;padding-$endSide:0;&lt;br /&gt;padding-bottom:0;&lt;br /&gt;padding-$startSide:0;&lt;br /&gt;color:$titleTextColor;&lt;br /&gt;}&lt;br /&gt;#header {&lt;br /&gt;background:url("http://www.blogblog.com/rounders4/corners_cap_bot.gif") no-repeat $startSide bottom;&lt;br /&gt;padding:0 15px 8px;&lt;br /&gt;}&lt;br /&gt;&lt;br /&gt;Once you've located that code, you need to remove &lt;span style="color:#ff0000;"&gt;$titleBgcolor&lt;/span&gt; from the code. I have highlighted in red above so you can spot it more easily. &lt;/div&gt;&lt;div align="left"&gt;&lt;/div&gt;&lt;div align="left"&gt;Next, The top header url needs to be replaced with this link:&lt;br /&gt;&lt;br /&gt;&lt;span style="color:#ff0000;"&gt;&lt;br /&gt;http://i454.photobucket.com/albums/qq270/threecolumnblogger/&lt;br /&gt;corners_cap4_top.gif&lt;br /&gt;&lt;/span&gt;&lt;/div&gt;&lt;div align="left"&gt;&lt;br /&gt;and the bottom header url needs to be replaced with this link:&lt;br /&gt;&lt;br /&gt;&lt;span style="color:#ff0000;"&gt;&lt;br /&gt;http://i454.photobucket.com/albums/qq270/threecolumnblogger/&lt;br /&gt;corners_cap4_bot.gif&lt;br /&gt;&lt;br /&gt;&lt;/span&gt;&lt;/div&gt;&lt;div align="left"&gt;&lt;br /&gt;So highlight and use CTRL C to copy the above links (one at a time), and then use CTRL V to paste each new link into the code block. When you do that, the new header code should look like this:&lt;br /&gt;&lt;span style="color:#000099;"&gt;&lt;br /&gt;#header-wrapper {&lt;br /&gt;background:$titleBgColor url("&lt;span style="color:#ff0000;"&gt;&lt;br /&gt;http://i454.photobucket.com/albums/qq270/threecolumnblogger/&lt;br /&gt;corners_cap4_top.gif&lt;/span&gt;")&lt;/span&gt;&lt;/div&gt;&lt;div align="left"&gt;&lt;span style="color:#000099;"&gt;no-repeat $startSide top;&lt;br /&gt;margin-top:22px;&lt;br /&gt;margin-$endSide:0;&lt;br /&gt;margin-bottom:0;&lt;br /&gt;margin-$startSide:0;&lt;br /&gt;padding-top:8px;&lt;br /&gt;padding-$endSide:0;&lt;br /&gt;padding-bottom:0;&lt;br /&gt;padding-$startSide:0;&lt;br /&gt;color:$titleTextColor;&lt;br /&gt;}&lt;br /&gt;#header {&lt;br /&gt;background:url("&lt;span style="color:#ff0000;"&gt;&lt;br /&gt;http://i454.photobucket.com/albums/qq270/threecolumnblogger/&lt;br /&gt;corners_cap4_bot.gif&lt;/span&gt;") &lt;/span&gt;&lt;/div&gt;&lt;div align="left"&gt;&lt;span style="color:#000099;"&gt;no-repeat $startSide bottom;&lt;br /&gt;padding:0 15px 8px;&lt;br /&gt;}&lt;br /&gt;&lt;/div&gt;&lt;/span&gt;&lt;br /&gt;There is also a footer image that needs to be changed, but it's easy because the steps are the exact same as that for the header image, and it involves using the same new links. You will also need to remove &lt;span style="color:#ff0000;"&gt;$titleBgcolor&lt;/span&gt; from "#footer wrap2". So scroll down to the /* Footer section and replace the existing links with the new ones. When you finish, the code should look like this:&lt;br /&gt;&lt;br /&gt;&lt;span style="color:#000099;"&gt;&lt;div align="left"&gt;&lt;br /&gt;#footer-wrap1 {&lt;br /&gt;clear:both;&lt;br /&gt;margin:0 0 10px;&lt;br /&gt;padding:15px 0 0;&lt;br /&gt;}&lt;br /&gt;#footer-wrap2 {&lt;br /&gt;background: url("&lt;span style="color:#ff0000;"&gt;&lt;br /&gt;http://i454.photobucket.com/albums/qq270/threecolumnblogger/&lt;br /&gt;corners_cap4_top.gif&lt;/span&gt;") &lt;/div&gt;&lt;div align="left"&gt;no-repeat $startSide top;&lt;br /&gt;color:$titleTextColor;&lt;br /&gt;}&lt;br /&gt;#footer {&lt;br /&gt;background:url("&lt;span style="color:#ff0000;"&gt;&lt;br /&gt;http://i454.photobucket.com/albums/qq270/threecolumnblogger/&lt;br /&gt;corners_cap4_bot.gif&lt;/span&gt;") &lt;/div&gt;&lt;div align="left"&gt;no-repeat $startSide bottom;&lt;br /&gt;padding:8px 15px;&lt;br /&gt;}&lt;br /&gt;#footer hr {display:none;}&lt;br /&gt;#footer p {margin:0;}&lt;br /&gt;#footer a {color:$titleTextColor;}&lt;br /&gt;#footer .widget-content {&lt;br /&gt;margin:0;&lt;br /&gt;}&lt;br /&gt;&lt;/div&gt;&lt;/span&gt;&lt;br /&gt;At this point, believe it or not, there is only one more step. This particular step is hard only because you need to make sure you paste the additional code in the right spot, and this next spot can be a hard place to identify (CTRL+F helps here a lot).&lt;br /&gt;&lt;br /&gt;Anyway, in the same " */ Footer " section where you are now working, scroll down a little further until you see:&lt;br /&gt;&lt;br /&gt;&lt;div align="justify"&gt;&lt;div style="BORDER-BOTTOM: #657383 1px solid; BORDER-LEFT: #657383 1px solid; PADDING-BOTTOM: 5px; PADDING-LEFT: 5px; WIDTH: 250px; PADDING-RIGHT: 5px; BORDER-TOP: #657383 1px solid; BORDER-RIGHT: #657383 1px solid; PADDING-TOP: 5px"&gt;&lt;br /&gt;&lt;div align="left"&gt;&lt;span style="color:#000099;"&gt;&amp;lt;div id='header-wrapper'&gt;&lt;/span&gt;&lt;/div&gt;&lt;/div&gt;&lt;/div&gt;&lt;div align="justify"&gt;&lt;br /&gt;Then, locate the the "main wrapper" id a few lines below it. It looks like this:&lt;br /&gt;&lt;br /&gt;&lt;/div&gt;&lt;div align="justify"&gt;&lt;div style="BORDER-BOTTOM: #657383 1px solid; BORDER-LEFT: #657383 1px solid; PADDING-BOTTOM: 5px; PADDING-LEFT: 5px; WIDTH: 400px; PADDING-RIGHT: 5px; BORDER-TOP: #657383 1px solid; BORDER-RIGHT: #657383 1px solid; PADDING-TOP: 5px"&gt;&lt;br /&gt;&lt;div align="left"&gt;&lt;span style="color:#000099;"&gt;&amp;lt;div id='main-wrap1'&gt;&amp;lt;div id='main-wrap2'&gt;&lt;br /&gt;&lt;/span&gt;&lt;/div&gt;&lt;/div&gt;&lt;/div&gt;&lt;div align="justify"&gt;&lt;br /&gt;Now, just above the "main wrapper" id, copy (ctrl c) and paste (ctrl v) the following code EXACTLY as it appears below:&lt;br /&gt;&lt;br /&gt;&lt;/div&gt;&lt;div align="justify"&gt;&lt;div style="BORDER-BOTTOM: #657383 1px solid; BORDER-LEFT: #657383 1px solid; PADDING-BOTTOM: 15px; PADDING-LEFT: 15px; WIDTH: 400px; PADDING-RIGHT: 15px; BORDER-TOP: #657383 1px solid; BORDER-RIGHT: #657383 1px solid; PADDING-TOP: 15px"&gt;&lt;br /&gt;&lt;div align="left"&gt;&lt;span style="color:#ff0000;"&gt;&amp;lt;div id='left-sidebar-wrap'&gt;&lt;br /&gt;&lt;br /&gt;&amp;lt;div id='sidebartop-wrap'&gt;&amp;lt;div id='sidebartop-wrap2'&gt;&lt;br /&gt;&amp;lt;b:section class='sidebar' id='newsidebar' preferred='yes'&gt;&lt;br /&gt;&amp;lt;b:widget id='BloggerButton1' locked='false' title='' type='BloggerButton'/&gt;&lt;br /&gt;&amp;lt;/b:section&gt;&lt;br /&gt;&amp;lt;/div&gt;&amp;lt;/div&gt;&lt;br /&gt;&amp;lt;div id='sidebarbottom-wrap1'&gt;&amp;lt;div id='sidebarbottom-wrap2'&gt;&lt;br /&gt;&amp;lt;b:section class='sidebar' id='newsidebarbottom' preferred='yes'&gt;&lt;br /&gt;&amp;lt;/b:section&gt;&lt;br /&gt;&amp;lt;/div&gt;&amp;lt;/div&gt;&lt;br /&gt;&lt;br /&gt;&amp;lt;/div&gt;&lt;br /&gt;&lt;/div&gt;&lt;/div&gt;&lt;/div&gt;&lt;br /&gt;&lt;/span&gt;&lt;div align="justify"&gt;&lt;br /&gt;Note: this will also insert a Blogger logo into your new left sidebar, but you can customize this however you'd like when you finish by using the Layout tab. For now, there's no need to worry about it; it's just a placeholder. So, after you do that, the newly modified section should now look like this:&lt;br /&gt;&lt;br /&gt;&lt;/div&gt;&lt;div align="left"&gt;&lt;div style="BORDER-BOTTOM: #657383 1px solid; BORDER-LEFT: #657383 1px solid; PADDING-BOTTOM: 15px; PADDING-LEFT: 15px; WIDTH: 400px; PADDING-RIGHT: 15px; BORDER-TOP: #657383 1px solid; BORDER-RIGHT: #657383 1px solid; PADDING-TOP: 15px"&gt;&lt;br /&gt;&lt;div align="left"&gt;&lt;span style="color:#000099;"&gt;&amp;lt;div id='header-wrapper'&gt;&lt;br /&gt;&amp;lt;div id='crosscol-wrapper' style='text-align:center'&gt;&lt;br /&gt;&amp;lt;b:section class='crosscol' id='crosscol' showaddelement='no'/&gt;&lt;br /&gt;&amp;lt;/div&gt;&lt;/span&gt;&lt;span style="color:#ff0000;"&gt;&lt;br /&gt;&lt;br /&gt;&amp;lt;div id='left-sidebar-wrap'&gt;&lt;br /&gt;&lt;br /&gt;&amp;lt;div id='sidebartop-wrap'&gt;&amp;lt;div id='sidebartop-wrap2'&gt;&lt;br /&gt;&amp;lt;b:section class='sidebar' id='newsidebar' preferred='yes'&gt;&lt;br /&gt;&amp;lt;b:widget id='BloggerButton1' locked='false' title='' type='BloggerButton'/&gt;&lt;br /&gt;&amp;lt;/b:section&gt;&lt;br /&gt;&amp;lt;/div&gt;&amp;lt;/div&gt;&lt;br /&gt;&amp;lt;div id='sidebarbottom-wrap1'&gt;&amp;lt;div id='sidebarbottom-wrap2'&gt;&lt;br /&gt;&amp;lt;b:section class='sidebar' id='newsidebarbottom' preferred='yes'&gt;&lt;br /&gt;&amp;lt;/b:section&gt;&lt;br /&gt;&amp;lt;/div&gt;&amp;lt;/div&gt;&lt;br /&gt;&lt;br /&gt;&amp;lt;/div&gt; &lt;/span&gt;&lt;br /&gt;&lt;span style="color:#000099;"&gt;&lt;br /&gt;&amp;lt;div id='main-wrap1'&gt;&amp;lt;div id='main-wrap2'&gt;&lt;br /&gt;&lt;br /&gt;&lt;/span&gt;&lt;br /&gt;&lt;/div&gt;&lt;/div&gt;&lt;/div&gt;&lt;div align="justify"&gt;&lt;br /&gt;&lt;br /&gt;And you are a now master three column Rounders 4 coder, because you're done! Hit preview to see your new three column Rounders 4 layout, and then save the template if everything looks ok. Go into the "Layout" tab and add a google gadget, or a widget, of your choice.&lt;br /&gt;&lt;br /&gt;When you do go into the Layout tab, if you notice that the right hand column has dropped to the bottom of the "Layout" page, it means you need to make a slight adjustment to the layout "wireframe editor", which is easy to do if you made it this far.&lt;br /&gt;&lt;br /&gt;Go back into the html tab, and scroll or CTRL F down to the section that says:&lt;br /&gt;&lt;br /&gt;/** Page structure tweaks for layout editor wireframe */&lt;br /&gt;&lt;br /&gt;Then, replace the code directly under the "/** Page structure tweaks for layout editor wireframe */" line with the following code block:&lt;br /&gt;&lt;span style="color:#ff0000;"&gt;&lt;br /&gt;body#layout #header-wrapper,&lt;br /&gt;body#layout #outer-wrapper,&lt;br /&gt;body#layout #footer-wrap1 {&lt;br /&gt;width:840px;&lt;br /&gt;}&lt;br /&gt;body#layout #main-wrap1 {&lt;br /&gt;width: 485px;margin-right:10px;&lt;br /&gt;}&lt;br /&gt;body#layout #sidebar-wrap,&lt;br /&gt;body#layout #left-sidebar-wrap {&lt;br /&gt;width:150px;&lt;br /&gt;}&lt;br /&gt;&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;The resulting code should look like this:&lt;br /&gt;&lt;br /&gt;&lt;span style="color:#000099;"&gt;/** Page structure tweaks for layout editor wireframe */&lt;/span&gt;&lt;span style="color:#ff0000;"&gt;&lt;br /&gt;body#layout #header-wrapper,&lt;br /&gt;body#layout #outer-wrapper,&lt;br /&gt;body#layout #footer-wrap1 {&lt;br /&gt;width:840px;&lt;br /&gt;}&lt;br /&gt;body#layout #main-wrap1 {&lt;br /&gt;width: 485px;margin-right:10px;&lt;br /&gt;}&lt;br /&gt;body#layout #sidebar-wrap,&lt;br /&gt;body#layout #left-sidebar-wrap {&lt;br /&gt;width:150px;&lt;br /&gt;}&lt;/span&gt;&lt;br /&gt;&lt;span style="color:#000099;"&gt;]]&gt;&amp;lt;b:skin&gt;&lt;br /&gt;&amp;lt;/head&gt;&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;Best of luck with your blogging. I hope this post on creating a new 3 column Rounders 4 template was helpful and that the new images were a big timesaver! &lt;span style="color:#ff0000;"&gt;**Keep in mind that these images are hosted on my free Photobucket account. It would be better for you if you download the images and host them on your own account, that way you have control over the images.**&lt;/span&gt; If you found this helpful, links back to this post on 3 column Rounders are always welcome. Thanks!&lt;/div&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/8198937227131193549-3291450662227459449?l=www.threecolumnblogger.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://www.blogger.com/feeds/8198937227131193549/3291450662227459449/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='https://www.blogger.com/comment.g?blogID=8198937227131193549&amp;postID=3291450662227459449' title='59 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/8198937227131193549/posts/default/3291450662227459449'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/8198937227131193549/posts/default/3291450662227459449'/><link rel='alternate' type='text/html' href='http://www.threecolumnblogger.com/2008/11/3-column-rounders-4.html' title='3 Column Rounders 4'/><author><name>REIT Wrecks</name><email>noreply@blogger.com</email><gd:extendedProperty xmlns:gd='http://schemas.google.com/g/2005' name='OpenSocialUserId' value='00692419550533468334'/></author><thr:total>59</thr:total></entry><entry><id>tag:blogger.com,1999:blog-8198937227131193549.post-1414286403762207556</id><published>2008-11-18T14:23:00.000-08:00</published><updated>2009-12-02T01:18:40.026-08:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='Three Column Minima'/><category scheme='http://www.blogger.com/atom/ns#' term='3 Column Minima Lefty Stretch'/><category scheme='http://www.blogger.com/atom/ns#' term='3 Column Blogs'/><title type='text'>Three Column Minima Lefty Stretch</title><content type='html'>&lt;div align="justify"&gt;This blog is all about adding columns to free blogger templates, and this post is all about adding a third column to Minima Lefty Stretch. If you want a tutorial for a 3 column Minima Lefty Stretch blogger layout, look no further.&lt;br /&gt;&lt;br /&gt;These instructions are simple and easy, and you can do it if you don't know the first thing about HTML (which is perfect, because I don't). &lt;em&gt;&lt;span style="color:#ff0000;"&gt;Update again: thanks for all the great comments. While it's hard to respond to each one individually, I do carefully read them all and have modified the post in order to make it (I hope) a better resource for all. Cheers!&lt;br /&gt;&lt;/span&gt;&lt;/em&gt;&lt;br /&gt;Adding a third column to Minima Lefty Stretch is easy, and these instructions make it even easier. The Minima varietals of Blogger are some of the simplest templates out there, and they are also easy on the eyes. Consequently, there are many, many bloggers who like and use Minima.&lt;br /&gt;&lt;br /&gt;This post is for adding a third column to Minima Lefty Stretch in "Layout Version". To check which version you're using, go into your dashboard and look just to the left of the "View Blog" link on the top left of the page. If the tab there says "Layout", you are using the Layout version of Minima and this post is for you.&lt;br /&gt;&lt;br /&gt;So without further adieu, let's get started. First, open up Blogger and go into your Dashboard, then click on the "Layout" tab. Then go into the "Edit HTML" tab. You will see a bunch of gobbledygook and gobbledygook it shall remain - you don't need to know anything about it. Just scroll down until you see the "Outer-Wrapper" section, it is marked by the following: /* Outer Wrapper. Easy enough, but an even easier way to find it is use your brower's control F (CTRL+F) command. You can just type CTRL F and then type /* Outer-Wrapper into the dialog box and click "next".&lt;br /&gt;&lt;br /&gt;/* Outer-Wrapper&lt;br /&gt;-----------------------------------------------&lt;br /&gt;&lt;br /&gt;Now, change the width of the "main-wrapper" from 67% to 52%, and the float from $endSide to $startSide. Note that the html code "$startSide" is case sensitive, to avoid the problem you can just use "left" for "$startSide" (and you can use "right" for $endSide):&lt;br /&gt;&lt;br /&gt;#main-wrapper {&lt;br /&gt;margin-$endSide: 2%; &lt;span style="color:#ff0000;"&gt;&lt;-------change to $startSide&lt;/span&gt;&lt;br /&gt;width: 67%; &lt;span style="color:#ff0000;"&gt;&lt;-------change to 52%&lt;/span&gt;&lt;br /&gt;float: $endSide; &lt;span style="color:#ff0000;"&gt;&lt;-------change to $startSide&lt;/span&gt;&lt;br /&gt;display: inline; /* fix for doubling margin in IE */&lt;br /&gt;word-wrap: break-word; /* fix for long text breaking sidebar float in IE */&lt;br /&gt;overflow: hidden; /* fix for long non-text content breaking IE sidebar float */&lt;br /&gt;&lt;br /&gt;That piece of code should now look EXACTLY like this:&lt;br /&gt;&lt;br /&gt;&lt;span style="color:#000099;"&gt;#main-wrapper {&lt;br /&gt;margin-&lt;span style="color:#ff0000;"&gt;$startSide&lt;/span&gt;: 2%;&lt;br /&gt;width: &lt;span style="color:#ff0000;"&gt;52&lt;/span&gt;%;&lt;br /&gt;float: &lt;span style="color:#ff0000;"&gt;$startSide&lt;/span&gt;;&lt;br /&gt;display: inline; /* fix for doubling margin in IE */&lt;br /&gt;word-wrap: break-word; /* fix for long text breaking sidebar float in IE */&lt;br /&gt;overflow: hidden; /* fix for long non-text content breaking IE sidebar float */&lt;br /&gt;&lt;br /&gt;&lt;/span&gt;So far so good. Now, take this new block of code (below, in red) and paste it exactly as it appears directly in the space just before the */ Headings section. It's helpful to use "CTRL C" to copy, and then "CTRL V" to paste, if you didn't already know that trick. Regardless of how you cut and paste, you must paste the code directly in that space before the */Headings section and do not accidentally delete any code from the "#sidebar-wrapper" code above, including the "}" character at the very end. To paraphrase Monty Python, every character is sacred!&lt;br /&gt;&lt;br /&gt;&lt;/div&gt;&lt;div align="justify"&gt;&lt;div style="BORDER-BOTTOM: #657383 1px solid; BORDER-LEFT: #657383 1px solid; PADDING-BOTTOM: 15px; PADDING-LEFT: 15px; WIDTH: 400px; PADDING-RIGHT: 15px; BORDER-TOP: #657383 1px solid; BORDER-RIGHT: #657383 1px solid; PADDING-TOP: 15px"&gt;&lt;br /&gt;&lt;span style="color:#ff0000;"&gt;#right-sidebar-wrapper {&lt;br /&gt;margin-$endSide: 2%;&lt;br /&gt;width: 20%;&lt;br /&gt;float: $endSide;&lt;br /&gt;display: inline; /* fix for doubling margin in IE */&lt;br /&gt;word-wrap: break-word; /* fix for long text breaking sidebar float in IE */&lt;br /&gt;overflow: hidden; /* fix for long non-text content breaking IE sidebar float */&lt;br /&gt;}&lt;br /&gt;&lt;/span&gt;&lt;/div&gt;&lt;/div&gt;&lt;div align="justify"&gt;&lt;br /&gt;&lt;br /&gt;The new code block should look exactly like this:&lt;br /&gt;&lt;br /&gt;&lt;/div&gt;&lt;div align="justify"&gt;&lt;div style="BORDER-BOTTOM: #657383 1px solid; BORDER-LEFT: #657383 1px solid; PADDING-BOTTOM: 15px; PADDING-LEFT: 15px; WIDTH: 400px; PADDING-RIGHT: 15px; BORDER-TOP: #657383 1px solid; BORDER-RIGHT: #657383 1px solid; PADDING-TOP: 15px"&gt;&lt;br /&gt;&lt;span style="color:#000099;"&gt;#main-wrapper {&lt;br /&gt;margin-&lt;span style="color:#ff0000;"&gt;$startSide&lt;/span&gt;: 2%;&lt;br /&gt;width: &lt;span style="color:#ff0000;"&gt;52&lt;/span&gt;%;&lt;br /&gt;float: &lt;span style="color:#ff0000;"&gt;$startSide&lt;/span&gt;;&lt;br /&gt;display: inline; /* fix for doubling margin in IE */&lt;br /&gt;word-wrap: break-word; /* fix for long text breaking sidebar float in IE */&lt;br /&gt;overflow: hidden; /* fix for long non-text content breaking IE sidebar float */&lt;br /&gt;}&lt;br /&gt;#sidebar-wrapper {&lt;br /&gt;margin-$startSide: 2%;&lt;br /&gt;width: 20%;&lt;br /&gt;float: $startSide;&lt;br /&gt;display: inline; /* fix for doubling margin in IE */&lt;br /&gt;word-wrap: break-word; /* fix for long text breaking sidebar float in IE */&lt;br /&gt;overflow: hidden; /* fix for long non-text content breaking IE sidebar float */&lt;br /&gt;}&lt;/span&gt;&lt;span style="color:#ff0000;"&gt;&lt;br /&gt;#right-sidebar-wrapper {&lt;br /&gt;margin-$endSide: 2%;&lt;br /&gt;width: 20%;&lt;br /&gt;float: $endSide;&lt;br /&gt;display: inline; /* fix for doubling margin in IE */&lt;br /&gt;word-wrap: break-word; /* fix for long text breaking sidebar float in IE */&lt;br /&gt;overflow: hidden; /* fix for long non-text content breaking IE sidebar float */&lt;br /&gt;}&lt;br /&gt;&lt;/span&gt;&lt;/div&gt;&lt;/div&gt;&lt;div align="justify"&gt;&lt;br /&gt;&lt;br /&gt;At this point, believe it or not, there is only one more step. &lt;em&gt;&lt;span style="color:#ff0000;"&gt;Update: You MUST insert/paste the below new section in the right place: AFTER the main wrapper div. Your code should go sidebar wrapper first, then main wrapper, then right sidebar wrapper. If you are still having trouble, also check to make sure your floats are set correctly. The left sidebar should be set to left or $startSide, the main side bar wrapper should also be set to left or $startSide, and the right sidebar wrapper should be set to right or $endSide.&lt;/span&gt;&lt;/em&gt; This particular step is hard only because you need to make sure you paste the additional code in the right spot, and this next spot can be a hard place to identify (CTRL+F helps here a lot), but you must put in the right spot.&lt;br /&gt;&lt;br /&gt;Anyway, scroll down to the very end of the entire page. Several lines above the very end you will see the following:&lt;br /&gt;&lt;br /&gt;&lt;span style="color:#000099;"&gt;&amp;lt;!-- spacer for skins that want sidebar and main to be the same height--&gt;&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;Now, immediately above the line that says &lt;span style="color:#000099;"&gt;&amp;lt;!-- spacer for skins that want sidebar and main to be the same height--&gt;&lt;/span&gt; and below the end of the "main-wrapper" div section (be careful not to delete any of the code in that section), paste in the following code EXACTLY as it appears below:&lt;br /&gt;&lt;br /&gt;&lt;/div&gt;&lt;div align="justify"&gt;&lt;div style="BORDER-BOTTOM: #657383 1px solid; BORDER-LEFT: #657383 1px solid; PADDING-BOTTOM: 15px; PADDING-LEFT: 15px; WIDTH: 400px; PADDING-RIGHT: 15px; BORDER-TOP: #657383 1px solid; BORDER-RIGHT: #657383 1px solid; PADDING-TOP: 15px"&gt;&lt;br /&gt;&lt;div align="left"&gt;&lt;span style="color:#ff0000;"&gt;&amp;lt;div id='right-sidebar-wrapper'&gt;&lt;br /&gt;&amp;lt;b:section class='sidebar' id='right-sidebar' preferred='yes'&gt;&lt;br /&gt;&amp;lt;b:widget id='Subscribe1' locked='false' title='Subscribe' type='Subscribe'/&gt;&lt;br /&gt;&amp;lt;/b:section&gt;&lt;br /&gt;&amp;lt;/div&gt;&lt;br /&gt;&lt;/span&gt;&lt;/div&gt;&lt;/div&gt;&lt;/div&gt;&lt;div align="justify"&gt;&lt;br /&gt;&lt;br /&gt;Note: this will also insert the RSS feed widget into your new sidebar, but you can customize that however you'd like after you finish adding the new column. &lt;span style="color:#ff0000;"&gt;&lt;em&gt;Update: If you get an error message that says the widget ID should be unique, you have an RSS feed widget already loaded in your original sidebar and you'll need to delete that one temporarily. But don't worry, you can customize your columns however you like once you get them set up&lt;/em&gt;&lt;/span&gt;. If not, there's no need to worry about it. So, after you do that, the newly modified section should now look like this:&lt;br /&gt;&lt;br /&gt;&lt;/div&gt;&lt;div align="justify"&gt;&lt;div style="BORDER-BOTTOM: #657383 1px solid; BORDER-LEFT: #657383 1px solid; PADDING-BOTTOM: 15px; PADDING-LEFT: 15px; WIDTH: 400px; PADDING-RIGHT: 15px; BORDER-TOP: #657383 1px solid; BORDER-RIGHT: #657383 1px solid; PADDING-TOP: 15px"&gt;&lt;br /&gt;&lt;div align="left"&gt;&lt;span style="color:#000099;"&gt;&lt;br /&gt;&amp;lt;div id='main-wrapper'&gt;&lt;br /&gt;&amp;lt;b:section class='main' id='main' showaddelement='no'&gt;&lt;br /&gt;&amp;lt;b:widget id='Blog1' locked='true' title='Blog Posts' type='Blog'/&gt;&lt;br /&gt;&amp;lt;/b:section&gt;&lt;br /&gt;&amp;lt;/div&gt;&lt;/span&gt;&lt;br /&gt;&lt;span style="color:#ff0000;"&gt;&lt;br /&gt;&amp;lt;div id='right-sidebar-wrapper'&gt;&lt;br /&gt;&amp;lt;b:section class='sidebar' id='right-sidebar' preferred='yes'&gt;&lt;br /&gt;&amp;lt;b:widget id='Subscribe1' locked='false' title='Subscribe' type='Subscribe'/&gt;&lt;br /&gt;&amp;lt;/b:section&gt;&lt;br /&gt;&amp;lt;/div&gt;&lt;/span&gt;&lt;br /&gt;&lt;span style="color:#000099;"&gt;&lt;br /&gt;&amp;lt;--spacer for skins that want sidebar and main to be the same height--&gt;&lt;/span&gt;&lt;br /&gt;&lt;/div&gt;&lt;/div&gt;&lt;/div&gt;&lt;div align="justify"&gt;&lt;br /&gt;&lt;br /&gt;And you are a now master Minima Lefty Stretch coder, because you're done! Hit preview to see your new 3 column Minima Lefty Stretch layout, and then save the template. Best of luck with your blogging. I hope your new 3 column Minima Lefty Stretch template helps make your blogging even more fun and enjoyable! &lt;br /&gt;&lt;br /&gt;Best of luck with your blogging. Links to this post are always welcome.  If you would like to create a quick link in one of your posts or on your blogroll but are unsure how to do it, just insert this html string in your post text:&lt;/div&gt;&lt;span style="COLOR: rgb(255,0,0)"&gt;&lt;br /&gt;&amp;lt;/a href="http://www.threecolumnblogger.com/"&gt;Three Column Blogger&amp;lt;/a&gt; &lt;/span&gt;&lt;br /&gt;&lt;br /&gt;It will appear in your post text/blogroll as &lt;a href="http://www.threecolumnblogger.com/"&gt;Three Column Blogger&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;Thanks!!&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/8198937227131193549-1414286403762207556?l=www.threecolumnblogger.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://www.blogger.com/feeds/8198937227131193549/1414286403762207556/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='https://www.blogger.com/comment.g?blogID=8198937227131193549&amp;postID=1414286403762207556' title='85 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/8198937227131193549/posts/default/1414286403762207556'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/8198937227131193549/posts/default/1414286403762207556'/><link rel='alternate' type='text/html' href='http://www.threecolumnblogger.com/2008/11/three-column-minima-lefty-stretch.html' title='Three Column Minima Lefty Stretch'/><author><name>REIT Wrecks</name><email>noreply@blogger.com</email><gd:extendedProperty xmlns:gd='http://schemas.google.com/g/2005' name='OpenSocialUserId' value='00692419550533468334'/></author><thr:total>85</thr:total></entry><entry><id>tag:blogger.com,1999:blog-8198937227131193549.post-7478746186800472949</id><published>2008-10-15T17:42:00.000-07:00</published><updated>2009-06-05T16:17:51.260-07:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='Column Rounders 2'/><category scheme='http://www.blogger.com/atom/ns#' term='Three Column Rounders 2'/><category scheme='http://www.blogger.com/atom/ns#' term='3 Column Blogs'/><title type='text'>3 Column Rounders 2</title><content type='html'>&lt;div align="justify"&gt;This post on 3 column blogs is for the Rounders 2 template. With this tutorial, you can easily turn your Rounders 2 blog into a 3 column blog with just a little time and attention.&lt;br /&gt;&lt;br /&gt;These instructions are simple and easy, and you can do it if you don't know the first thing about HTML (which is perfect because I don't know anything about it either). &lt;span style="color:#ff0000;"&gt;&lt;em&gt;Update:  Some people have had trouble with their header images; note that your header image must be sized properly to fit within the wrapper.  If you have trouble with your image, it may be too big for the wrapper.  If you reduce the size, particularly the height, it should work.  Thanks for all your great comments, I do read them.  &lt;/em&gt;&lt;/span&gt;&lt;span style="color:#000000;"&gt;Thes&lt;/span&gt;e instructions are for those using Blogger's new "Layout" version. I will be adding instructions for the Rounders "Classic" template shortly. Each version of Rounders is slightly different, so if you are not using Rounders 2, look in the right sidebar for the specific version of Rounders that you are using, and click on on that link.&lt;br /&gt;&lt;br /&gt;So let's turn your Rounders 2 template into a 3 column blog! First, open up Blogger and go into your Dashboard, then click on the "Layout" tab. Then go into the "Edit HTML" tab. You will see a bunch of html code - but don't worry you don't need to know anything about it. Just scroll down until you see this:&lt;br /&gt;&lt;br /&gt;/* Page Structure&lt;br /&gt;-----------------------------------------------&lt;br /&gt;(&lt;em&gt;(or, allow me to introduce your browser's control F (CTRL+F) command, you just type CTRL F, then type /* Page Structure in the dialog box and click next)&lt;/em&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;Now, change the width of the "outer-wrapper" from 740 to 990:&lt;br /&gt;&lt;br /&gt;#outer-wrapper {&lt;br /&gt;width:740px;&lt;span style="color:#ff0000;"&gt;&lt;-------change to 990&lt;/span&gt;&lt;br /&gt;margin:0 auto;&lt;br /&gt;text-align:$startSide;&lt;br /&gt;font: $bodyFont;&lt;br /&gt;}&lt;br /&gt;&lt;br /&gt;Next, you'll need to add 12 pixel margins to your main column, so you will make a minor change in the margin line of the "main-wrap":&lt;br /&gt;&lt;/div&gt;&lt;div align="left"&gt;&lt;br /&gt;#main-wrap1 {&lt;br /&gt;width:485px;&lt;br /&gt;float:left;&lt;br /&gt;background:$mainBgColor url("http://www1.blogblog.com/rounders2/corners_main_bot.gif") no-repeat $startSide bottom;&lt;br /&gt;margin:15px 0 0 ;&lt;span style="color:#ff0000;"&gt;&lt;-------change this to "12px 0 0 12px"&lt;/span&gt;&lt;br /&gt;padding:0 0 10px;&lt;br /&gt;color:$mainTextColor;&lt;br /&gt;font-size:97%;&lt;br /&gt;line-height:1.5em;&lt;br /&gt;word-wrap: break-word; /* fix for long text breaking sidebar float in IE */&lt;br /&gt;overflow: hidden; /* fix for long non-text content breaking IE sidebar float */&lt;br /&gt;}&lt;br /&gt;&lt;br /&gt;That piece of code should now look EXACTLY like this:&lt;br /&gt;&lt;br /&gt;&lt;span style="color:#000099;"&gt;#outer-wrapper {&lt;br /&gt;width:&lt;span style="color:#ff0000;"&gt;990&lt;/span&gt;px;&lt;br /&gt;margin:0 auto;&lt;br /&gt;text-align:$startSide;&lt;br /&gt;font: $bodyFont;&lt;br /&gt;}&lt;br /&gt;#main-wrap1 {&lt;br /&gt;width:485px;&lt;br /&gt;float:left;&lt;br /&gt;background:$mainBgColor url("http://www1.blogblog.com/rounders2/corners_main_bot.gif") no-repeat $startSide bottom;&lt;br /&gt;margin:&lt;span style="color:#ff0000;"&gt;12&lt;/span&gt;px 0 0 &lt;span style="color:#ff0000;"&gt;12px&lt;/span&gt;;&lt;br /&gt;padding:0 0 10px;&lt;br /&gt;color:$mainTextColor;&lt;br /&gt;font-size:97%;&lt;br /&gt;line-height:1.5em;&lt;br /&gt;word-wrap: break-word; /* fix for long text breaking sidebar float in IE */&lt;br /&gt;overflow: hidden; /* fix for long non-text content breaking IE sidebar float */&lt;br /&gt;}&lt;br /&gt;&lt;/span&gt;&lt;/div&gt;&lt;div align="justify"&gt;&lt;br /&gt;So far so good. Now, just after the "sidebarwrap" code block in the same section, paste in the following code (you can use "CTRL C" to copy it, and then "CTRL V" to paste it):&lt;br /&gt;&lt;br /&gt;&lt;/div&gt;&lt;div align="justify"&gt;&lt;div style="BORDER-RIGHT: #657383 1px solid; PADDING-RIGHT: 15px; BORDER-TOP: #657383 1px solid; PADDING-LEFT: 15px; PADDING-BOTTOM: 15px; BORDER-LEFT: #657383 1px solid; WIDTH: 455px; PADDING-TOP: 15px; BORDER-BOTTOM: #657383 1px solid"&gt;&lt;br /&gt;&lt;div align="left"&gt;&lt;span style="color:#ff0000;"&gt;&lt;br /&gt;#left-sidebar-wrap {&lt;br /&gt;width:240px;&lt;br /&gt;float:left;&lt;br /&gt;margin:15px 0 0;&lt;br /&gt;font-size:97%;&lt;br /&gt;line-height:1.5em;&lt;br /&gt;word-wrap: break-word; /* fix for long text breaking sidebar float in IE */&lt;br /&gt;overflow: hidden; /* fix for long non-text content breaking IE sidebar float */&lt;br /&gt;}&lt;br /&gt;&lt;br /&gt;#newsidebar h2 {&lt;br /&gt;color: $postTitleColor;&lt;br /&gt;border-bottom: 1px dotted $postTitleColor;&lt;br /&gt;}&lt;br /&gt;#newsidebarbottom h2 {&lt;br /&gt;color: $postTitleColor;&lt;br /&gt;border-bottom: 1px dotted $postTitleColor;&lt;br /&gt;}&lt;br /&gt;&lt;/span&gt;&lt;/div&gt;&lt;/div&gt;&lt;/div&gt;&lt;div align="justify"&gt;&lt;br /&gt;&lt;br /&gt;Now, we need to adjust the header and footer images. The reason why there are so few tutorials on three column rounders modifications is that it requires a little bit of knowledge to expand the rounders header image. This image uploads from Blogger's "blogblog" website, which means you need to not only increase the width of the image, but you also need to find someplace to host the new, expanded image. But don't worry, Three Column Blogger has done all this for you!&lt;br /&gt;&lt;br /&gt;The first thing you need to do is locate the /* Blog Header section, it's one section below where you just pasted the new sidebar code. You will see two urls in the code, one url links to a file that helps create the top rounded part of the header image (corners_cap_top.gif), and the other url links to a file that helps create the bottom rounded portion of the header image (corners_cap_bot.gif). The code looks like this:&lt;br /&gt;&lt;/div&gt;&lt;div align="left"&gt;&lt;br /&gt;#header-wrapper {&lt;br /&gt;background:$titleBgColor url("http://www2.blogblog.com/rounders2/corners_cap_top.gif") no-repeat $startSide top;&lt;br /&gt;margin-top:22px;&lt;br /&gt;margin-$endSide:0;&lt;br /&gt;margin-bottom:0;&lt;br /&gt;margin-$startSide:0;&lt;br /&gt;padding-top:8px;&lt;br /&gt;padding-$endSide:0;&lt;br /&gt;padding-bottom:0;&lt;br /&gt;padding-$startSide:0;&lt;br /&gt;color:$titleTextColor;&lt;br /&gt;}&lt;br /&gt;#header {&lt;br /&gt;background:url("http://www.blogblog.com/rounders2/corners_cap_bot.gif") no-repeat $startSide bottom;&lt;br /&gt;padding:0 15px 8px;&lt;br /&gt;}&lt;br /&gt;&lt;br /&gt;The top header url needs to be replaced with this link:&lt;br /&gt;&lt;br /&gt;&lt;span style="color:#ff0000;"&gt;&lt;br /&gt;http://i454.photobucket.com/albums/qq270/threecolumnblogger/&lt;br /&gt;corners_cap2_top.gif&lt;br /&gt;&lt;/span&gt;&lt;/div&gt;&lt;div align="left"&gt;&lt;br /&gt;and the bottom header url needs to be replaced with this link:&lt;br /&gt;&lt;br /&gt;&lt;span style="color:#ff0000;"&gt;&lt;br /&gt;http://i454.photobucket.com/albums/qq270/threecolumnblogger/&lt;br /&gt;corners_cap2_bot.gif&lt;br /&gt;&lt;br /&gt;&lt;/span&gt;&lt;/div&gt;&lt;div align="left"&gt;&lt;br /&gt;So highlight and use CTRL C to copy the above links (one at a time), and then use CTRL V to paste each new link into the code block. When you do that, the new header code should look like this:&lt;br /&gt;&lt;span style="color:#000099;"&gt;&lt;br /&gt;#header-wrapper {&lt;br /&gt;background:$titleBgColor url("&lt;span style="color:#ff0000;"&gt;&lt;br /&gt;http://i454.photobucket.com/albums/qq270/threecolumnblogger/&lt;br /&gt;corners_cap2_top.gif&lt;/span&gt;")&lt;/span&gt;&lt;/div&gt;&lt;div align="left"&gt;&lt;span style="color:#000099;"&gt;no-repeat $startSide top;&lt;br /&gt;margin-top:22px;&lt;br /&gt;margin-$endSide:0;&lt;br /&gt;margin-bottom:0;&lt;br /&gt;margin-$startSide:0;&lt;br /&gt;padding-top:8px;&lt;br /&gt;padding-$endSide:0;&lt;br /&gt;padding-bottom:0;&lt;br /&gt;padding-$startSide:0;&lt;br /&gt;color:$titleTextColor;&lt;br /&gt;}&lt;br /&gt;#header {&lt;br /&gt;background:url("&lt;span style="color:#ff0000;"&gt;&lt;br /&gt;http://i454.photobucket.com/albums/qq270/threecolumnblogger/&lt;br /&gt;corners_cap2_bot.gif&lt;/span&gt;") &lt;/span&gt;&lt;/div&gt;&lt;div align="left"&gt;&lt;span style="color:#000099;"&gt;no-repeat $startSide bottom;&lt;br /&gt;padding:0 15px 8px;&lt;br /&gt;}&lt;br /&gt;&lt;/div&gt;&lt;/span&gt;&lt;br /&gt;There is also a footer image that needs to be changed, but it's easy because the steps are the exact same as that for the header image, and it involves using the same new links. So scroll down to the /* Footer section and replace the existing links with the new ones. When you finish, the code should look like this:&lt;br /&gt;&lt;span style="color:#000099;"&gt;&lt;div align="left"&gt;&lt;br /&gt;#footer-wrap1 {&lt;br /&gt;clear:both;&lt;br /&gt;margin:0 0 10px;&lt;br /&gt;padding:15px 0 0;&lt;br /&gt;}&lt;br /&gt;#footer-wrap2 {&lt;br /&gt;background:$titleBgColor url("&lt;span style="color:#ff0000;"&gt;&lt;br /&gt;http://i454.photobucket.com/albums/qq270/threecolumnblogger/&lt;br /&gt;corners_cap2_top.gif&lt;/span&gt;") &lt;/div&gt;&lt;div align="left"&gt;no-repeat $startSide top;&lt;br /&gt;color:$titleTextColor;&lt;br /&gt;}&lt;br /&gt;#footer {&lt;br /&gt;background:url("&lt;span style="color:#ff0000;"&gt;&lt;br /&gt;http://i454.photobucket.com/albums/qq270/threecolumnblogger/&lt;br /&gt;corners_cap2_bot.gif&lt;/span&gt;") &lt;/div&gt;&lt;div align="left"&gt;no-repeat $startSide bottom;&lt;br /&gt;padding:8px 15px;&lt;br /&gt;}&lt;br /&gt;#footer hr {display:none;}&lt;br /&gt;#footer p {margin:0;}&lt;br /&gt;#footer a {color:$titleTextColor;}&lt;br /&gt;#footer .widget-content {&lt;br /&gt;margin:0;&lt;br /&gt;}&lt;br /&gt;&lt;/div&gt;&lt;/span&gt;&lt;br /&gt;At this point, believe it or not, there is only one more step. This particular step is hard only because you need to make sure you paste the additional code in the right spot, and this next spot can be a hard place to identify (CTRL+F helps here a lot).&lt;br /&gt;&lt;br /&gt;Anyway, in the same " */ Footer " section where you are now working, scroll down a little further until you see:&lt;br /&gt;&lt;br /&gt;&lt;div align="justify"&gt;&lt;div style="BORDER-RIGHT: #657383 1px solid; PADDING-RIGHT: 5px; BORDER-TOP: #657383 1px solid; PADDING-LEFT: 5px; PADDING-BOTTOM: 5px; BORDER-LEFT: #657383 1px solid; WIDTH: 250px; PADDING-TOP: 5px; BORDER-BOTTOM: #657383 1px solid"&gt;&lt;br /&gt;&lt;div align="left"&gt;&lt;span style="color:#000099;"&gt;&amp;lt;div id='header-wrapper'&gt;&lt;/span&gt;&lt;/div&gt;&lt;/div&gt;&lt;/div&gt;&lt;div align="justify"&gt;&lt;br /&gt;Then, locate the the "main wrapper" id a few lines below it. It looks like this:&lt;br /&gt;&lt;br /&gt;&lt;/div&gt;&lt;div align="justify"&gt;&lt;div style="BORDER-RIGHT: #657383 1px solid; PADDING-RIGHT: 5px; BORDER-TOP: #657383 1px solid; PADDING-LEFT: 5px; PADDING-BOTTOM: 5px; BORDER-LEFT: #657383 1px solid; WIDTH: 400px; PADDING-TOP: 5px; BORDER-BOTTOM: #657383 1px solid"&gt;&lt;br /&gt;&lt;div align="left"&gt;&lt;span style="color:#000099;"&gt;&amp;lt;div id='main-wrap1'&gt;&amp;lt;div id='main-wrap2'&gt;&lt;br /&gt;&lt;/span&gt;&lt;/div&gt;&lt;/div&gt;&lt;/div&gt;&lt;div align="justify"&gt;&lt;br /&gt;Now, just above the "main wrapper" id, copy (ctrl c) and paste (ctrl v) the following code EXACTLY as it appears below:&lt;br /&gt;&lt;br /&gt;&lt;/div&gt;&lt;div align="justify"&gt;&lt;div style="BORDER-RIGHT: #657383 1px solid; PADDING-RIGHT: 15px; BORDER-TOP: #657383 1px solid; PADDING-LEFT: 15px; PADDING-BOTTOM: 15px; BORDER-LEFT: #657383 1px solid; WIDTH: 400px; PADDING-TOP: 15px; BORDER-BOTTOM: #657383 1px solid"&gt;&lt;br /&gt;&lt;div align="left"&gt;&lt;span style="color:#ff0000;"&gt;&amp;lt;div id='left-sidebar-wrap'&gt;&lt;br /&gt;&lt;br /&gt;&amp;lt;div id='sidebartop-wrap'&gt;&amp;lt;div id='sidebartop-wrap2'&gt;&lt;br /&gt;&amp;lt;b:section class='sidebar' id='newsidebar' preferred='yes'&gt;&lt;br /&gt;&amp;lt;b:widget id='BloggerButton1' locked='false' title='' type='BloggerButton'/&gt;&lt;br /&gt;&amp;lt;/b:section&gt;&lt;br /&gt;&amp;lt;/div&gt;&amp;lt;/div&gt;&lt;br /&gt;&amp;lt;div id='sidebarbottom-wrap1'&gt;&amp;lt;div id='sidebarbottom-wrap2'&gt;&lt;br /&gt;&amp;lt;b:section class='sidebar' id='newsidebarbottom' preferred='yes'&gt;&lt;br /&gt;&amp;lt;/b:section&gt;&lt;br /&gt;&amp;lt;/div&gt;&amp;lt;/div&gt;&lt;br /&gt;&lt;br /&gt;&amp;lt;/div&gt;&lt;br /&gt;&lt;br /&gt;&amp;lt;/div&gt;&lt;br /&gt;&lt;/div&gt;&lt;/div&gt;&lt;/div&gt;&lt;br /&gt;&lt;/span&gt;&lt;div align="justify"&gt;&lt;br /&gt;Note: this will also insert a Blogger logo into your new left sidebar, but you can customize this however you'd like when you finish by using the Layout tab. For now, there's no need to worry about it, it's just a placeholder. So, after you do that, the newly modified section should now look like this:&lt;br /&gt;&lt;br /&gt;&lt;/div&gt;&lt;div align="left"&gt;&lt;div style="BORDER-RIGHT: #657383 1px solid; PADDING-RIGHT: 15px; BORDER-TOP: #657383 1px solid; PADDING-LEFT: 15px; PADDING-BOTTOM: 15px; BORDER-LEFT: #657383 1px solid; WIDTH: 400px; PADDING-TOP: 15px; BORDER-BOTTOM: #657383 1px solid"&gt;&lt;br /&gt;&lt;div align="left"&gt;&lt;span style="color:#000099;"&gt;&amp;lt;div id='header-wrapper'&gt;&lt;br /&gt;&amp;lt;div id='crosscol-wrapper' style='text-align:center'&gt;&lt;br /&gt;&amp;lt;b:section class='crosscol' id='crosscol' showaddelement='no'/&gt;&lt;br /&gt;&amp;lt;/div&gt;&lt;/span&gt;&lt;span style="color:#ff0000;"&gt;&lt;br /&gt;&lt;br /&gt;&amp;lt;div id='left-sidebar-wrap'&gt;&lt;br /&gt;&lt;br /&gt;&amp;lt;div id='sidebartop-wrap'&gt;&amp;lt;div id='sidebartop-wrap2'&gt;&lt;br /&gt;&amp;lt;b:section class='sidebar' id='newsidebar' preferred='yes'&gt;&lt;br /&gt;&amp;lt;b:widget id='BloggerButton1' locked='false' title='' type='BloggerButton'/&gt;&lt;br /&gt;&amp;lt;/b:section&gt;&lt;br /&gt;&amp;lt;/div&gt;&amp;lt;/div&gt;&lt;br /&gt;&amp;lt;div id='sidebarbottom-wrap1'&gt;&amp;lt;div id='sidebarbottom-wrap2'&gt;&lt;br /&gt;&amp;lt;b:section class='sidebar' id='newsidebarbottom' preferred='yes'&gt;&lt;br /&gt;&amp;lt;/b:section&gt;&lt;br /&gt;&amp;lt;/div&gt;&amp;lt;/div&gt;&lt;br /&gt;&lt;br /&gt;&amp;lt;/div&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;/span&gt;&lt;br /&gt;&lt;/span&gt;&lt;span style="color:#000099;"&gt;&lt;br /&gt;&amp;lt;div id='main-wrap1'&gt;&amp;lt;div id='main-wrap2'&gt;&lt;br /&gt;&lt;br /&gt;&lt;/span&gt;&lt;br /&gt;&lt;/div&gt;&lt;/div&gt;&lt;/div&gt;&lt;div align="justify"&gt;&lt;br /&gt;&lt;br /&gt;And you are a now master three column Rounders 2 coder, because you're done! Hit preview to see your new three column Rounders 2 layout, and then save the template if everything looks ok. Go into the "Layout" tab and add a google gadget, or a widget, of your choice.&lt;br /&gt;&lt;br /&gt;When you do go into the Layout tab, if you notice that the right hand column has dropped to the bottom of the "Layout" page, it means you need to make a slight adjustment to the layout "wireframe editor", which is easy to do if you made it this far.&lt;br /&gt;&lt;br /&gt;Go back into the html tab, and scroll or CTRL F down to the section that says:&lt;br /&gt;&lt;br /&gt;/** Page structure tweaks for layout editor wireframe */&lt;br /&gt;&lt;br /&gt;Then, replace the code directly under the "/** Page structure tweaks for layout editor wireframe */" line with the following code block:&lt;br /&gt;&lt;span style="color:#ff0000;"&gt;&lt;br /&gt;body#layout #header-wrapper,&lt;br /&gt;body#layout #outer-wrapper,&lt;br /&gt;body#layout #footer-wrap1 {&lt;br /&gt;width:840px;&lt;br /&gt;}&lt;br /&gt;body#layout #main-wrap1 {&lt;br /&gt;width: 485px;margin-right:10px;&lt;br /&gt;}&lt;br /&gt;body#layout #sidebar-wrap,&lt;br /&gt;body#layout #left-sidebar-wrap {&lt;br /&gt;width:150px;&lt;br /&gt;}&lt;br /&gt;&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;The resulting code should look like this:&lt;br /&gt;&lt;br /&gt;&lt;span style="color:#000099;"&gt;/** Page structure tweaks for layout editor wireframe */&lt;/span&gt;&lt;span style="color:#ff0000;"&gt;&lt;br /&gt;body#layout #header-wrapper,&lt;br /&gt;body#layout #outer-wrapper,&lt;br /&gt;body#layout #footer-wrap1 {&lt;br /&gt;width:840px;&lt;br /&gt;}&lt;br /&gt;body#layout #main-wrap1 {&lt;br /&gt;width: 485px;margin-right:10px;&lt;br /&gt;}&lt;br /&gt;body#layout #sidebar-wrap,&lt;br /&gt;body#layout #left-sidebar-wrap {&lt;br /&gt;width:150px;&lt;br /&gt;}&lt;/span&gt;&lt;br /&gt;&lt;span style="color:#000099;"&gt;]]&gt;&amp;lt;/b:skin&gt;&lt;br /&gt;&amp;lt;/head&gt;&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;Best of luck with your blogging. I hope this post on creating a new 3 column Rounders 2 template was helpful and that the new images were a big timesaver! If you found this helpful, links back to this post on 3 column rounders are always welcome. Thanks!&lt;/div&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/8198937227131193549-7478746186800472949?l=www.threecolumnblogger.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://www.blogger.com/feeds/8198937227131193549/7478746186800472949/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='https://www.blogger.com/comment.g?blogID=8198937227131193549&amp;postID=7478746186800472949' title='12 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/8198937227131193549/posts/default/7478746186800472949'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/8198937227131193549/posts/default/7478746186800472949'/><link rel='alternate' type='text/html' href='http://www.threecolumnblogger.com/2008/10/3-column-rounders-2.html' title='3 Column Rounders 2'/><author><name>REIT Wrecks</name><email>noreply@blogger.com</email><gd:extendedProperty xmlns:gd='http://schemas.google.com/g/2005' name='OpenSocialUserId' value='00692419550533468334'/></author><thr:total>12</thr:total></entry><entry><id>tag:blogger.com,1999:blog-8198937227131193549.post-2318906260458782140</id><published>2008-09-27T00:00:00.000-07:00</published><updated>2009-06-06T11:49:33.743-07:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='Three Column Rounders 3'/><category scheme='http://www.blogger.com/atom/ns#' term='3 Column Blogs'/><title type='text'>Three Column Rounders 3</title><content type='html'>&lt;div align="justify"&gt;The Rounders 3 templates is actually one of my favorite templates. It was the first Blogger template I ever used, and I would have kept it had I known how to add a column and turn it into a 3 column blog. There were just no 3 column instructions for this template at all. So I wrote them, and here they are.&lt;br /&gt;&lt;br /&gt;These instructions are simple and easy, and you can do it if you don't know the first thing about HTML (which is perfect because I don't know anything about it either). &lt;span style="color:#ff0000;"&gt;&lt;em&gt;Update (6/5/09): The problems with loading custom header and footer images problem have been fixed! You can now upload almost any custom image to your header, and the header box will expand to fit your image. Thanks for bringing this to my attention! This post is now a better resourse for all.&lt;/em&gt;&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;These instructions are for those using Blogger's new "Layout" version. I will be adding instructions for the Rounders "Classic" template shortly, as well as instructions for Rounders 2 and 4. Each version of Rounders is slightly different, so if you are not using Rounders 3, you should look in the right sidebar for the specific version of Rounders that you are using, and click on on that link.&lt;br /&gt;&lt;br /&gt;So let's turn your Rounders 3 template into a 3 column blog! First, open up Blogger and go into your Dashboard, then click on the "Layout" tab. Then go into the "Edit HTML" tab. You will see a bunch of html code - but don't worry you don't need to know anything about it. Just scroll down until you see this:&lt;br /&gt;&lt;br /&gt;/* Page Structure&lt;br /&gt;-----------------------------------------------&lt;br /&gt;&lt;br /&gt;&lt;em&gt;(Or, allow me to introduce your browser's control F (CTRL+F) command: you just type CTRL F and then type /* Page Structure into the dialog box and click next).&lt;/em&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;Now, change the width of the "outer-wrapper" from 740 to 990:&lt;br /&gt;&lt;br /&gt;#outer-wrapper {&lt;br /&gt;width:740px;&lt;span style="color:#ff0000;"&gt;&lt;-------change to 990&lt;/span&gt;&lt;br /&gt;margin:0 auto;&lt;br /&gt;text-align:$startSide;&lt;br /&gt;font: $bodyFont;&lt;br /&gt;}&lt;br /&gt;&lt;br /&gt;Next, you'll need to add 12 pixel margins to your main column, so you will make a minor change in the margin line of the "main-wrap":&lt;br /&gt;&lt;/div&gt;&lt;div align="left"&gt;&lt;br /&gt;#main-wrap1 {&lt;br /&gt;width:485px;&lt;br /&gt;float:left;&lt;br /&gt;background:$mainBgColor url("http://www1.blogblog.com/rounders3/corners_main_bot.gif") no-repeat $startSide bottom;&lt;br /&gt;margin:15px 0 0 ;&lt;span style="color:#ff0000;"&gt;&lt;-------change this to "12px 0 0 12px"&lt;/span&gt;&lt;br /&gt;padding:0 0 10px;&lt;br /&gt;color:$mainTextColor;&lt;br /&gt;font-size:97%;&lt;br /&gt;line-height:1.5em;&lt;br /&gt;word-wrap: break-word; /* fix for long text breaking sidebar float in IE */&lt;br /&gt;overflow: hidden; /* fix for long non-text content breaking IE sidebar float */&lt;br /&gt;}&lt;br /&gt;&lt;br /&gt;That piece of code should now look EXACTLY like this:&lt;br /&gt;&lt;br /&gt;&lt;span style="color:#000099;"&gt;#outer-wrapper {&lt;br /&gt;width:&lt;span style="color:#ff0000;"&gt;990&lt;/span&gt;px;&lt;br /&gt;margin:0 auto;&lt;br /&gt;text-align:$startSide;&lt;br /&gt;font: $bodyFont;&lt;br /&gt;}&lt;br /&gt;#main-wrap1 {&lt;br /&gt;width:485px;&lt;br /&gt;float:left;&lt;br /&gt;background:$mainBgColor url("http://www1.blogblog.com/rounders3/corners_main_bot.gif") no-repeat $startSide bottom;&lt;br /&gt;margin:&lt;span style="color:#ff0000;"&gt;12&lt;/span&gt;px 0 0 &lt;span style="color:#ff0000;"&gt;12px&lt;/span&gt;;&lt;br /&gt;padding:0 0 10px;&lt;br /&gt;color:$mainTextColor;&lt;br /&gt;font-size:97%;&lt;br /&gt;line-height:1.5em;&lt;br /&gt;word-wrap: break-word; /* fix for long text breaking sidebar float in IE */&lt;br /&gt;overflow: hidden; /* fix for long non-text content breaking IE sidebar float */&lt;br /&gt;}&lt;br /&gt;&lt;/span&gt;&lt;/div&gt;&lt;div align="justify"&gt;&lt;br /&gt;So far so good. Now, just after the "sidebarwrap" code block in the same section, paste in the following code (you can use "CTRL C" to copy it, and then "CTRL V" to paste it):&lt;br /&gt;&lt;br /&gt;&lt;/div&gt;&lt;div align="justify"&gt;&lt;div style="BORDER-RIGHT: #657383 1px solid; PADDING-RIGHT: 15px; BORDER-TOP: #657383 1px solid; PADDING-LEFT: 15px; PADDING-BOTTOM: 15px; BORDER-LEFT: #657383 1px solid; WIDTH: 455px; PADDING-TOP: 15px; BORDER-BOTTOM: #657383 1px solid"&gt;&lt;br /&gt;&lt;div align="left"&gt;&lt;span style="color:#ff0000;"&gt;&lt;br /&gt;#left-sidebar-wrap {&lt;br /&gt;width:240px;&lt;br /&gt;float:left;&lt;br /&gt;margin:15px 0 0;&lt;br /&gt;font-size:97%;&lt;br /&gt;line-height:1.5em;&lt;br /&gt;word-wrap: break-word; /* fix for long text breaking sidebar float in IE */&lt;br /&gt;overflow: hidden; /* fix for long non-text content breaking IE sidebar float */&lt;br /&gt;}&lt;br /&gt;#newsidebar h2 {&lt;br /&gt;color: $postTitleColor;&lt;br /&gt;border-bottom: 1px dotted $postTitleColor;&lt;br /&gt;}&lt;br /&gt;#newsidebarbottom h2 {&lt;br /&gt;color: $postTitleColor;&lt;br /&gt;border-bottom: 1px dotted $postTitleColor;&lt;br /&gt;}&lt;br /&gt;&lt;br /&gt;&lt;/span&gt;&lt;/div&gt;&lt;/div&gt;&lt;/div&gt;&lt;div align="justify"&gt;&lt;br /&gt;&lt;br /&gt;Now, we need to adjust the header and footer images. The reason why there are so few tutorials on three column rounders modifications is that it requires a little bit of knowledge to expand the rounders header image. This image uploads from Blogger's "blogblog" website, which means you need to not only increase the width of the image, but you also need to find someplace to host the new, expanded image. But don't worry, Three Column Blogger has done all this for you!&lt;br /&gt;&lt;br /&gt;The first thing you need to do is locate the /* Blog Header section, it's one section below where you just pasted the new sidebar code. You will see two urls in the code, one url links to a file that helps create the top rounded part of the header image (corners_cap_top.gif), and the other url links to a file that helps create the bottom rounded portion of the header image (corners_cap_bot.gif). The code looks like this:&lt;br /&gt;&lt;/div&gt;&lt;div align="left"&gt;&lt;br /&gt;#header-wrapper {&lt;br /&gt;background:&lt;span style="color:#ff0000;"&gt;$titleBgColor&lt;/span&gt; url("http://www2.blogblog.com/rounders3/corners_cap_top.gif") no-repeat $startSide top;&lt;br /&gt;margin-top:22px;&lt;br /&gt;margin-$endSide:0;&lt;br /&gt;margin-bottom:0;&lt;br /&gt;margin-$startSide:0;&lt;br /&gt;padding-top:8px;&lt;br /&gt;padding-$endSide:0;&lt;br /&gt;padding-bottom:0;&lt;br /&gt;padding-$startSide:0;&lt;br /&gt;color:$titleTextColor;&lt;br /&gt;}&lt;br /&gt;#header {&lt;br /&gt;background:url("http://www.blogblog.com/rounders3/corners_cap_bot.gif") no-repeat $startSide bottom;&lt;br /&gt;padding:0 15px 8px;&lt;br /&gt;}&lt;br /&gt;&lt;br /&gt;Once you've located that code, you need to remove &lt;span style="color:#ff0000;"&gt;$titleBgcolor&lt;/span&gt; from the code. I have highlighted in red above so you can spot it more easily. &lt;/div&gt;&lt;div align="left"&gt;&lt;/div&gt;&lt;div align="left"&gt;Next, The top header url needs to be replaced with this link:&lt;br /&gt;&lt;span style="color:#ff0000;"&gt;&lt;br /&gt;http://i454.photobucket.com/albums/qq270/threecolumnblogger/&lt;br /&gt;new_corners3_cap_top.gif&lt;br /&gt;&lt;/div&gt;&lt;/span&gt;&lt;div align="left"&gt;and the bottom header url needs to be replaced with this link:&lt;br /&gt;&lt;span style="color:#ff0000;"&gt;&lt;br /&gt;http://i454.photobucket.com/albums/qq270/threecolumnblogger/&lt;br /&gt;new_corners3_cap_bot.gif&lt;br /&gt;&lt;/span&gt;&lt;/div&gt;&lt;div align="left"&gt;&lt;br /&gt;So highlight and use CTRL C to copy the above links (one at a time), and then use CTRL V to paste each new link into the code block. When you do that, the new header code should look like this:&lt;br /&gt;&lt;span style="color:#000099;"&gt;&lt;br /&gt;#header-wrapper {&lt;br /&gt;background: url("&lt;span style="color:#ff0000;"&gt;&lt;br /&gt;http://i454.photobucket.com/albums/qq270/threecolumnblogger/&lt;br /&gt;new_corners3_cap_top.gif&lt;/span&gt;")&lt;/span&gt;&lt;/div&gt;&lt;div align="left"&gt;&lt;span style="color:#000099;"&gt;no-repeat $startSide top;&lt;br /&gt;margin-top:22px;&lt;br /&gt;margin-$endSide:0;&lt;br /&gt;margin-bottom:0;&lt;br /&gt;margin-$startSide:0;&lt;br /&gt;padding-top:8px;&lt;br /&gt;padding-$endSide:0;&lt;br /&gt;padding-bottom:0;&lt;br /&gt;padding-$startSide:0;&lt;br /&gt;color:$titleTextColor;&lt;br /&gt;}&lt;br /&gt;#header {&lt;br /&gt;background:url("&lt;span style="color:#ff0000;"&gt;&lt;br /&gt;http://i454.photobucket.com/albums/qq270/threecolumnblogger/&lt;br /&gt;new_corners3_cap_bot.gif&lt;/span&gt;") &lt;/span&gt;&lt;/div&gt;&lt;div align="left"&gt;&lt;span style="color:#000099;"&gt;no-repeat $startSide bottom;&lt;br /&gt;padding:0 15px 8px;&lt;br /&gt;}&lt;br /&gt;&lt;/div&gt;&lt;/span&gt;&lt;br /&gt;There is also a footer image that needs to be changed, but it's easy because the steps are the exact same as that for the header image, and it involves using the same new links. You will also need to remove &lt;span style="color:#ff0000;"&gt;$titleBgcolor&lt;/span&gt; from "#footer wrap2". So scroll down to the /* Footer section and replace the existing links with the new ones. When you finish, the code should look like this:&lt;br /&gt;&lt;span style="color:#000099;"&gt;&lt;div align="left"&gt;&lt;br /&gt;#footer-wrap1 {&lt;br /&gt;clear:both;&lt;br /&gt;margin:0 0 10px;&lt;br /&gt;padding:15px 0 0;&lt;br /&gt;}&lt;br /&gt;#footer-wrap2 {&lt;br /&gt;background: url("&lt;span style="color:#ff0000;"&gt;&lt;br /&gt;http://i454.photobucket.com/albums/qq270/threecolumnblogger/&lt;br /&gt;new_corners3_cap_top.gif&lt;/span&gt;") &lt;/div&gt;&lt;div align="left"&gt;no-repeat $startSide top;&lt;br /&gt;color:$titleTextColor;&lt;br /&gt;}&lt;br /&gt;#footer {&lt;br /&gt;background:url("&lt;span style="color:#ff0000;"&gt;&lt;br /&gt;http://i454.photobucket.com/albums/qq270/threecolumnblogger/&lt;br /&gt;new_corners3_cap_bot.gif&lt;/span&gt;") &lt;/div&gt;&lt;div align="left"&gt;no-repeat $startSide bottom;&lt;br /&gt;padding:8px 15px;&lt;br /&gt;}&lt;br /&gt;#footer hr {display:none;}&lt;br /&gt;#footer p {margin:0;}&lt;br /&gt;#footer a {color:$titleTextColor;}&lt;br /&gt;#footer .widget-content {&lt;br /&gt;margin:0;&lt;br /&gt;}&lt;br /&gt;&lt;/div&gt;&lt;/span&gt;&lt;br /&gt;At this point, believe it or not, there is only one more step. This particular step is hard only because you need to make sure you paste the additional code in the right spot, and this next spot can be a hard place to identify (CTRL+F helps here a lot).&lt;br /&gt;&lt;br /&gt;Anyway, in the same " */ Footer " section where you are now working, scroll down a little further until you see:&lt;br /&gt;&lt;br /&gt;&lt;div align="justify"&gt;&lt;div style="BORDER-RIGHT: #657383 1px solid; PADDING-RIGHT: 5px; BORDER-TOP: #657383 1px solid; PADDING-LEFT: 5px; PADDING-BOTTOM: 5px; BORDER-LEFT: #657383 1px solid; WIDTH: 250px; PADDING-TOP: 5px; BORDER-BOTTOM: #657383 1px solid"&gt;&lt;br /&gt;&lt;div align="left"&gt;&lt;span style="color:#000099;"&gt;&amp;lt;div id='header-wrapper'&gt;&lt;/span&gt;&lt;/div&gt;&lt;/div&gt;&lt;/div&gt;&lt;div align="justify"&gt;&lt;br /&gt;Then, locate the the "main wrapper" id a few lines below it. It looks like this:&lt;br /&gt;&lt;br /&gt;&lt;/div&gt;&lt;div align="justify"&gt;&lt;div style="BORDER-RIGHT: #657383 1px solid; PADDING-RIGHT: 5px; BORDER-TOP: #657383 1px solid; PADDING-LEFT: 5px; PADDING-BOTTOM: 5px; BORDER-LEFT: #657383 1px solid; WIDTH: 400px; PADDING-TOP: 5px; BORDER-BOTTOM: #657383 1px solid"&gt;&lt;br /&gt;&lt;div align="left"&gt;&lt;span style="color:#000099;"&gt;&amp;lt;div id='main-wrap1'&gt;&amp;lt;div id='main-wrap2'&gt;&lt;br /&gt;&lt;/span&gt;&lt;/div&gt;&lt;/div&gt;&lt;/div&gt;&lt;div align="justify"&gt;&lt;br /&gt;Now, just above the "main wrapper" id, copy (ctrl c) and paste (ctrl v) the following code EXACTLY as it appears below:&lt;br /&gt;&lt;br /&gt;&lt;/div&gt;&lt;div align="justify"&gt;&lt;div style="BORDER-RIGHT: #657383 1px solid; PADDING-RIGHT: 15px; BORDER-TOP: #657383 1px solid; PADDING-LEFT: 15px; PADDING-BOTTOM: 15px; BORDER-LEFT: #657383 1px solid; WIDTH: 400px; PADDING-TOP: 15px; BORDER-BOTTOM: #657383 1px solid"&gt;&lt;br /&gt;&lt;div align="left"&gt;&lt;span style="color:#ff0000;"&gt;&amp;lt;div id='left-sidebar-wrap'&gt;&lt;br /&gt;&lt;br /&gt;&amp;lt;div id='sidebartop-wrap'&gt;&amp;lt;div id='sidebartop-wrap2'&gt;&lt;br /&gt;&amp;lt;b:section class='sidebar' id='newsidebar' preferred='yes'&gt;&lt;br /&gt;&amp;lt;b:widget id='BloggerButton1' locked='false' title='' type='BloggerButton'/&gt;&lt;br /&gt;&amp;lt;/b:section&gt;&lt;br /&gt;&amp;lt;/div&gt;&amp;lt;/div&gt;&lt;br /&gt;&amp;lt;div id='sidebarbottom-wrap1'&gt;&amp;lt;div id='sidebarbottom-wrap2'&gt;&lt;br /&gt;&amp;lt;b:section class='sidebar' id='newsidebarbottom' preferred='yes'&gt;&lt;br /&gt;&amp;lt;/b:section&gt;&lt;br /&gt;&amp;lt;/div&gt;&amp;lt;/div&gt;&lt;br /&gt;&lt;br /&gt;&amp;lt;/div&gt;&lt;br /&gt;&lt;/div&gt;&lt;/div&gt;&lt;/div&gt;&lt;br /&gt;&lt;/span&gt;&lt;div align="justify"&gt;&lt;br /&gt;Note: this will also insert a Blogger logo into your new left sidebar, but you can customize this however you'd like when you finish by using the Layout tab. &lt;span style="color:#ff0000;"&gt;(*Note: if, at the end of the tutorial, you save the template, you get a message that says "widget&lt;/span&gt;&lt;span style="color:#ff0000;"&gt; ID should be unique", you already have a blogger button loaded in your original sidebar and you will have to delete that one temporarily. But don't worry, you can customize all of that once you finish.)&lt;/span&gt; For now, there's no need to worry about it. So, after you do that, the newly modified section should now look like this:&lt;br /&gt;&lt;br /&gt;&lt;/div&gt;&lt;div align="justify"&gt;&lt;div style="BORDER-RIGHT: #657383 1px solid; PADDING-RIGHT: 15px; BORDER-TOP: #657383 1px solid; PADDING-LEFT: 15px; PADDING-BOTTOM: 15px; BORDER-LEFT: #657383 1px solid; WIDTH: 400px; PADDING-TOP: 15px; BORDER-BOTTOM: #657383 1px solid"&gt;&lt;br /&gt;&lt;div align="left"&gt;&lt;span style="color:#000099;"&gt;&amp;lt;div id='header-wrapper'&gt;&lt;br /&gt;&amp;lt;div id='crosscol-wrapper' style='text-align:center'&gt;&lt;br /&gt;&amp;lt;b:section class='crosscol' id='crosscol' showaddelement='no'/&gt;&lt;br /&gt;&amp;lt;/div&gt;&lt;/span&gt;&lt;span style="color:#ff0000;"&gt;&lt;br /&gt;&lt;br /&gt;&amp;lt;div id='left-sidebar-wrap'&gt;&lt;br /&gt;&lt;br /&gt;&amp;lt;div id='sidebartop-wrap'&gt;&amp;lt;div id='sidebartop-wrap2'&gt;&lt;br /&gt;&amp;lt;b:section class='sidebar' id='newsidebar' preferred='yes'&gt;&lt;br /&gt;&amp;lt;b:widget id='BloggerButton1' locked='false' title='' type='BloggerButton'/&gt;&lt;br /&gt;&amp;lt;/b:section&gt;&lt;br /&gt;&amp;lt;/div&gt;&amp;lt;/div&gt;&lt;br /&gt;&amp;lt;div id='sidebarbottom-wrap1'&gt;&amp;lt;div id='sidebarbottom-wrap2'&gt;&lt;br /&gt;&amp;lt;b:section class='sidebar' id='newsidebarbottom' preferred='yes'&gt;&lt;br /&gt;&amp;lt;/b:section&gt;&lt;br /&gt;&amp;lt;/div&gt;&amp;lt;/div&gt;&lt;br /&gt;&lt;br /&gt;&amp;lt;/div&gt;&lt;br /&gt;&lt;/span&gt;&lt;/span&gt;&lt;span style="color:#000099;"&gt;&lt;br /&gt;&amp;lt;div id='main-wrap1'&gt;&amp;lt;div id='main-wrap2'&gt;&lt;br /&gt;&lt;br /&gt;&lt;/span&gt;&lt;br /&gt;&lt;/div&gt;&lt;/div&gt;&lt;/div&gt;&lt;div align="justify"&gt;&lt;br /&gt;&lt;br /&gt;And you are a now master three column Rounders 3 coder, because you're done! Hit preview to see your new three column Rounders 3 layout, and then save the template if everything looks ok. Go into the "Layout" tab and add a google gadget, or a widget, of your choice.&lt;br /&gt;&lt;br /&gt;When you do go into the Layout tab, you may notice that the right hand column has dropped to the bottom of the "Layout" page. If this happens, it means you need to make a slight adjustment to the layout "wireframe editor", which is easy to do if you made it this far.&lt;br /&gt;&lt;br /&gt;Go back into the html tab, and scroll or CTRL F down to the section that says:&lt;br /&gt;&lt;br /&gt;/** Page structure tweaks for layout editor wireframe */&lt;br /&gt;&lt;br /&gt;Then, replace the code directly under the "/** Page structure tweaks for layout editor wireframe */" line with the following code block:&lt;br /&gt;&lt;span style="color:#ff0000;"&gt;&lt;br /&gt;body#layout #header-wrapper,&lt;br /&gt;body#layout #outer-wrapper,&lt;br /&gt;body#layout #footer-wrap1 {&lt;br /&gt;width:840px;&lt;br /&gt;}&lt;br /&gt;body#layout #main-wrap1 {&lt;br /&gt;width: 485px;margin-right:10px;&lt;br /&gt;}&lt;br /&gt;body#layout #sidebar-wrap,&lt;br /&gt;body#layout #left-sidebar-wrap {&lt;br /&gt;width:150px;&lt;br /&gt;}&lt;br /&gt;&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;The resulting code should look like this:&lt;br /&gt;&lt;br /&gt;&lt;span style="color:#000099;"&gt;/** Page structure tweaks for layout editor wireframe */&lt;/span&gt;&lt;span style="color:#ff0000;"&gt;&lt;br /&gt;body#layout #header-wrapper,&lt;br /&gt;body#layout #outer-wrapper,&lt;br /&gt;body#layout #footer-wrap1 {&lt;br /&gt;width:840px;&lt;br /&gt;}&lt;br /&gt;body#layout #main-wrap1 {&lt;br /&gt;width: 485px;margin-right:10px;&lt;br /&gt;}&lt;br /&gt;body#layout #sidebar-wrap,&lt;br /&gt;body#layout #left-sidebar-wrap {&lt;br /&gt;width:150px;&lt;br /&gt;}&lt;/span&gt;&lt;br /&gt;&lt;span style="color:#000099;"&gt;]]&gt;&amp;lt;b:skin&gt;&lt;br /&gt;&amp;lt;/head&gt;&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;Best of luck with your blogging. I hope this post on creating a new three column Rounders 3 template was helpful and that the new images were a big timesaver! If you found this helpful, links back to this post on three column rounders are always welcome. Please also note that these header images are hosted on photobucket. Feel free to use them, but it would be safer for you to download them and host them on your own account - that way you have control over the images. Thanks!&lt;/div&gt;&lt;br /&gt;&lt;/span&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/8198937227131193549-2318906260458782140?l=www.threecolumnblogger.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://www.blogger.com/feeds/8198937227131193549/2318906260458782140/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='https://www.blogger.com/comment.g?blogID=8198937227131193549&amp;postID=2318906260458782140' title='54 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/8198937227131193549/posts/default/2318906260458782140'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/8198937227131193549/posts/default/2318906260458782140'/><link rel='alternate' type='text/html' href='http://www.threecolumnblogger.com/2008/09/three-column-rounders-3.html' title='Three Column Rounders 3'/><author><name>REIT Wrecks</name><email>noreply@blogger.com</email><gd:extendedProperty xmlns:gd='http://schemas.google.com/g/2005' name='OpenSocialUserId' value='00692419550533468334'/></author><thr:total>54</thr:total></entry><entry><id>tag:blogger.com,1999:blog-8198937227131193549.post-7449292401299200898</id><published>2008-09-13T12:06:00.000-07:00</published><updated>2009-06-17T15:34:31.235-07:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='Three Column Rounders'/><category scheme='http://www.blogger.com/atom/ns#' term='3 Column Blogs'/><title type='text'>3 Column Rounders</title><content type='html'>&lt;div align="justify"&gt;My first search for three column blogs was inspired by the Rounders template. I loved the Rounders layout, and I wanted a three column version. However, I looked all over the web and was unable to come up with any instructions for making a three column Rounders template. So, I switched over to Minima and learned all about pixels and margins. You, however, do not have to switch, because these instructions for adding a column to your Rounders template will have you up and running with a three column Rounders blog in no time at all.&lt;br /&gt;&lt;br /&gt;These instructions are simple and easy, and you can do it if you don't know the first thing about HTML (which is perfect because I don't know anything about it either). &lt;span style="color:#ff0000;"&gt;&lt;em&gt;Update (6/5/09): The problems with loading custom header and footer images problem have been fixed! You can now upload almost any custom image, and the header box will expand to fit your image. Thanks for bringing this to my attention! This post is now a better resource for all.&lt;/em&gt;&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;These instructions are for those using Blogger's new "Layout" version. I will add instructions for the Rounders "Classic" template shortly, as well as instructions for Rounders 2 and Rounders 4. Each version of Rounders is slightly different, so if you are not using "Rounders", you should look in the right sidebar for the specific version of Rounders that you are using, and click on on that link.&lt;br /&gt;&lt;br /&gt;So let's get started adding a column to your Rounders template. First, open up Blogger and go into your Dashboard, then click on the "Layout" tab. Then go into the "Edit HTML" tab. You will see a bunch of html code - but don't worry you don't need to know anything about it. Just scroll down until you see this:&lt;br /&gt;&lt;br /&gt;/* Page Structure&lt;br /&gt;-----------------------------------------------&lt;br /&gt;&lt;em&gt;(Or, allow me to introduce your browser's control F (CTRL+F) command, you just type CTRL F and then type in /* Page Structure in the dialog box and click next)&lt;/em&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;Now, change the width of the "outer-wrapper" from 740 to 990:&lt;br /&gt;&lt;br /&gt;#outer-wrapper {&lt;br /&gt;width:740px;&lt;span style="color:#ff0000;"&gt;&lt;-------change to 990&lt;/span&gt;&lt;br /&gt;margin:0 auto;&lt;br /&gt;text-align:$startSide;&lt;br /&gt;font: $bodyFont;&lt;br /&gt;}&lt;br /&gt;&lt;br /&gt;Next, you'll need to add 12 pixel margins to your main column, so you will make a minor change in the margin line of the "main-wrap":&lt;br /&gt;&lt;/div&gt;&lt;div align="left"&gt;&lt;br /&gt;#main-wrap1 {&lt;br /&gt;width:485px;&lt;br /&gt;float:left;&lt;br /&gt;background:$mainBgColor url("http://www1.blogblog.com/rounders/corners_main_bot.gif") no-repeat $startSide bottom;&lt;br /&gt;margin:15px 0 0 ;&lt;span style="color:#ff0000;"&gt;&lt;-------change this to "12px 0 0 12px"&lt;/span&gt;&lt;br /&gt;padding:0 0 10px;&lt;br /&gt;color:$mainTextColor;&lt;br /&gt;font-size:97%;&lt;br /&gt;line-height:1.5em;&lt;br /&gt;word-wrap: break-word; /* fix for long text breaking sidebar float in IE */&lt;br /&gt;overflow: hidden; /* fix for long non-text content breaking IE sidebar float */&lt;br /&gt;}&lt;br /&gt;&lt;br /&gt;That piece of code should now look EXACTLY like this:&lt;br /&gt;&lt;br /&gt;&lt;span style="color:#000099;"&gt;#outer-wrapper {&lt;br /&gt;width:&lt;span style="color:#ff0000;"&gt;990&lt;/span&gt;px;&lt;br /&gt;margin:0 auto;&lt;br /&gt;text-align:$startSide;&lt;br /&gt;font: $bodyFont;&lt;br /&gt;}&lt;br /&gt;#main-wrap1 {&lt;br /&gt;width:485px;&lt;br /&gt;float:left;&lt;br /&gt;background:$mainBgColor url("http://www1.blogblog.com/rounders/corners_main_bot.gif") no-repeat $startSide bottom;&lt;br /&gt;margin:&lt;span style="color:#ff0000;"&gt;12&lt;/span&gt;px 0 0 &lt;span style="color:#ff0000;"&gt;12px&lt;/span&gt;;&lt;br /&gt;padding:0 0 10px;&lt;br /&gt;color:$mainTextColor;&lt;br /&gt;font-size:97%;&lt;br /&gt;line-height:1.5em;&lt;br /&gt;word-wrap: break-word; /* fix for long text breaking sidebar float in IE */&lt;br /&gt;overflow: hidden; /* fix for long non-text content breaking IE sidebar float */&lt;br /&gt;}&lt;br /&gt;&lt;/span&gt;&lt;/div&gt;&lt;div align="justify"&gt;&lt;br /&gt;So far so good. Now, just after the "sidebarwrap" code block in the same section, paste in the following code (you can use "CTRL C" to copy it, and then "CTRL V" to paste it):&lt;br /&gt;&lt;br /&gt;&lt;/div&gt;&lt;div align="justify"&gt;&lt;div style="BORDER-RIGHT: #657383 1px solid; PADDING-RIGHT: 15px; BORDER-TOP: #657383 1px solid; PADDING-LEFT: 15px; PADDING-BOTTOM: 15px; BORDER-LEFT: #657383 1px solid; WIDTH: 455px; PADDING-TOP: 15px; BORDER-BOTTOM: #657383 1px solid"&gt;&lt;br /&gt;&lt;div align="left"&gt;&lt;span style="color:#ff0000;"&gt;&lt;br /&gt;#left-sidebar-wrap {&lt;br /&gt;width:240px;&lt;br /&gt;float:left;&lt;br /&gt;margin:15px 0 0;&lt;br /&gt;font-size:97%;&lt;br /&gt;line-height:1.5em;&lt;br /&gt;word-wrap: break-word; /* fix for long text breaking sidebar float in IE */&lt;br /&gt;overflow: hidden; /* fix for long non-text content breaking IE sidebar float */&lt;br /&gt;}&lt;br /&gt;&lt;br /&gt;#newsidebar h2 {&lt;br /&gt;color: $postTitleColor;&lt;br /&gt;border-bottom: 1px dotted $postTitleColor;&lt;br /&gt;}&lt;br /&gt;#newsidebarbottom h2 {&lt;br /&gt;color: $postTitleColor;&lt;br /&gt;border-bottom: 1px dotted $postTitleColor;&lt;br /&gt;}&lt;br /&gt;&lt;br /&gt;&lt;/span&gt;&lt;/div&gt;&lt;/div&gt;&lt;/div&gt;&lt;div align="justify"&gt;&lt;br /&gt;&lt;br /&gt;Now, we need to adjust the header and footer images. The reason why there are so few tutorials on three column rounders modifications is that it requires a little bit of knowledge to expand the rounders header image. This image uploads from Blogger's "blogblog" website, which means you need to not only increase the width of the image, but you also need to find someplace to host the new, expanded image. But don't worry, Three Column Blogger has done all this for you!&lt;br /&gt;&lt;br /&gt;The first thing you need to do is locate the /* Blog Header section, it's one section below where you just pasted the new sidebar code. You will see two urls in the code, one url links to a file that helps create the top rounded part of the header image (corners_cap_top.gif), and the other url links to a file that helps create the bottom rounded portion of the header image (corners_cap_bot.gif). The code looks like this:&lt;br /&gt;&lt;/div&gt;&lt;div align="left"&gt;&lt;br /&gt;#header-wrapper {&lt;br /&gt;background:&lt;span style="color:#ff0000;"&gt;$titleBgColor&lt;/span&gt; url("http://www2.blogblog.com/rounders/corners_cap_top.gif") no-repeat $startSide top;&lt;br /&gt;margin-top:22px;&lt;br /&gt;margin-$endSide:0;&lt;br /&gt;margin-bottom:0;&lt;br /&gt;margin-$startSide:0;&lt;br /&gt;padding-top:8px;&lt;br /&gt;padding-$endSide:0;&lt;br /&gt;padding-bottom:0;&lt;br /&gt;padding-$startSide:0;&lt;br /&gt;color:$titleTextColor;&lt;br /&gt;}&lt;br /&gt;#header {&lt;br /&gt;background:url("http://www.blogblog.com/rounders/corners_cap_bot.gif") no-repeat $startSide bottom;&lt;br /&gt;padding:0 15px 8px;&lt;br /&gt;}&lt;br /&gt;&lt;br /&gt;Once you've located that code, you need to remove &lt;span style="color:#ff0000;"&gt;$titleBgcolor &lt;/span&gt;&lt;span style="color:#000000;"&gt;from the code. I have highlighted in red above so you can spot it more easily.&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;Next, the top header url needs to be replaced with this link:&lt;br /&gt;&lt;span style="color:#ff0000;"&gt;&lt;br /&gt;http://i454.photobucket.com/albums/qq270/threecolumnblogger/&lt;br /&gt;corners_cap_top.gif&lt;br /&gt;&lt;/span&gt;&lt;br /&gt;And the bottom header url needs to be replaced with this link:&lt;br /&gt;&lt;span style="color:#ff0000;"&gt;&lt;br /&gt;http://i454.photobucket.com/albums/qq270/threecolumnblogger/&lt;br /&gt;corners_cap_bot.gif &lt;/span&gt;&lt;/div&gt;&lt;div align="left"&gt;&lt;span style="color:#ff0000;"&gt;&lt;/div&gt;&lt;/span&gt;&lt;div align="left"&gt;&lt;/div&gt;&lt;div align="left"&gt;&lt;/div&gt;&lt;div align="left"&gt; &lt;/div&gt;&lt;div align="left"&gt;&lt;span style="color:#000000;"&gt;&lt;em&gt;&lt;strong&gt;Note, there should be NO break in the above code, it should be all one line with no spaces - I broke it up only for purposes of this tutorial (thanks Crispy!).&lt;/strong&gt;&lt;/em&gt;&lt;/span&gt;  So highlight and use CTRL C to copy the above links (one at a time), and then use CTRL V to paste each new link into the code block. When you do that, the new header code should look like this:&lt;br /&gt;&lt;span style="color:#000099;"&gt;&lt;br /&gt;#header-wrapper {&lt;br /&gt;background: url &lt;/span&gt;&lt;span style="color:#000099;"&gt;("http://i454.photobucket.com/albums/qq270/threecolumnblogger/&lt;br /&gt;corners_cap_top.gif&lt;/span&gt;") no-repeat $startSide top;&lt;br /&gt;margin-top:22px;&lt;br /&gt;margin-$endSide:0;&lt;br /&gt;margin-bottom:0;&lt;br /&gt;margin-$startSide:0;&lt;br /&gt;padding-top:8px;&lt;br /&gt;padding-$endSide:0;&lt;br /&gt;padding-bottom:0;&lt;br /&gt;padding-$startSide:0;&lt;br /&gt;color:$titleTextColor;&lt;br /&gt;}&lt;br /&gt;#header {&lt;br /&gt;background:url("&lt;span style="color:#ff0000;"&gt;http://i454.photobucket.com/albums/qq270/threecolumnblogger/&lt;br /&gt;corners_cap_bot.gif&lt;/span&gt;") no-repeat $startSide bottom;&lt;br /&gt;padding:0 15px 8px;&lt;br /&gt;}&lt;br /&gt;&lt;/div&gt;&lt;/span&gt;&lt;br /&gt;There is also a footer image that needs to be changed, but it's easy because the steps are the exact same as that for the header image, and it involves using the same new links. So scroll down to the /* Footer section and replace the existing links with the new ones. You will also need to remove &lt;span style="color:#cc0000;"&gt;$titleBgcolor&lt;/span&gt; from "#footer wrap 2", right after "background". When you finish, the code should look like this:&lt;br /&gt;&lt;div align="left"&gt;&lt;span style="color:#000099;"&gt;&lt;br /&gt;#footer-wrap1 {&lt;br /&gt;clear:both;&lt;br /&gt;margin:0 0 10px;&lt;br /&gt;padding:15px 0 0;&lt;br /&gt;}&lt;br /&gt;#footer-wrap2 {&lt;br /&gt;background: url("&lt;span style="color:#ff0000;"&gt;http://i454.photobucket.com/albums/qq270/threecolumnblogger/&lt;br /&gt;corners_cap_top.gif&lt;/span&gt;") no-repeat $startSide top;&lt;br /&gt;color:$titleTextColor;&lt;br /&gt;}&lt;br /&gt;#footer {&lt;br /&gt;background:url("&lt;span style="color:#ff0000;"&gt;http://i454.photobucket.com/albums/qq270/threecolumnblogger/&lt;br /&gt;corners_cap_bot.gif&lt;/span&gt;") no-repeat $startSide bottom;&lt;br /&gt;padding:8px 15px;&lt;br /&gt;}&lt;br /&gt;#footer hr {display:none;}&lt;br /&gt;#footer p {margin:0;}&lt;br /&gt;#footer a {color:$titleTextColor;}&lt;br /&gt;#footer .widget-content {&lt;br /&gt;margin:0;&lt;br /&gt;}&lt;br /&gt;&lt;/div&gt;&lt;/span&gt;&lt;br /&gt;At this point, believe it or not, there is only one more step. This particular step is hard only because you need to make sure you paste the additional code in the right spot, and this next spot can be a hard place to identify (CTRL+F helps here a lot).&lt;br /&gt;&lt;br /&gt;Anyway, in the same " */ Footer " section where you are now working, scroll down a little further until you see:&lt;br /&gt;&lt;br /&gt;&lt;div align="justify"&gt;&lt;div style="BORDER-RIGHT: #657383 1px solid; PADDING-RIGHT: 5px; BORDER-TOP: #657383 1px solid; PADDING-LEFT: 5px; PADDING-BOTTOM: 5px; BORDER-LEFT: #657383 1px solid; WIDTH: 250px; PADDING-TOP: 5px; BORDER-BOTTOM: #657383 1px solid"&gt;&lt;br /&gt;&lt;div align="left"&gt;&lt;span style="color:#000099;"&gt;&amp;lt;div id='header-wrapper'&gt;&lt;/span&gt;&lt;/div&gt;&lt;/div&gt;&lt;/div&gt;&lt;div align="justify"&gt;&lt;br /&gt;Then, locate the the "main wrapper" id a few lines below it. It looks like this:&lt;br /&gt;&lt;br /&gt;&lt;/div&gt;&lt;div align="justify"&gt;&lt;div style="BORDER-RIGHT: #657383 1px solid; PADDING-RIGHT: 5px; BORDER-TOP: #657383 1px solid; PADDING-LEFT: 5px; PADDING-BOTTOM: 5px; BORDER-LEFT: #657383 1px solid; WIDTH: 400px; PADDING-TOP: 5px; BORDER-BOTTOM: #657383 1px solid"&gt;&lt;br /&gt;&lt;div align="left"&gt;&lt;span style="color:#000099;"&gt;&amp;lt;div id='main-wrap1'&gt;&amp;lt;div id='main-wrap2'&gt;&lt;br /&gt;&lt;/span&gt;&lt;/div&gt;&lt;/div&gt;&lt;/div&gt;&lt;div align="justify"&gt;&lt;br /&gt;Now, just above the "main wrapper" id, copy (ctrl c) and paste (ctrl v) the following code EXACTLY as it appears below:&lt;br /&gt;&lt;br /&gt;&lt;/div&gt;&lt;div align="justify"&gt;&lt;div style="BORDER-RIGHT: #657383 1px solid; PADDING-RIGHT: 15px; BORDER-TOP: #657383 1px solid; PADDING-LEFT: 15px; PADDING-BOTTOM: 15px; BORDER-LEFT: #657383 1px solid; WIDTH: 400px; PADDING-TOP: 15px; BORDER-BOTTOM: #657383 1px solid"&gt;&lt;br /&gt;&lt;div align="left"&gt;&lt;span style="color:#ff0000;"&gt;&amp;lt;div id='left-sidebar-wrap'&gt;&lt;br /&gt;&lt;br /&gt;&amp;lt;div id='sidebartop-wrap'&gt;&amp;lt;div id='sidebartop-wrap2'&gt;&lt;br /&gt;&amp;lt;b:section class='sidebar' id='newsidebar' preferred='yes'&gt;&lt;br /&gt;&amp;lt;b:widget id='BloggerButton1' locked='false' title='' type='BloggerButton'/&gt;&lt;br /&gt;&amp;lt;/b:section&gt;&lt;br /&gt;&amp;lt;/div&gt;&amp;lt;/div&gt;&lt;br /&gt;&amp;lt;div id='sidebarbottom-wrap1'&gt;&amp;lt;div id='sidebarbottom-wrap2'&gt;&lt;br /&gt;&amp;lt;b:section class='sidebar' id='newsidebarbottom' preferred='yes'&gt;&lt;br /&gt;&amp;lt;/b:section&gt;&lt;br /&gt;&amp;lt;/div&gt;&amp;lt;/div&gt;&lt;br /&gt;&lt;br /&gt;&amp;lt;/div&gt;&lt;br /&gt;&lt;/div&gt;&lt;/div&gt;&lt;/div&gt;&lt;br /&gt;&lt;/span&gt;&lt;div align="justify"&gt;&lt;br /&gt;Note: this will also insert a Blogger logo into your new left sidebar, but you can customize this however you'd like when you finish by using the Layout tab. &lt;span style="color:#ff0000;"&gt;*Note, if at the end of the tutorial when you save the template, you get a message that says "widget ID should be unique", you already have a Blogger logo loaded, and you will have to delete the original one. But don't worry, you can customize all of it when you're finished.&lt;/span&gt; when you If you get a message that For now, there's no need to worry about it, it's just a placeholder. So, after you do that, the newly modified section should now look like this:&lt;br /&gt;&lt;br /&gt;&lt;/div&gt;&lt;br /&gt;&lt;div align="justify"&gt;&lt;div style="BORDER-RIGHT: #657383 1px solid; PADDING-RIGHT: 15px; BORDER-TOP: #657383 1px solid; PADDING-LEFT: 15px; PADDING-BOTTOM: 15px; BORDER-LEFT: #657383 1px solid; WIDTH: 400px; PADDING-TOP: 15px; BORDER-BOTTOM: #657383 1px solid"&gt;&lt;br /&gt;&lt;div align="left"&gt;&lt;span style="color:#000099;"&gt;&amp;lt;div id='header-wrapper'&gt;&lt;br /&gt;&amp;lt;div id='crosscol-wrapper' style='text-align:center'&gt;&lt;br /&gt;&amp;lt;b:section class='crosscol' id='crosscol' showaddelement='no'/&gt;&lt;br /&gt;&amp;lt;/div&gt;&lt;/span&gt;&lt;/span&gt;&lt;br /&gt;&lt;span style="color:#ff0000;"&gt;&lt;br /&gt;&amp;lt;div id='left-sidebar-wrap'&gt;&lt;br /&gt;&amp;lt;div id='sidebartop-wrap'&gt;&amp;lt;div id='sidebartop-wrap2'&gt;&lt;br /&gt;&amp;lt;b:section class='sidebar' id='newsidebar' preferred='yes'&gt;&lt;br /&gt;&amp;lt;b:widget id='BloggerButton1' locked='false' title='' type='BloggerButton'/&gt;&lt;br /&gt;&amp;lt;/b:section&gt;&lt;br /&gt;&amp;lt;/div&gt;&amp;lt;/div&gt;&lt;br /&gt;&amp;lt;div id='sidebarbottom-wrap1'&gt;&amp;lt;div id='sidebarbottom-wrap2'&gt;&lt;br /&gt;&amp;lt;b:section class='sidebar' id='newsidebarbottom' preferred='yes'/&gt;&lt;br /&gt;&amp;lt;/b:section&gt;&lt;br /&gt;&amp;lt;/div&gt;&amp;lt;/div&gt;&lt;br /&gt;&lt;br /&gt;&amp;lt;/div&gt;&lt;br /&gt;&lt;br /&gt;&lt;/span&gt;&lt;br /&gt;&lt;span style="color:#000099;"&gt;&amp;lt;div id='main-wrap1'&gt;&amp;lt;div id='main-wrap2'&gt;&lt;br /&gt;&lt;br /&gt;&lt;/span&gt;&lt;br /&gt;&lt;/div&gt;&lt;/div&gt;&lt;/div&gt;&lt;br /&gt;&lt;div align="justify"&gt;&lt;br /&gt;And you are a now master three column Rounders coder, because you're done! Hit preview to see your new three column Blogger layout, and then save the template if everything looks ok. Go into the "Layout" tab and add a google gadget, or a widget, of your choice.&lt;br /&gt;&lt;br /&gt;If you do go into the Layout tab and notice that the right hand column has dropped to the bottom of the "Layout" page, it means you need to make a slight adjustment to the layout "wireframe editor", which is easy to do if you made it this far.&lt;br /&gt;&lt;br /&gt;Go back into the html tab, and scroll or CTRL F down to the section that says:&lt;br /&gt;&lt;br /&gt;&lt;span style="color:#000099;"&gt;/** Page structure tweaks for layout editor wireframe */&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;Then, replace the code directly under the "/** Page structure tweaks for layout editor wireframe */" line with the following code block:&lt;br /&gt;&lt;span style="color:#ff0000;"&gt;&lt;br /&gt;body#layout #header-wrapper,&lt;br /&gt;body#layout #outer-wrapper,&lt;br /&gt;body#layout #footer-wrap1 {&lt;br /&gt;width:840px;&lt;br /&gt;}&lt;br /&gt;body#layout #main-wrap1 {&lt;br /&gt;width: 485px;margin-right:10px;&lt;br /&gt;}&lt;br /&gt;body#layout #sidebar-wrap,&lt;br /&gt;body#layout #left-sidebar-wrap {&lt;br /&gt;width:150px;&lt;br /&gt;}&lt;br /&gt;&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;The resulting code should look like this:&lt;br /&gt;&lt;br /&gt;&lt;span style="color:#000099;"&gt;/** Page structure tweaks for layout editor wireframe */&lt;/span&gt;&lt;span style="color:#ff0000;"&gt;&lt;br /&gt;body#layout #header-wrapper,&lt;br /&gt;body#layout #outer-wrapper,&lt;br /&gt;body#layout #footer-wrap1 {&lt;br /&gt;width:840px;&lt;br /&gt;}&lt;br /&gt;body#layout #main-wrap1 {&lt;br /&gt;width: 485px;margin-right:10px;&lt;br /&gt;}&lt;br /&gt;body#layout #sidebar-wrap,&lt;br /&gt;body#layout #left-sidebar-wrap {&lt;br /&gt;width:150px;&lt;br /&gt;}&lt;/span&gt;&lt;br /&gt;&lt;span style="color:#000099;"&gt;]]&gt;&amp;lt;/b:skin&gt;&lt;br /&gt;&amp;lt;/head&gt;&lt;/span&gt;&lt;br /&gt;&lt;/div&gt;&lt;div align="justify"&gt;Best of luck with your blogging. I hope this post on creating a new three column Rounders template was helpful and that the new images were a big timesaver! If you found this helpful, links back to this post on three column rounders are always welcome. &lt;span style="color:#ff0000;"&gt;Please also note that these custom header images are hosted on photobucket - it would be safer for you to download them and host them on your own account - that way you have control over the images.&lt;/span&gt; Thanks!&lt;/div&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/8198937227131193549-7449292401299200898?l=www.threecolumnblogger.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://www.blogger.com/feeds/8198937227131193549/7449292401299200898/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='https://www.blogger.com/comment.g?blogID=8198937227131193549&amp;postID=7449292401299200898' title='50 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/8198937227131193549/posts/default/7449292401299200898'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/8198937227131193549/posts/default/7449292401299200898'/><link rel='alternate' type='text/html' href='http://www.threecolumnblogger.com/2008/09/three-column-rounders.html' title='3 Column Rounders'/><author><name>REIT Wrecks</name><email>noreply@blogger.com</email><gd:extendedProperty xmlns:gd='http://schemas.google.com/g/2005' name='OpenSocialUserId' value='00692419550533468334'/></author><thr:total>50</thr:total></entry><entry><id>tag:blogger.com,1999:blog-8198937227131193549.post-4183924133245415924</id><published>2008-09-09T12:10:00.000-07:00</published><updated>2008-11-19T17:21:16.156-08:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='Three Column Denim'/><title type='text'>Adjusting Margins For Three Column Denim Templates</title><content type='html'>&lt;div align="justify"&gt;In the earlier related post, we &lt;a href="http://www.threecolumnblogger.com/2008/09/three-column-denim.html"&gt;showed you how to make a three column Denim layout&lt;/a&gt;. In this post, we will show you how to adjust margins and columns widths in your new three column Denim template.&lt;br /&gt;&lt;br /&gt;One of the first things you may notice about your new three column Denim blog is that there is no margin on the left-hand side of the left sidebar. This is easy to fix, and we posted these instructions separately so you could gain confidence in adjusting margins and also column widths. This way, you can completely customize the look of your new three column layout to almost any desire completely on your own.&lt;br /&gt;&lt;br /&gt;First, however, a word about pixels and screen width. In our three column tutorial, you widened the width of the main page from 720 pixels to 940 pixels. This was to make room for the third column. 940 is a safe width which will allow almost all users to easily view your blog pages on existing monitors (on another blog of mine, fewer than 5% of viewers use the old 800x600 screen resolution). We also used side-bar widths of 192 and a main column width of 500. In addition, there are also (4) 14px margins built in to the template, and in the three column tutorial we left those the way they were.&lt;br /&gt;&lt;br /&gt;In this tutorial, we are going to move those margins around a little, and also explain how column widths and margins can be customized to your liking.&lt;br /&gt;&lt;br /&gt;First, about that left-hand column margin: we should to fix it. Right now, your left sidebar code should look like this:&lt;br /&gt;&lt;br /&gt;#left-sidebar-wrapper {&lt;br /&gt;margin-$endSide: 14px;&lt;br /&gt;width: 192px;&lt;br /&gt;float: $startSide;&lt;br /&gt;background-color: $mainBgColor;&lt;br /&gt;display: inline; /* fix for doubling margin in IE */&lt;br /&gt;word-wrap: break-word; /* fix for long text breaking sidebar float in IE */&lt;br /&gt;overflow: hidden; /* fix for long non-text content breaking IE sidebar float */&lt;br /&gt;}&lt;br /&gt;&lt;br /&gt;The second line shows the margin settings, which call for 14 pixels on the "end side" or right hand side of the left sidebar.  Since the margin settings on the main column already have 14 pixels on the left hand side, this means we now have a 28 pixel margin between the left sidebar and the main column.   These doubled up margins are what makes the columns look unbalanced.  Consequently, we should change the sidebar margin so that the 14 pixels are on the left-hand side, or start side, of the sidebar instead of the right side. That's easy. Just change "$endside" to "$startside", like this (remember to edit carefully; there is an "s" in $startside):&lt;br /&gt;&lt;br /&gt;#left-sidebar-wrapper {&lt;br /&gt;margin-$endSide: 14px;&lt;span style="color:#ff0000;"&gt;&lt;-------change $endSide to $startside&lt;/span&gt;&lt;br /&gt;width: 192px;&lt;br /&gt;float: $startSide;&lt;br /&gt;background-color: $mainBgColor;&lt;br /&gt;display: inline; /* fix for doubling margin in IE */&lt;br /&gt;word-wrap: break-word; /* fix for long text breaking sidebar float in IE */&lt;br /&gt;overflow: hidden; /* fix for long non-text content breaking IE sidebar float */&lt;br /&gt;}&lt;br /&gt;&lt;br /&gt;Hit preview, and if everything looks good, save the changes and republish. You should now have equal 14 pixel margins on the left and right hand edges of your blog, and equal 14 pixel margins in between the main column and the left and right sidebars. Everything is now balanced.&lt;br /&gt;&lt;br /&gt;If you want to changes the widths of your columns, that's easy too, but you must keep in mind that the the column widths plus all the margins must all add up to your main page width. Right now, your main page width is 940 pixels, into which you fit one main column that is 500 pixels wide, two sidebars that are 192 pixels wide each, and fours margins that are collectively 56 pixels wide (4x14). Not coincidentally, the three columns and all the margins also add up to 940 (500+192+192+56=940).&lt;br /&gt;&lt;br /&gt;Accordingly, you must maintain this relationship if you adjust your column widths. For example, if you want to increase the width of your two sidebars by 8 pixels each, you'll need to increase the width of your main page by 16 (2x8) pixels, such that the new main page width is 956. Conversely, you could also reduce all the margins by 4 pixels each, such that they are all 10 pixels apiece instead of 14, and the overall page width can remain at 940 pixels.&lt;br /&gt;&lt;br /&gt;The possibilities for customization are almost endless, so long as all your columns and margins do not exceed the main page width. If they do, the right hand column will usually drop down to the bottom of the page. If you decide to increase your main page width to accommodate larger columns, be careful not to increase it too much. Anything larger than 1028 pixels will cause trouble for viewers with older monitors (which have smaller screen resolutions). They will have to scroll left and right, back and forth, to read the content of your blog, and that will reduce readability.&lt;br /&gt;&lt;br /&gt;I hope this tutorial on adjusting your three column Denim margins was helpful. Most of all, I hope you enjoy your slick new three column Denim layout!&lt;/div&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/8198937227131193549-4183924133245415924?l=www.threecolumnblogger.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://www.blogger.com/feeds/8198937227131193549/4183924133245415924/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='https://www.blogger.com/comment.g?blogID=8198937227131193549&amp;postID=4183924133245415924' title='12 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/8198937227131193549/posts/default/4183924133245415924'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/8198937227131193549/posts/default/4183924133245415924'/><link rel='alternate' type='text/html' href='http://www.threecolumnblogger.com/2008/09/adjusting-margins-for-three-column_09.html' title='Adjusting Margins For Three Column Denim Templates'/><author><name>REIT Wrecks</name><email>noreply@blogger.com</email><gd:extendedProperty xmlns:gd='http://schemas.google.com/g/2005' name='OpenSocialUserId' value='00692419550533468334'/></author><thr:total>12</thr:total></entry><entry><id>tag:blogger.com,1999:blog-8198937227131193549.post-3362554594224774184</id><published>2008-09-08T11:08:00.000-07:00</published><updated>2009-12-02T01:17:08.985-08:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='Three Column Denim'/><category scheme='http://www.blogger.com/atom/ns#' term='3 Column Blogs'/><title type='text'>Three Column Denim</title><content type='html'>&lt;div align="justify"&gt;These instructions for adding a third column to Denim will have you up and running with a three column Denim template in no time at all. Adding a third column to Denim is pretty straightforward, especially if you follow these easy instructions. Denim is a popular Blogger template, and it's also pretty easy to convert into a three column layout.&lt;br /&gt;&lt;br /&gt;These instructions are simple and easy, and you can do it if you don't know the first thing about HTML.&lt;br /&gt;&lt;br /&gt;First, open up Blogger and go into your Dashboard, then click on the "Layout" tab. Then go into the "Edit HTML" tab. You will see a bunch of gobbledygook and gobbledygook it shall remain - you don't need to know anything about it. Just scroll down (or, allow me to introduce your browser's control F (CTRL+F) command, you can just type in /* Header and click next) until you see this:&lt;br /&gt;&lt;br /&gt;/* Header&lt;br /&gt;-----------------------------------------------&lt;br /&gt;&lt;br /&gt;Now, change the width of the "header" from 760 to 940:&lt;br /&gt;&lt;br /&gt;#header {&lt;br /&gt;width:760px; &lt;span style="color:#ff0000;"&gt;&lt;-------change to 940&lt;/span&gt;&lt;br /&gt;margin: 0 auto;&lt;br /&gt;background-color: $headerBgColor;&lt;br /&gt;border: 1px solid $headerBgColor;&lt;br /&gt;color: $headerTextColor;&lt;br /&gt;padding: 0;&lt;br /&gt;font: $headerFont;&lt;br /&gt;}&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;That piece of code should now look EXACTLY like this:&lt;br /&gt;&lt;br /&gt;&lt;span style="color:#000099;"&gt;#header {&lt;br /&gt;width:&lt;span style="color:#ff0000;"&gt;940&lt;/span&gt;px;&lt;br /&gt;margin: 0 auto;&lt;br /&gt;background-color: $headerBgColor;&lt;br /&gt;border: 1px solid $headerBgColor;&lt;br /&gt;color: $headerTextColor;&lt;br /&gt;padding: 0;&lt;br /&gt;font: $headerFont;&lt;br /&gt;}&lt;br /&gt;&lt;/span&gt;&lt;br /&gt;So far so good. Next, scroll down (or use CTRL+F) to where it says:&lt;br /&gt;&lt;br /&gt;/* Content&lt;br /&gt;----------------------------------------------- */&lt;br /&gt;&lt;br /&gt;Now, just like you did in the "header" above, change the "content-wrapper" width from 760 to 940, (2) change the "main-wrapper" width from 464 to 500, and (3) change the width of the "sidebar-wrapper" from 240 to 192:&lt;br /&gt;&lt;br /&gt;#content-wrapper {&lt;br /&gt;width: 760px; &lt;span style="color:#ff0000;"&gt;&lt;-------change to 940&lt;/span&gt;&lt;br /&gt;margin: 0 auto;&lt;br /&gt;padding: 0 0 15px;&lt;br /&gt;text-align: $startSide;&lt;br /&gt;background-color: $mainBgColor;&lt;br /&gt;border: 1px solid $borderColor;&lt;br /&gt;border-top: 0;&lt;br /&gt;}&lt;br /&gt;&lt;br /&gt;#main-wrapper {&lt;br /&gt;margin-$startSide: 14px;&lt;br /&gt;width: 464px; &lt;span style="color:#ff0000;"&gt;&lt;-------change to 500&lt;/span&gt;&lt;br /&gt;float: $startSide;&lt;br /&gt;background-color: $mainBgColor;&lt;br /&gt;display: inline; /* fix for doubling margin in IE */&lt;br /&gt;word-wrap: break-word; /* fix for long text breaking sidebar float in IE */&lt;br /&gt;overflow: hidden; /* fix for long non-text content breaking IE sidebar float */&lt;br /&gt;}&lt;br /&gt;&lt;br /&gt;#sidebar-wrapper {&lt;br /&gt;margin-$endSide: 14px;&lt;br /&gt;width: 240px; &lt;span style="color:#ff0000;"&gt;&lt;-------change to 192&lt;/span&gt;&lt;br /&gt;float: $startSide;&lt;br /&gt;background-color: $mainBgColor;&lt;br /&gt;display: inline; /* fix for doubling margin in IE */&lt;br /&gt;word-wrap: break-word; /* fix for long text breaking sidebar float in IE */&lt;br /&gt;overflow: hidden; /* fix for long non-text content breaking IE sidebar float */&lt;br /&gt;}&lt;br /&gt;&lt;br /&gt;Next, take this new block of code (in red) and paste it in exactly as it appears directly in between the "content-wrapper" code and "main-wrapper" code. It's helpful to use "CTRL C" to copy, and then "CTRL V" to paste, if you didn't already know that trick.  Regardless of how you do it, you must paste it in between these two code blocks, nowhere else.&lt;br /&gt;&lt;br /&gt;&lt;div style="BORDER-RIGHT: #657383 1px solid; PADDING-RIGHT: 15px; BORDER-TOP: #657383 1px solid; PADDING-LEFT: 15px; PADDING-BOTTOM: 15px; BORDER-LEFT: #657383 1px solid; WIDTH: 400px; PADDING-TOP: 15px; BORDER-BOTTOM: #657383 1px solid"&gt;&lt;br /&gt;&lt;span style="color:#ff0000;"&gt;#left-sidebar-wrapper {&lt;br /&gt;margin-$endSide: 14px;&lt;br /&gt;width: 192px;&lt;br /&gt;float: $startSide;&lt;br /&gt;background-color: $mainBgColor;&lt;br /&gt;display: inline; /* fix for doubling margin in IE */&lt;br /&gt;word-wrap: break-word; /* fix for long text breaking sidebar float in IE */&lt;br /&gt;overflow: hidden; /* fix for long non-text content breaking IE sidebar float */&lt;br /&gt;}&lt;br /&gt;&lt;/span&gt;&lt;/div&gt;&lt;br /&gt;The new code block should look exactly like this:&lt;br /&gt;&lt;br /&gt;&lt;div style="BORDER-RIGHT: #657383 1px solid; PADDING-RIGHT: 15px; BORDER-TOP: #657383 1px solid; PADDING-LEFT: 15px; PADDING-BOTTOM: 15px; BORDER-LEFT: #657383 1px solid; WIDTH: 400px; PADDING-TOP: 15px; BORDER-BOTTOM: #657383 1px solid"&gt;&lt;br /&gt;&lt;span style="color:#000099;"&gt;#content-wrapper {&lt;br /&gt;margin-$endSide: 14px;&lt;br /&gt;width: &lt;/span&gt;&lt;span style="color:#ff0000;"&gt;940&lt;/span&gt;&lt;span style="color:#000099;"&gt;px;&lt;br /&gt;float: $startSide;&lt;br /&gt;background-color: $mainBgColor;&lt;br /&gt;display: inline; /* fix for doubling margin in IE */&lt;br /&gt;word-wrap: break-word; /* fix for long text breaking sidebar float in IE */&lt;br /&gt;overflow: hidden; /* fix for long non-text content breaking IE sidebar float */&lt;br /&gt;}&lt;br /&gt;&lt;/span&gt;&lt;span style="color:#ff0000;"&gt;&lt;br /&gt;#left-sidebar-wrapper {&lt;br /&gt;margin-$endSide: 14px;&lt;br /&gt;width: 192px;&lt;br /&gt;float: $startSide;&lt;br /&gt;background-color: $mainBgColor;&lt;br /&gt;display: inline; /* fix for doubling margin in IE */&lt;br /&gt;word-wrap: break-word; /* fix for long text breaking sidebar float in IE */&lt;br /&gt;overflow: hidden; /* fix for long non-text content breaking IE sidebar float */&lt;br /&gt;}&lt;br /&gt;&lt;/span&gt;&lt;span style="color:#000099;"&gt;&lt;br /&gt;#main-wrapper {&lt;br /&gt;margin-$startSide: 14px;&lt;br /&gt;width: &lt;/span&gt;&lt;span style="color:#ff0000;"&gt;500&lt;/span&gt;&lt;span style="color:#000099;"&gt;px;&lt;br /&gt;float: $startSide;&lt;br /&gt;background-color: $mainBgColor;&lt;br /&gt;display: inline; /* fix for doubling margin in IE */&lt;br /&gt;word-wrap: break-word; /* fix for long text breaking sidebar float in IE */&lt;br /&gt;overflow: hidden; /* fix for long non-text content breaking IE sidebar float */&lt;br /&gt;}&lt;br /&gt;&lt;br /&gt;#sidebar-wrapper {&lt;br /&gt;margin-$endSide: 14px;&lt;br /&gt;width: &lt;/span&gt;&lt;span style="color:#ff0000;"&gt;192&lt;/span&gt;&lt;span style="color:#000099;"&gt;px;&lt;br /&gt;float: $startSide;&lt;br /&gt;background-color: $mainBgColor;&lt;br /&gt;display: inline; /* fix for doubling margin in IE */&lt;br /&gt;word-wrap: break-word; /* fix for long text breaking sidebar float in IE */&lt;br /&gt;overflow: hidden; /* fix for long non-text content breaking IE sidebar float */&lt;br /&gt;}&lt;br /&gt;&lt;/span&gt;&lt;/div&gt;&lt;br /&gt;At this point, believe it or not, there is only one more step. This particular step is hard only because you need to make sure you paste the additional code in the right spot, and this next spot can be a hard place to identify (CTRL+F helps here a lot).&lt;br /&gt;&lt;br /&gt;Anyway, scroll down (or use control F) to the " */ Footer " section, and the scroll a little further until you see:&lt;br /&gt;&lt;br /&gt;&lt;div style="BORDER-RIGHT: #657383 1px solid; PADDING-RIGHT: 5px; BORDER-TOP: #657383 1px solid; PADDING-LEFT: 5px; PADDING-BOTTOM: 5px; BORDER-LEFT: #657383 1px solid; WIDTH: 250px; PADDING-TOP: 5px; BORDER-BOTTOM: #657383 1px solid"&gt;&lt;br /&gt;&lt;div align="left"&gt;&lt;span style="color:#000099;"&gt;&amp;lt;div id='content-wrapper'&gt;&lt;/span&gt;&lt;/div&gt;&lt;/div&gt;&lt;br /&gt;Then, locate the the "main wrapper" id a few lines below it. It looks like this:&lt;br /&gt;&lt;br /&gt;&lt;div style="BORDER-RIGHT: #657383 1px solid; PADDING-RIGHT: 5px; BORDER-TOP: #657383 1px solid; PADDING-LEFT: 5px; PADDING-BOTTOM: 5px; BORDER-LEFT: #657383 1px solid; WIDTH: 250px; PADDING-TOP: 5px; BORDER-BOTTOM: #657383 1px solid"&gt;&lt;br /&gt;&lt;div align="left"&gt;&lt;span style="color:#000099;"&gt;&amp;lt;div id='main-wrapper'&gt;&lt;br /&gt;&lt;/span&gt;&lt;/div&gt;&lt;/div&gt;&lt;br /&gt;Now, just above the "main wrapper" id, paste in the following code EXACTLY as it appears:&lt;br /&gt;&lt;br /&gt;&lt;div style="BORDER-RIGHT: #657383 1px solid; PADDING-RIGHT: 15px; BORDER-TOP: #657383 1px solid; PADDING-LEFT: 15px; PADDING-BOTTOM: 15px; BORDER-LEFT: #657383 1px solid; WIDTH: 400px; PADDING-TOP: 15px; BORDER-BOTTOM: #657383 1px solid"&gt;&lt;br /&gt;&lt;div align="left"&gt;&lt;span style="color:#ff0000;"&gt;&amp;lt;div id='left-sidebar-wrapper'&gt;&lt;br /&gt;&amp;lt;b:section class='sidebar' id='left-sidebar' preferred='yes'&gt;&lt;br /&gt;&amp;lt;b:widget id='Subscribe1' locked='false' title='Subscribe' type='Subscribe'/&gt;&lt;br /&gt;&amp;lt;/b:section&gt;&lt;br /&gt;&amp;lt;/div&gt;&lt;br /&gt;&lt;/span&gt;&lt;/div&gt;&lt;/div&gt;&lt;br /&gt;Note: this will also insert the RSS feed widget into your sidebar, but you can customize that however you'd like when you finish using the Layout tab. For now, there's no need to worry about it. So, after you do that, the newly modified section should now look like this:&lt;br /&gt;&lt;br /&gt;&lt;div style="BORDER-RIGHT: #657383 1px solid; PADDING-RIGHT: 15px; BORDER-TOP: #657383 1px solid; PADDING-LEFT: 15px; PADDING-BOTTOM: 15px; BORDER-LEFT: #657383 1px solid; WIDTH: 400px; PADDING-TOP: 15px; BORDER-BOTTOM: #657383 1px solid"&gt;&lt;br /&gt;&lt;div align="left"&gt;&lt;span style="color:#000099;"&gt;&amp;lt;div id='content-wrapper'&gt;&lt;br /&gt;&lt;br /&gt;&amp;lt;div id='crosscol-wrapper' style='text-align:center'&gt;&lt;br /&gt;&amp;lt;b:section class='crosscol' id='crosscol' showaddelement='no'/&gt;&lt;br /&gt;&amp;lt;/div&gt;&lt;/span&gt;&lt;span style="color:#ff0000;"&gt;&lt;br /&gt;&amp;lt;div id='left-sidebar-wrapper'&gt;&lt;br /&gt;&amp;lt;b:section class='sidebar' id='left-sidebar' preferred='yes'&gt;&lt;br /&gt;&amp;lt;b:widget id='Subscribe1' locked='false' title='Subscribe' type='Subscribe'/&gt;&lt;br /&gt;&amp;lt;/b:section&gt;&lt;br /&gt;&amp;lt;/div&gt;&lt;/span&gt;&lt;br /&gt;&lt;span style="color:#000099;"&gt;&lt;br /&gt;&amp;lt;div id='main-wrapper'&gt;&lt;br /&gt;&lt;/span&gt;&lt;br /&gt;&lt;/div&gt;&lt;/div&gt;&lt;br /&gt;And you are a now master Denim coder, because you're done! Hit preview to see your new three column blogger layout, and then save the template. Go into layouts and add a google gadget, or a widget, of your choice.  If you'd like to adjust your margins, go to &lt;a href="http://www.threecolumnblogger.com/2008/09/adjusting-margins-for-three-column_09.html"&gt;Adjusting Margins For Three Column Denim&lt;/a&gt;.&lt;br /&gt;&lt;br /&gt;Best of luck with your blogging. Links to this post are always welcome.  If you would like to create a quick link in one of your posts or on your blogroll but are unsure how to do it, just insert this html string in your post text:&lt;/div&gt;&lt;span style="COLOR: rgb(255,0,0)"&gt;&lt;br /&gt;&amp;lt;/a href="http://www.threecolumnblogger.com/"&gt;Three Column Blogger&amp;lt;/a&gt; &lt;/span&gt;&lt;br /&gt;&lt;br /&gt;It will appear in your post text/blogroll as &lt;a href="http://www.threecolumnblogger.com/"&gt;Three Column Blogger&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;Thanks!!&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/8198937227131193549-3362554594224774184?l=www.threecolumnblogger.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://www.blogger.com/feeds/8198937227131193549/3362554594224774184/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='https://www.blogger.com/comment.g?blogID=8198937227131193549&amp;postID=3362554594224774184' title='49 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/8198937227131193549/posts/default/3362554594224774184'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/8198937227131193549/posts/default/3362554594224774184'/><link rel='alternate' type='text/html' href='http://www.threecolumnblogger.com/2008/09/three-column-denim.html' title='Three Column Denim'/><author><name>REIT Wrecks</name><email>noreply@blogger.com</email><gd:extendedProperty xmlns:gd='http://schemas.google.com/g/2005' name='OpenSocialUserId' value='00692419550533468334'/></author><thr:total>49</thr:total></entry><entry><id>tag:blogger.com,1999:blog-8198937227131193549.post-2496110279287573143</id><published>2008-09-08T08:57:00.000-07:00</published><updated>2008-11-19T17:15:00.071-08:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='Three Column Minima'/><title type='text'>Three Column Minima Ochre</title><content type='html'>&lt;div align="justify"&gt;I looked all over the web for clear instructions on how to add a column to my blog and nearly went blind in the process.  I absolutely thrilled the pharmacist with my headache and assured my stupified optometrist that I would upgrade to a new monitor.  With these instucttions for adding a third column to your Minima Ochre template, you will have neither issue.  &lt;br /&gt;&lt;br /&gt;To be sure, the web is not completely devoid of instructions for adding columns.  Bu many are "one-size-fits-all" instructions that were confusing to a newbie like me, and I found none that dealt specifically with Blogger's "Template" version.  Nevertheless, if you are publishing via FTP to a "dot com" domain, like me and thousands of others, Template is the version you must use.  So, for those of you who want to add a third colum to blogger templates published via FTP to your own domain, this site will be particularly useful.&lt;br /&gt;&lt;br /&gt;Adding a third column to Minima Ochre is actually pretty easy, and these instructions make it even easier. Minima Ochre is one of the simplest templates out there, and it's also easy on the eyes, so readers like it.&lt;br /&gt;&lt;br /&gt;The first thing you need to do is to determine whether you're using Blgger's "Template" version or Blogger's "Layout" version. To check, go into your dashboard and look just to the left of the "View Blog" link on the top left of the page. If the tab there says "Layout", you are using the Layout version of Minima Ochre, and the instructions for &lt;a href="http://www.threecolumnblogger.com/2008/09/adjusting-three-column-margins-in.html"&gt;adding a third column to Layout are here&lt;/a&gt;.&lt;br /&gt;&lt;br /&gt;If it says "Template" there instead, then you are using the "Classic" Template version of Minima Ochre and those instructions are a bit different. But don't worry, I've posted instructions for &lt;a href="http://www.threecolumnblogger.com/2008/09/three-column-minima-classic-template.html"&gt;three column Minima Dark in Classic Template version here&lt;/a&gt;.&lt;br /&gt;&lt;br /&gt;Once you finish adding your columns to Minima Ochre, you should also check out the instructions for &lt;a href="http://www.threecolumnblogger.com/2008/09/adjusting-three-column-margins-in.html"&gt;adjusting your margins&lt;/a&gt;.  I have also included a link to the post on adjusting your margins in the instructions for adding a column to Minima Dark in both the Layout and Classic Template versions.&lt;br /&gt;&lt;br /&gt;Best of luck with your blogging. I hope your new three column Minima Ochre template helps make your blogging even more fun and enjoyable!&lt;/div&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/8198937227131193549-2496110279287573143?l=www.threecolumnblogger.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://www.blogger.com/feeds/8198937227131193549/2496110279287573143/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='https://www.blogger.com/comment.g?blogID=8198937227131193549&amp;postID=2496110279287573143' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/8198937227131193549/posts/default/2496110279287573143'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/8198937227131193549/posts/default/2496110279287573143'/><link rel='alternate' type='text/html' href='http://www.threecolumnblogger.com/2008/09/three-column-minima-ochre.html' title='Three Column Minima Ochre'/><author><name>REIT Wrecks</name><email>noreply@blogger.com</email><gd:extendedProperty xmlns:gd='http://schemas.google.com/g/2005' name='OpenSocialUserId' value='00692419550533468334'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-8198937227131193549.post-1796200735631828236</id><published>2008-09-03T16:59:00.000-07:00</published><updated>2008-11-19T17:16:07.225-08:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='Three Column Minima'/><title type='text'>Three Column Minima Dark</title><content type='html'>&lt;div align="justify"&gt;I'm glad you found my blog on adding columns to your blogger template. I looked all over the web for clear instructions on how to turn my two column blog into a three column blog.  I did manage find some worthwhile sites, but not all were entirely applicable, and I found none that dealt specifically with Blogger's "Classic Template" version.  If you are publishing via FTP to a "dot com" domain, like thousands of others, Template is the version you must use.  So, for those of you who want a three column blog published via FTP to your own domain, this site will be particularly useful.&lt;br /&gt;&lt;br /&gt;Adding a third column to Minima Dark is actually pretty easy, and these instructions make it even easier. Minima Dark is one of the simplest templates out there, and it's also easy on the eyes, so readers like it.&lt;br /&gt;&lt;br /&gt;The first thing you need to do is to determine whether you're using Blgger's "Template" version or Blogger's "Layout" version. To check, go into your dashboard and look just to the left of the "View Blog" link on the top left of the page. If the tab there says "Layout", you are using the Layout version of Minima Dark, and the instructions for &lt;a href="http://www.threecolumnblogger.com/2008/09/three-column-minima-layout-version.html"&gt;adding a third column to Layout are here&lt;/a&gt;.&lt;br /&gt;&lt;br /&gt;If it says "Template" there instead, then you are using the "Classic" Template version of Minima and those instructions are a bit different. But don't worry, I've posted instructions for &lt;a href="http://www.threecolumnblogger.com/2008/09/three-column-minima-classic-template.html"&gt;three column Minima Dark in Classic Template version here&lt;/a&gt;.&lt;br /&gt;&lt;br /&gt;Once you finish adding your columns to Minima Dark, you should also check out the instructions for &lt;a href="http://www.threecolumnblogger.com/2008/09/adjusting-three-column-margins-in.html"&gt;adjusting your margins&lt;/a&gt;.  I have also included direct a link to that post in the instructions for adding a column in the Layout and Classic Template versions of Minima Dark.&lt;br /&gt;&lt;br /&gt;Best of luck with your blogging. I hope your new three column minima dark template makes your blogging even more fun and enjoyable!&lt;/div&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/8198937227131193549-1796200735631828236?l=www.threecolumnblogger.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://www.blogger.com/feeds/8198937227131193549/1796200735631828236/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='https://www.blogger.com/comment.g?blogID=8198937227131193549&amp;postID=1796200735631828236' title='16 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/8198937227131193549/posts/default/1796200735631828236'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/8198937227131193549/posts/default/1796200735631828236'/><link rel='alternate' type='text/html' href='http://www.threecolumnblogger.com/2008/09/three-column-minima-dark.html' title='Three Column Minima Dark'/><author><name>REIT Wrecks</name><email>noreply@blogger.com</email><gd:extendedProperty xmlns:gd='http://schemas.google.com/g/2005' name='OpenSocialUserId' value='00692419550533468334'/></author><thr:total>16</thr:total></entry><entry><id>tag:blogger.com,1999:blog-8198937227131193549.post-5055950813186008949</id><published>2008-09-03T05:05:00.000-07:00</published><updated>2010-03-01T21:54:59.786-08:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='Three Column Minima'/><category scheme='http://www.blogger.com/atom/ns#' term='3 Column Blogs'/><title type='text'>Three Column Minima (Layout Version)</title><content type='html'>&lt;div align="justify"&gt;I started this blog because, like everyone who gets into blogging, I wanted to add a third column to my Minima template. Sadly, I also knew absolutely nothing about HTML, and nowhere could I find instructions that were all in one place and easy to understand. &lt;a href="http://www.threecolumnblogger.com/"&gt;Three Column Blogger&lt;/a&gt; was then born. &lt;em&gt;&lt;span style="color: rgb(255, 0, 0);"&gt;Update 1/2/10: Thank you all so much for your great comments, encouragement and suggestions. There are now over 300 comments, and Blogger has appended them - you'll need to click on the "more comments" link at the bottom of the page to post a comment or read new replies.  I still read all of the comments, and I try to incorporate your suggestions into the main post. This has become a better resource for all as a result. As always, links are appreciated.    Cheers!&lt;br /&gt;&lt;/span&gt;&lt;/em&gt;&lt;br /&gt;These instructions are simple and easy, and you can do it if you don't know the first thing about HTML (which is perfect, because I don't). Minima is one of the simplest templates to modify, and it's also easy on the eyes, so both readers and bloggers like it.&lt;br /&gt;&lt;br /&gt;This post is for adding a third column to Minima in "Layout Version". To check which version you're using, go into your dashboard and look just to the left of the "View Blog" link on the top left of the page. If the tab there says "Layout", you are using the Layout version of Minima and this post is for you. If it says "Template" there instead, then you are using the "Classic" Template version of Minima and those instructions are a bit different. But don't worry, I've posted instructions for &lt;a href="http://www.threecolumnblogger.com/2008/09/three-column-minima-classic-template.html"&gt;three column Minima in Classic Template version here&lt;/a&gt;.&lt;br /&gt;&lt;br /&gt;So let's get started! First, open up Blogger and go into your Dashboard, then click on the "Layout" tab. Then go into the "Edit HTML" tab. You will see a bunch of gobbledygook and gobbledygook it shall remain - you don't need to know anything about it. Just scroll down through the code until you see :&lt;br /&gt;&lt;br /&gt;/* Header&lt;br /&gt;-----------------------------------------------&lt;br /&gt;&lt;em&gt;(Note: you can also use your browser's control F (CTRL+F) command to search for this section. Just type in /* Header and then click the "next" button)&lt;/em&gt;&lt;br /&gt;&lt;br /&gt;Now, change the width of the "header-wrapper" from 660 to 940;&lt;br /&gt;&lt;br /&gt;#header-wrapper {&lt;br /&gt;width:660px; &lt;span style="color: rgb(255, 0, 0);"&gt;&lt;-------change to 940&lt;/span&gt;&lt;br /&gt;margin:0 auto 10px;&lt;br /&gt;&gt;border:1px solid $bordercolor;&lt;br /&gt;}&lt;br /&gt;&lt;br /&gt;That piece of code should now look EXACTLY like this:&lt;br /&gt;&lt;br /&gt;&lt;span style="color: rgb(0, 0, 153);"&gt;#header-wrapper {&lt;br /&gt;width:&lt;span style="color: rgb(255, 0, 0);"&gt;940&lt;/span&gt;px;&lt;br /&gt;margin:0 auto 10px;&lt;br /&gt;border:1px solid $bordercolor;&lt;br /&gt;}&lt;br /&gt;&lt;/span&gt;&lt;br /&gt;Also, at the bottom of the same Header section, change the max-width from 660 to 940:&lt;br /&gt;&lt;br /&gt;#description {&lt;br /&gt;margin:0 5px 5px;&lt;br /&gt;padding:0 20px 20px;&lt;br /&gt;border:1px solid #eee;&lt;br /&gt;border-width:0 1px 1px;&lt;br /&gt;max-width:660px;&lt;span style="color: rgb(255, 0, 0);"&gt;&lt;-------change to 940&lt;/span&gt;&lt;br /&gt;font:78%/1.4em "Trebuchet MS",Trebuchet,Arial,Verdana,Sans-serif;&lt;br /&gt;text-transform:uppercase;&lt;br /&gt;letter-spacing:.2em;&lt;br /&gt;color:#999;&lt;br /&gt;}&lt;br /&gt;&lt;br /&gt;That piece of code should now look like this:&lt;br /&gt;&lt;br /&gt;#description {&lt;br /&gt;margin:0 5px 5px;&lt;br /&gt;padding:0 20px 20px;&lt;br /&gt;border:1px solid #eee;&lt;br /&gt;border-width:0 1px 1px;&lt;br /&gt;max-width:&lt;span style="color: rgb(255, 0, 0);"&gt;940&lt;/span&gt;px;&lt;br /&gt;font:78%/1.4em "Trebuchet MS",Trebuchet,Arial,Verdana,Sans-serif;&lt;br /&gt;text-transform:uppercase;&lt;br /&gt;letter-spacing:.2em;&lt;br /&gt;color:#999;&lt;br /&gt;}&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;So far so good. Next, scroll down (or use CTRL+F) to where it says:&lt;br /&gt;&lt;br /&gt;/* Outer-Wrapper&lt;br /&gt;----------------------------------------------- */&lt;br /&gt;&lt;br /&gt;Now, just like you did in the Header above, change the "outer-wrapper" width from 660 to 940, and (2) change the "main-wrapper" width from 410 to 500&lt;br /&gt;&lt;br /&gt;#outer-wrapper {&lt;br /&gt;width: 660px; &lt;span style="color: rgb(255, 0, 0);"&gt;&lt;-------change to 940&lt;/span&gt;&lt;br /&gt;margin:0 auto; padding:10px;&lt;br /&gt;text-align:$startSide;&lt;br /&gt;font: $bodyfont;&lt;br /&gt;}&lt;br /&gt;&lt;br /&gt;#main-wrapper {&lt;br /&gt;width: 410px; &lt;span style="color: rgb(255, 0, 0);"&gt;&lt;-------change to 500&lt;/span&gt;&lt;br /&gt;float: $startSide;&lt;br /&gt;word-wrap: break-word; /* fix for long text breaking sidebar float in IE */ overflow: hidden; /* fix for long non-text content breaking IE sidebar float */&lt;br /&gt;}&lt;br /&gt;&lt;br /&gt;Next, take this new block of code (in red) and paste it in exactly as it appears directly in between the "outer-wrapper" code and "main-wrapper" code. It's helpful to use "CTRL C" to copy, and then "CTRL V" to paste, if you didn't already know that trick. Regardless of how you do it, you must paste it in between these two code blocks, nowhere else. &lt;em&gt;&lt;span style="color: rgb(255, 0, 0);"&gt;Update: the Google Gremlins may let some of you get away with using "left" instead of "$startSide" and "right" instead of "$endSide".&lt;br /&gt;&lt;/span&gt;&lt;/em&gt;&lt;br /&gt;&lt;div style="border: 1px solid rgb(101, 115, 131); padding: 15px; width: 400px;"&gt;&lt;br /&gt;&lt;span style="color: rgb(255, 0, 0);"&gt;#left-sidebar-wrapper {&lt;br /&gt;width: 220px;&lt;br /&gt;float: $startSide;&lt;br /&gt;word-wrap: break-word; /* fix for long text breaking sidebar float in IE */&lt;br /&gt;overflow: hidden; /* fix for long non-text content breaking IE sidebar float */&lt;br /&gt;}&lt;br /&gt;&lt;/span&gt;&lt;/div&gt;&lt;br /&gt;&lt;br /&gt;The new code block should look exactly like this:&lt;br /&gt;&lt;br /&gt;&lt;div style="border: 1px solid rgb(101, 115, 131); padding: 15px; width: 400px;"&gt;&lt;br /&gt;&lt;span style="color: rgb(0, 0, 153);"&gt;#outer-wrapper {&lt;br /&gt;width: 940px;&lt;br /&gt;margin:0 auto;&lt;br /&gt;padding:10px;&lt;br /&gt;text-align:$startSide;&lt;br /&gt;font: $bodyfont;&lt;br /&gt;}&lt;br /&gt;&lt;/span&gt;&lt;span style="color: rgb(255, 0, 0);"&gt;&lt;br /&gt;#left-sidebar-wrapper {&lt;br /&gt;width: 220px;&lt;br /&gt;float: $startSide;&lt;br /&gt;word-wrap: break-word; /* fix for long text breaking sidebar float in IE */&lt;br /&gt;overflow: hidden; /* fix for long non-text content breaking IE sidebar float */&lt;br /&gt;}&lt;br /&gt;&lt;/span&gt;&lt;span style="color: rgb(0, 0, 153);"&gt;&lt;br /&gt;#main-wrapper {&lt;br /&gt;width: 500px;&lt;br /&gt;float: $startSide;&lt;br /&gt;word-wrap: break-word; /* fix for long text breaking sidebar float in IE */&lt;br /&gt;overflow: hidden; /* fix for long non-text content breaking IE sidebar float */&lt;br /&gt;}&lt;br /&gt;&lt;br /&gt;#sidebar-wrapper {&lt;br /&gt;width: 220px;&lt;br /&gt;float: $endSide;&lt;br /&gt;word-wrap: break-word; /* fix for long text breaking sidebar float in IE */&lt;br /&gt;overflow: hidden; /* fix for long non-text content breaking IE sidebar float */&lt;br /&gt;}&lt;br /&gt;&lt;br /&gt;&lt;/span&gt;&lt;/div&gt;&lt;br /&gt;&lt;br /&gt;Then scroll way down the page to the footer section (or use CTRL F), it looks like this:&lt;br /&gt;&lt;br /&gt;/* Footer&lt;br /&gt;----------------------------------------------- */&lt;br /&gt;&lt;br /&gt;Change the width of the "footer" from 660 to 940.&lt;br /&gt;&lt;br /&gt;#footer {&lt;br /&gt;width:660px; &lt;span style="color: rgb(255, 0, 0);"&gt;&lt;-------change to 940&lt;/span&gt;&lt;br /&gt;clear:both;&lt;br /&gt;margin:0 auto; 10px&lt;br /&gt;padding-top:15px;&lt;br /&gt;line-height: 1.6em;&lt;br /&gt;text-transform:uppercase;&lt;br /&gt;letter-spacing:.1em;&lt;br /&gt;text-align: center;&lt;br /&gt;}&lt;br /&gt;&lt;br /&gt;At this point, believe it or not, there are only two more steps. This particular step is hard only because you need to make sure you paste the additional code in the right spot, and this next spot can be a hard place to identify (CTRL+F helps here a lot).&lt;br /&gt;&lt;br /&gt;Anyway, in the same footer section that you're now in, scroll down until you see:&lt;br /&gt;&lt;br /&gt;&lt;div style="border: 1px solid rgb(101, 115, 131); padding: 5px; width: 250px;"&gt;&lt;br /&gt;&lt;div align="left"&gt;&lt;span style="color: rgb(0, 0, 153);"&gt;&amp;lt;div id='content-wrapper'&gt;&lt;/span&gt;&lt;/div&gt;&lt;/div&gt;&lt;br /&gt;&lt;br /&gt;Then, locate the the "main wrapper" id a few lines below it. It looks like this:&lt;br /&gt;&lt;br /&gt;&lt;div style="border: 1px solid rgb(101, 115, 131); padding: 5px; width: 250px;"&gt;&lt;br /&gt;&lt;div align="left"&gt;&lt;span style="color: rgb(0, 0, 153);"&gt;&amp;lt;div id='main-wrapper'&gt;&lt;br /&gt;&lt;/span&gt;&lt;/div&gt;&lt;/div&gt;&lt;br /&gt;&lt;br /&gt;Now, just above the "main wrapper" id, paste in the following code EXACTLY as it appears below:&lt;br /&gt;&lt;br /&gt;&lt;div style="border: 1px solid rgb(101, 115, 131); padding: 15px; width: 400px;"&gt;&lt;br /&gt;&lt;div align="left"&gt;&lt;span style="color: rgb(255, 0, 0);"&gt;&amp;lt;div id='left-sidebar-wrapper'&gt;&lt;br /&gt;&amp;lt;b:section class='sidebar' id='left-sidebar' preferred='yes'&gt;&lt;br /&gt;&amp;lt;b:widget id='BloggerButton1' locked='false' title='' type='BloggerButton'/&gt;&lt;br /&gt;&amp;lt;/b:section&gt;&lt;br /&gt;&amp;lt;/div&gt;&lt;br /&gt;&lt;/span&gt;&lt;/div&gt;&lt;/div&gt;&lt;br /&gt;&lt;br /&gt;Note: this will also temporarily insert the Blogger logo button into your new sidebar, but you can delete that and add the widget of your own choice after you finish adding the column. &lt;span style="color: rgb(255, 0, 0);"&gt;&lt;em&gt;Update: If you get an error message that says the widget ID should be unique, you have an existing blogger button already loaded in your original sidebar and you'll have to delete that one temporarily. But don't worry, you can customize all of your sidebars when you get them all set up.&lt;/em&gt;&lt;/span&gt; If not, there's no need to worry about it - the button is just a placeholder and you can replace and rearrange all of your widgets when you finish.&lt;br /&gt;&lt;br /&gt;So, after you do that, the newly modified section should now look like this:&lt;br /&gt;&lt;br /&gt;&lt;div style="border: 1px solid rgb(101, 115, 131); padding: 15px; width: 400px;"&gt;&lt;br /&gt;&lt;div align="left"&gt;&lt;span style="color: rgb(0, 0, 153);"&gt;&amp;lt;div id='content-wrapper'&gt;&lt;br /&gt;&lt;br /&gt;&amp;lt;div id='crosscol-wrapper' style='text-align:center'&gt;&lt;br /&gt;&amp;lt;b:section class='crosscol' id='crosscol' showaddelement='no'/&gt;&lt;br /&gt;&amp;lt;/div&gt;&lt;/span&gt;&lt;span style="color: rgb(255, 0, 0);"&gt;&lt;br /&gt;&amp;lt;div id='left-sidebar-wrapper'&gt;&lt;br /&gt;&amp;lt;b:section class='sidebar' id='left-sidebar' preferred='yes'&gt;&lt;br /&gt;&amp;lt;b:widget id='Gadget1' locked='false' title='Geo IP Tool' type='Gadget'/&gt;&lt;br /&gt;&amp;lt;/b:section&gt;&lt;br /&gt;&amp;lt;/div&gt;&lt;/span&gt;&lt;br /&gt;&lt;span style="color: rgb(0, 0, 153);"&gt;&lt;br /&gt;&amp;lt;div id='main-wrapper'&gt;&lt;br /&gt;&lt;/span&gt;&lt;br /&gt;&lt;/div&gt;&lt;/div&gt;&lt;br /&gt;&lt;br /&gt;And you are a now master Minima coder, because you're done! Hit preview to see your new three column Minima layout, and then save the template. Now you can go into the "Layouts" and add a new google gadget of your choice. You can also read this article &lt;a href="http://www.threecolumnblogger.com/2008/09/adjusting-three-column-margins-in.html"&gt;for instructions on how to adjust your margins&lt;/a&gt; to make more space in between your columns.&lt;br /&gt;&lt;br /&gt;If you have any trouble with your "nav bar" or would simply like to turn it off, insert the following code (in red) exactly where I have placed it:&lt;br /&gt;&lt;br /&gt;&lt;div style="border: 1px solid rgb(101, 115, 131); padding: 15px; width: 400px;"&gt;&lt;br /&gt;&lt;div align="left"&gt;&lt;span style="color: rgb(0, 0, 153);"&gt;&lt;br /&gt;Blogger Template Style&lt;br /&gt;Name:  Minima&lt;br /&gt;Designer: Douglas Bowman&lt;br /&gt;URL:  www.stopdesign.com&lt;br /&gt;Date:  26 Feb 2004&lt;br /&gt;Updated by: Blogger Team&lt;br /&gt;----------------------------------------------&lt;/span&gt;&lt;span style="color: rgb(255, 0, 0);"&gt;&lt;br /&gt;#navbar-iframe {&lt;br /&gt;display: none !important;&lt;br /&gt;}&lt;br /&gt;&lt;br /&gt;&lt;/span&gt;&lt;/div&gt;&lt;/div&gt;&lt;br /&gt;Best of luck with your blogging. If this post was helpful, I would really appreciate a link.  If you would like to create a link in one of your posts or on your blogroll but are unsure how to do it, just insert this html string in your post text:&lt;/div&gt;&lt;span style="COLOR: rgb(255,0,0)"&gt;&lt;br /&gt;&amp;lt;/a href="http://www.threecolumnblogger.com/"&gt;Three Column Blogger&amp;lt;/a&gt; &lt;/span&gt;&lt;br /&gt;&lt;br /&gt;It will appear in your post text/blogroll as &lt;a href="http://www.threecolumnblogger.com/"&gt;Three Column Blogger&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;Thanks!!&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/8198937227131193549-5055950813186008949?l=www.threecolumnblogger.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://www.blogger.com/feeds/8198937227131193549/5055950813186008949/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='https://www.blogger.com/comment.g?blogID=8198937227131193549&amp;postID=5055950813186008949' title='406 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/8198937227131193549/posts/default/5055950813186008949'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/8198937227131193549/posts/default/5055950813186008949'/><link rel='alternate' type='text/html' href='http://www.threecolumnblogger.com/2008/09/three-column-minima-layout-version.html' title='Three Column Minima (Layout Version)'/><author><name>REIT Wrecks</name><email>noreply@blogger.com</email><gd:extendedProperty xmlns:gd='http://schemas.google.com/g/2005' name='OpenSocialUserId' value='00692419550533468334'/></author><thr:total>406</thr:total></entry><entry><id>tag:blogger.com,1999:blog-8198937227131193549.post-3078412317211348753</id><published>2008-09-02T20:27:00.000-07:00</published><updated>2009-06-20T01:32:05.553-07:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='Template Version'/><category scheme='http://www.blogger.com/atom/ns#' term='Three Column Minima'/><category scheme='http://www.blogger.com/atom/ns#' term='Margins'/><title type='text'>Adjusting Margins for Three Column Minima in Classic Template</title><content type='html'>&lt;div align="justify"&gt;In the earlier related post, we showed you &lt;a hfref="http://www.threecolumnblogger.com/2008/09/three-column-minima-classic-template.html"&gt;how to turn your free two column Minima Blogger template into a three column Minima template&lt;/a&gt;.  After you get your three columns all set up, you'll probably also want to adjust your margins.  Your blog will be fine without this step, but you'll probably notice that your columns appear a little "squished".  Have no fear, it's easy to fix, and once you learn how you can customize your blog's look, including column widths, to almost any desire.&lt;br /&gt;&lt;br /&gt;This post is for adjusting margins in "Classic Template" version. &lt;span style="font-style: italic; color: rgb(255, 0, 0);"&gt;Update 6/18/09: this post has been updated and corrected, thanks to comments from "Z", "Steve and Susan" and "34 Something".  These instructions are now consistent with the post on adding a third column to Minima in Classic Version, so you should have no problem correlating &lt;a href="http://www.threecolumnblogger.com/2008/09/three-column-minima-classic-template.html"&gt;those instructions&lt;/a&gt; with these instructions.  Sorry for the confusion!&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;If you forgot which version you're using, just go into your dashboard and look to the left of the "View Blog" link. If the tab there says "Template", you are using classic version of Blogger and this post is for you. If it says "Layout" there instead, then you are using the "Layout" Template and &lt;a href="http://www.threecolumnblogger.com/2008/09/adjusting-three-column-margins-in.html"&gt;those instructions are here&lt;/a&gt;.&lt;br /&gt;&lt;br /&gt;Like the instructions for adding columns, these instructions are also simple and easy, and you can do it if you don't know the first thing about HTML.&lt;br /&gt;&lt;br /&gt;In the Three Column Blogger tutorial on &lt;a href="http://www.threecolumnblogger.com/2008/09/three-column-minima-classic-template.html"&gt;adding a column to Minima in Classic Template&lt;/a&gt;, you made room for the new column by increasing the width of the page to 940 pixels.   &lt;br /&gt;&lt;br /&gt;Consequently, when you adjust your margins, the width of the sidebars, the main post column and all the margins must collectively add up to 940.  If they exceed 940, one of your columns will drop to the bottom of the page.  If they are less than 940, you will still see all three columns but the layout may be asymmetrical.  So get out your calculator and let's begin!&lt;br /&gt;&lt;br /&gt;First, open up Blogger and go into your Dashboard, then click on the "Layout" tab. Then go into the "Edit HTML" tab. Next, scroll down (or use CTRL+F) to where it says:&lt;br /&gt;&lt;br /&gt;/* Content&lt;br /&gt;----------------------------------------------- */&lt;br /&gt;&lt;br /&gt;Now, you are going to paste some code in to add margins to your new columns.  It's helpful here to remember the "ctrl c" trick to copy and "ctrl v" to paste - much faster and easier.  The code you are going to paste in will be the exact same every time.  It is:&lt;br /&gt;&lt;br /&gt;margin right:&lt;br /&gt;margin left:&lt;br /&gt;&lt;br /&gt;First, we will add margins to the "left-sidebar-wrapper".  To do that, paste the following code in between the sidebar's "width" and "float" designations:&lt;br /&gt;&lt;br /&gt;&lt;span style="color: rgb(255, 0, 0);"&gt;margin-right: 15px;&lt;br /&gt;margin-left: 5px;&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;Next, we will move to the "#main" section.  Paste the following code in between the main-content's "width" and "float" designations:&lt;br /&gt;&lt;br /&gt;&lt;span style="color: rgb(255, 0, 0);"&gt;margin-right: 10px;&lt;br /&gt;margin-left: 10px;&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;Then, we'll do the same thing for the "#sidebar" section, which is identified in the code as the "sidebar-wrapper".  Paste the following code in between the right sidebar's "width" and "float" designations:&lt;br /&gt;&lt;br /&gt;&lt;span style="color: rgb(255, 0, 0);"&gt;margin-right: 5px;&lt;br /&gt;margin-left: 15px;&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;Now for the math.  These margins added 60 pixels to the main page, and there are 20 pixels of "buffer" padding on the outer page border, so we'll need to reduce the width of the columns by a collective 80 pixels.  In this example, I have chosen to reduce the width of all three columns, but you can also reduce the main post width alone, or just the two sidebars (as long as it all adds up to 80).  This is what you need to do in order to reduce all the column widths:&lt;br /&gt;&lt;br /&gt;#left-sidebar {&lt;br /&gt;   width: 220px;&lt;span style="color: rgb(255, 0, 0);"&gt;&lt;-------change to 200&lt;/span&gt;&lt;br /&gt;margin-right: 15px;&lt;br /&gt;margin-left: 5px;    &lt;br /&gt;float:left;&lt;br /&gt;   }&lt;br /&gt;#main {&lt;br /&gt;   width:500px;&lt;span style="color: rgb(255, 0, 0);"&gt;&lt;-------change to 460&lt;/span&gt;&lt;br /&gt;margin-right: 10px;&lt;br /&gt;margin-left: 10px;&lt;br /&gt;float:left;&lt;br /&gt;}&lt;br /&gt;#sidebar {&lt;br /&gt;   width:220px;&lt;span style="color: rgb(255, 0, 0);"&gt;&lt;-------change to 200&lt;/span&gt;&lt;br /&gt;margin-right: 5px;&lt;br /&gt;margin-left: 15px;&lt;br /&gt;   float:right;&lt;br /&gt;   }&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;Your finished block of code with the new margins should now look like this:&lt;br /&gt;&lt;br /&gt;&lt;div style="border: 1px solid rgb(101, 115, 131); padding: 15px; width: 400px;"&gt;&lt;br /&gt;&lt;span style="color: rgb(0, 0, 153);"&gt;#left-sidebar-wrapper {&lt;br /&gt; width: &lt;/span&gt;&lt;span style="color: rgb(255, 0, 0);"&gt;200px;&lt;br /&gt;margin-right: 15px;&lt;br /&gt;margin-left: 5px;&lt;/span&gt; &lt;br /&gt;&lt;span style="color: rgb(0, 0, 153);"&gt;float: left;&lt;br /&gt;}&lt;br /&gt;#main {&lt;br /&gt; width: 460px;&lt;br /&gt;&lt;/span&gt;&lt;span style="color: rgb(255, 0, 0);"&gt;margin-right: 10px;&lt;br /&gt;margin-left: 10px;&lt;/span&gt;&lt;span style="color: rgb(0, 0, 153);"&gt; &lt;br /&gt;float: left;&lt;br /&gt;   }&lt;br /&gt;#sidebar {&lt;br /&gt; width: &lt;/span&gt;&lt;span style="color: rgb(255, 0, 0);"&gt;200px;&lt;br /&gt;margin-right: 5px;&lt;br /&gt;margin-left: 10px;&lt;/span&gt;&lt;span style="color: rgb(0, 0, 153);"&gt;&lt;br /&gt;float: right;&lt;br /&gt;}&lt;br /&gt;&lt;br /&gt;&lt;/span&gt;&lt;/div&gt;&lt;br /&gt;&lt;br /&gt;Hit "preview" to see your new three column blogger layout with the new margins, and then save the template if everything is ok.  And now you really are a now master minima coder! Not only are you completely done, but you are also armed with enough knowledge to increase the width of your columns and main page in order to fit custom widgets and other "non-google" add-ins.&lt;br /&gt;&lt;br /&gt;Best of luck with your blogging. I hope this article on adding margins to your three column template was helpful!&lt;/div&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/8198937227131193549-3078412317211348753?l=www.threecolumnblogger.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://www.blogger.com/feeds/8198937227131193549/3078412317211348753/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='https://www.blogger.com/comment.g?blogID=8198937227131193549&amp;postID=3078412317211348753' title='13 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/8198937227131193549/posts/default/3078412317211348753'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/8198937227131193549/posts/default/3078412317211348753'/><link rel='alternate' type='text/html' href='http://www.threecolumnblogger.com/2008/09/adjusting-margins-for-three-column.html' title='Adjusting Margins for Three Column Minima in Classic Template'/><author><name>REIT Wrecks</name><email>noreply@blogger.com</email><gd:extendedProperty xmlns:gd='http://schemas.google.com/g/2005' name='OpenSocialUserId' value='00692419550533468334'/></author><thr:total>13</thr:total></entry><entry><id>tag:blogger.com,1999:blog-8198937227131193549.post-5816983584563427406</id><published>2008-09-01T18:52:00.000-07:00</published><updated>2009-06-18T11:38:08.842-07:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='Layout Version'/><category scheme='http://www.blogger.com/atom/ns#' term='Three Column Minima'/><category scheme='http://www.blogger.com/atom/ns#' term='Margins'/><title type='text'>Adjusting Three Column Margins in Layout</title><content type='html'>&lt;div align="justify"&gt;In the earlier related post, your faithful servant showed you &lt;a hfref="http://www.threecolumnblogger.com/2008/09/three-column-minima-layout-version.html"&gt;how to turn your free two column Minima Blogger template into a three column Minima template&lt;/a&gt;. After you get your three columns all set up, you'll probably want to adjust your margins. Your blog will be fine without this step, but you'll probably notice that your columns appear "squished" in together. Have no fear, it's easy to fix, and once you learn how you can customize your blog's look to almost any desire.&lt;br /&gt;&lt;br /&gt;This post is for adjusting margins in "Layout Version". If you forgot which version you're using, just go into your dashboard and look to the left of the "View Blog" link. If the tab there says "Layout", you are using the Layout version of Minima and this post is for you. If it says "Template" there instead, then you are using the "Classic" Template version of Minima and &lt;a href="http://www.threecolumnblogger.com/2008/09/adjusting-margins-for-three-column.html"&gt;those instructions are here&lt;/a&gt;.&lt;br /&gt;&lt;br /&gt;Like the instructions for adding columns, these instructions are also simple and easy, and you can do it if you don't know the first thing about HTML.&lt;br /&gt;&lt;br /&gt;In the Three Column Blogs tutorial on &lt;a href="http://www.threecolumnblogger.com/2008/09/three-column-minima-layout-version.html"&gt;adding a column to Minima in Layout&lt;/a&gt;, you made room for the new column by increasing the width of the page to 940 pixels.&lt;br /&gt;&lt;br /&gt;Consequently, when you adjust your margins, the width of the sidebars, the main post column and all the margins must collectively add up to 940. If they exceed 940, one of your columns will drop to the bottom of the page. If they are less than 940, you will still see all three columns but the layout will be asymmetrical. So get out your calculator and let's begin!&lt;br /&gt;&lt;br /&gt;First, open up Blogger and go into your Dashboard, then click on the "Layout" tab. Then go into the "Edit HTML" tab. Next, scroll down (or use CTRL+F) to where it says:&lt;br /&gt;&lt;br /&gt;/* Outer-Wrapper&lt;br /&gt;----------------------------------------------- */&lt;br /&gt;&lt;br /&gt;Now, you are going to paste some code in to add margins to your new columns. It's helpful here to remember the "ctrl c" trick to copy and "ctrl v" to paste - it's much faster and easier. The code you are going to paste in will be the exact same every time. It is:&lt;br /&gt;&lt;br /&gt;margin right:&lt;br /&gt;margin left:&lt;br /&gt;&lt;br /&gt;First, we will add margins to the "left-sidebar-wrapper". To do that, paste the following code in between the sidebar's "width" and "float" designations:&lt;br /&gt;&lt;br /&gt;&lt;span style="color:#ff0000;"&gt;margin-right: 10px;&lt;br /&gt;margin-left: 5px;&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;Next, we will move to the "main-wrapper". Paste the following code in between the main-content's "width" and "float" designations:&lt;br /&gt;&lt;br /&gt;&lt;span style="color:#ff0000;"&gt;margin-right: 15px;&lt;br /&gt;margin-left: 15px;&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;Then, we'll do the same thing for the right sidebar wrapper, which is identified in the code as the "sidebar-wrapper". Paste the following code in between the right sidebar's "width" and "float" designations:&lt;br /&gt;&lt;br /&gt;&lt;span style="color:#ff0000;"&gt;margin-right: 5px;&lt;br /&gt;margin-left: 10px;&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;Now for the math. These margins added 70 pixels to the main page, so we'll need to reduce the width of the columns by a collective 70 pixels. In this example, I have chosen to reduce the width of the two sidebars, but you can also reduce the main post width alone, or all columns together. This is what you need to do in order to reduce the sidebar widths:&lt;br /&gt;&lt;br /&gt;#left-sidebar-wrapper {&lt;br /&gt;width: 220px;&lt;span style="color:#ff0000;"&gt;&lt;-------change to 185&lt;/span&gt;&lt;br /&gt;margin-right: 10px;&lt;br /&gt;margin-left: 5px;&lt;br /&gt;float: $startSide;&lt;br /&gt;word-wrap: break-word; /* fix for long text breaking sidebar float in IE */&lt;br /&gt;overflow: hidden; /* fix for long non-text content breaking IE sidebar float */&lt;br /&gt;}&lt;br /&gt;&lt;br /&gt;#sidebar-wrapper {&lt;br /&gt;width: 220px;&lt;span style="color:#ff0000;"&gt;&lt;-------change to 185&lt;/span&gt;&lt;br /&gt;margin-right: 5px;&lt;br /&gt;margin-left: 10px;&lt;br /&gt;float: $endSide;&lt;br /&gt;word-wrap: break-word; /* fix for long text breaking sidebar float in IE */&lt;br /&gt;overflow: hidden; /* fix for long non-text content breaking IE sidebar float */&lt;br /&gt;}&lt;br /&gt;&lt;br /&gt;Your finished block of code with the new margins should now look like this:&lt;br /&gt;&lt;br /&gt;&lt;/div&gt;&lt;div align="justify"&gt;&lt;div style="BORDER-RIGHT: #657383 1px solid; PADDING-RIGHT: 15px; BORDER-TOP: #657383 1px solid; PADDING-LEFT: 15px; PADDING-BOTTOM: 15px; BORDER-LEFT: #657383 1px solid; WIDTH: 400px; PADDING-TOP: 15px; BORDER-BOTTOM: #657383 1px solid"&gt;&lt;br /&gt;&lt;span style="color:#000099;"&gt;#left-sidebar-wrapper {&lt;br /&gt;width: &lt;/span&gt;&lt;span style="color:#ff0000;"&gt;185px;&lt;br /&gt;margin-right: 10px;&lt;br /&gt;margin-left: 5px;&lt;/span&gt;&lt;br /&gt;&lt;span style="color:#000099;"&gt;float: $startSide;&lt;br /&gt;word-wrap: break-word; /* fix for long text breaking sidebar float in IE */&lt;br /&gt;overflow: hidden; /* fix for long non-text content breaking IE sidebar float */&lt;br /&gt;}&lt;br /&gt;&lt;br /&gt;#main-wrapper {&lt;br /&gt;width: 500px;&lt;br /&gt;&lt;/span&gt;&lt;span style="color:#ff0000;"&gt;margin-right: 15px;&lt;br /&gt;margin-left: 15px;&lt;/span&gt;&lt;span style="color:#000099;"&gt;&lt;br /&gt;float: $startSide;&lt;br /&gt;word-wrap: break-word; /* fix for long text breaking sidebar float in IE */&lt;br /&gt;overflow: hidden; /* fix for long non-text content breaking IE sidebar float */&lt;br /&gt;}&lt;br /&gt;&lt;br /&gt;#sidebar-wrapper {&lt;br /&gt;width: &lt;/span&gt;&lt;span style="color:#ff0000;"&gt;185px;&lt;br /&gt;margin-right: 5px;&lt;br /&gt;margin-left: 10px;&lt;/span&gt;&lt;span style="color:#000099;"&gt;&lt;br /&gt;float: $endSide;&lt;br /&gt;word-wrap: break-word; /* fix for long text breaking sidebar float in IE */&lt;br /&gt;overflow: hidden; /* fix for long non-text content breaking IE sidebar float */&lt;br /&gt;}&lt;br /&gt;&lt;br /&gt;&lt;/span&gt;&lt;/div&gt;&lt;/div&gt;&lt;div align="justify"&gt;&lt;br /&gt;&lt;br /&gt;Hit "preview" to see your new three column blogger layout with margins, and then save the template if everything is ok. And now you really are a now master minima coder! Not only are you completely done, but you are also armed with enough knowledge to increase the width of your columns and main page in order to fit custom widgets and other "non-google" add-ins. &lt;/div&gt;&lt;div align="justify"&gt; &lt;/div&gt;&lt;div align="justify"&gt;&lt;span style="color:#ff0000;"&gt;&lt;em&gt;Update:  There are a lot of comments below about not enough space between columns, too much space, etc.  These are personal preferences and they can easily be met - the great thing about the Blogger templates is that you can customize them to your heart's desire.  Experiment!  Just fiddle with the margin settings until your blog looks the way you want - it's easy.   More pixels in your margins=more space between columns, less pixels in your margins=less space.  Be careful not to add too much though, or your right column will drop to the bottom of the page.&lt;/em&gt;&lt;/span&gt;&lt;/div&gt;&lt;div align="justify"&gt;&lt;span style="color:#ff0000;"&gt;&lt;em&gt;&lt;/em&gt;&lt;/span&gt; &lt;/div&gt;&lt;div align="justify"&gt;&lt;span style="color:#ff0000;"&gt;&lt;em&gt;Also, several people made comments about images/widgets/photos getting cut off in their sidebars - again, you need to either reduce the size of the image/widget/photo to fit in your sidebar, or increase the width of the sidebar to accommodate the size of the widget.   But be careful: if you make it too wide,your right column will drop to the bottom of the page.&lt;br /&gt;&lt;/em&gt;&lt;/span&gt;&lt;br /&gt;Best of luck with your blogging. I hope this article on adding margins to your three column template did great things for your blog!  &lt;strong&gt;&lt;em&gt;If this post was helpful, please link to it!&lt;/em&gt;&lt;/strong&gt;  Cheers.&lt;/div&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/8198937227131193549-5816983584563427406?l=www.threecolumnblogger.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://www.blogger.com/feeds/8198937227131193549/5816983584563427406/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='https://www.blogger.com/comment.g?blogID=8198937227131193549&amp;postID=5816983584563427406' title='163 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/8198937227131193549/posts/default/5816983584563427406'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/8198937227131193549/posts/default/5816983584563427406'/><link rel='alternate' type='text/html' href='http://www.threecolumnblogger.com/2008/09/adjusting-three-column-margins-in.html' title='Adjusting Three Column Margins in Layout'/><author><name>REIT Wrecks</name><email>noreply@blogger.com</email><gd:extendedProperty xmlns:gd='http://schemas.google.com/g/2005' name='OpenSocialUserId' value='00692419550533468334'/></author><thr:total>163</thr:total></entry><entry><id>tag:blogger.com,1999:blog-8198937227131193549.post-4968202222126520321</id><published>2008-09-01T16:46:00.000-07:00</published><updated>2009-11-29T02:00:25.062-08:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='Three Column Minima'/><category scheme='http://www.blogger.com/atom/ns#' term='3 Column Blogs'/><title type='text'>Three Column Minima (Classic Template Version)</title><content type='html'>&lt;div align="justify"&gt;My first experience in attempting to add a third column to Minima was incredibly frustrating. Not only could I not find instructions on three column Minima that were all in one place and easy to understand, but none of the examples I found were for Minima in the Classic Template version.&lt;br /&gt;&lt;br /&gt;These instructions are for adding a third column to Minima in "Classic" Template version. To check which version you're using, go into your dashboard and look just to the left of the "View Blog" link on the top left of the page. If it says "Template" in the next tab to the left, then you are using the "Classic" Template version and this is the post for you. If it says "Layout" there instead, then click on over to &lt;a href="http://www.threecolumnblogger.com/2008/09/three-column-minima-layout-version.html"&gt;Three Column Minima (Layout)&lt;/a&gt;. You would definitely be using Classic Template if you are publishing via FTP to your own dot come domain on a third party host (Blogger doesn't support Layout on non-blogspot domains).&lt;br /&gt;&lt;br /&gt;Making a three column blog is easy in either version of Minima, but it's a little different for each. If you're like me and completely frustrated by the lack of directions for the Template version of Minima, you've come to the right place. This post and about 10 minutes are all that separate you and your blog from three column nirvana!&lt;br /&gt;&lt;br /&gt;These instructions are simple and easy, and you can do it even if you don't know the first thing about HTML (because I didn't when I started this, and I know what it's like).&lt;br /&gt;&lt;br /&gt;First, open up Blogger, go into your Dashboard and click on the "Tempate" tab. Then go into the "Edit HTML" tab. You will see a bunch of gobbledygook and gobbledygook it shall remain - you don't need to know anything about it. Just scroll down (or, allow me to introduce your browser's control F (CTRL+F) command, you can just type in /* Header and click next) until you see this:&lt;br /&gt;&lt;br /&gt;/* Header&lt;br /&gt;-----------------------------------------------&lt;br /&gt;&lt;br /&gt;Now, change the width of the header width from 660 to 940:&lt;br /&gt;&lt;br /&gt;@media all {&lt;br /&gt;#header {&lt;br /&gt;width:660px; &lt;span style="color:#ff0000;"&gt;&lt;-------change to 940&lt;/span&gt;&lt;br /&gt;margin:0 auto 10px; &lt;br /&gt;&gt;border:1px solid $bordercolor;&lt;br /&gt;}&lt;br /&gt;&lt;br /&gt;That piece of code should now look EXACTLY like this:&lt;br /&gt;&lt;span style="color:#000099;"&gt;&lt;br /&gt;@media all {&lt;br /&gt;#header {&lt;br /&gt;width:&lt;span style="color:#ff0000;"&gt;940&lt;/span&gt;&lt;span style="color:#000099;"&gt;px;&lt;br /&gt;margin:0 auto 10px;&lt;br /&gt;border:1px solid $bordercolor;&lt;br /&gt;}&lt;br /&gt;&lt;/span&gt;&lt;/span&gt;&lt;br /&gt;Also, at the bottom of the same Header section, change the max-width from 660 to 940:&lt;br /&gt;&lt;br /&gt;#description {&lt;br /&gt;  margin:0 5px 5px;&lt;br /&gt;  padding:0 20px 20px;&lt;br /&gt;  border:1px solid #eee;&lt;br /&gt;  border-width:0 1px 1px;&lt;br /&gt;  max-width:660px;&lt;span style="color:#ff0000;"&gt;&lt;-------change to 940&lt;/span&gt;&lt;br /&gt;  font:85%/1.4em "Trebuchet MS",Trebuchet,Arial,Verdana,Sans-serif;&lt;br /&gt;  text-transform:uppercase;&lt;br /&gt;  letter-spacing:.2em;&lt;br /&gt;  color:#FFFFFF;&lt;br /&gt;  }&lt;br /&gt;&lt;br /&gt;That piece of code should now look like this:&lt;br /&gt;&lt;br /&gt;#description {&lt;br /&gt;  margin:0 5px 5px;&lt;br /&gt;  padding:0 20px 20px;&lt;br /&gt;  border:1px solid #eee;&lt;br /&gt;  border-width:0 1px 1px;&lt;br /&gt;  max-width:&lt;span style="color:#ff0000;"&gt;940&lt;/span&gt;px;&lt;br /&gt;  font:85%/1.4em "Trebuchet MS",Trebuchet,Arial,Verdana,Sans-serif;&lt;br /&gt;  text-transform:uppercase;&lt;br /&gt;  letter-spacing:.2em;&lt;br /&gt;  color:#FFFFFF;&lt;br /&gt;  }&lt;br /&gt;&lt;br /&gt;So far so good. Next, scroll down to the content section (or use CTRL+F), the beginning of the content section looks like this:&lt;br /&gt;&lt;br /&gt;/* Content&lt;br /&gt;----------------------------------------------- */&lt;br /&gt;&lt;br /&gt;Now, just like you did in the Header above, change the "content" width from 660 to 940, and (2) change the "main" width from 410 to 500:&lt;br /&gt;&lt;br /&gt;@media all {&lt;br /&gt;#content{&lt;br /&gt;width: 660px; &lt;span style="color:#ff0000;"&gt;&lt;-------change to 940&lt;/span&gt;&lt;br /&gt;margin:0 auto;&lt;br /&gt;padding:0px;&lt;br /&gt;text-align:left;&lt;br /&gt;}&lt;br /&gt;&lt;br /&gt;#main {&lt;br /&gt;width: 410px; &lt;span style="color:#ff0000;"&gt;&lt;-------change to 500&lt;/span&gt;&lt;br /&gt;float:left;&lt;br /&gt;}&lt;br /&gt;&lt;br /&gt;Next, take this new block of code (in red, below) and paste it in exactly as it appears directly in between the #content code block and the #main code block. It's helpful to use "CTRL C" to copy, and then "CTRL V" to paste, if you didn't already know that trick.  Regardless of how you do it, you must paste it in between these two code blocks, nowhere else.&lt;br /&gt;&lt;br /&gt;&lt;div style="BORDER-RIGHT: #657383 1px solid; PADDING-RIGHT: 15px; BORDER-TOP: #657383 1px solid; PADDING-LEFT: 15px; PADDING-BOTTOM: 15px; BORDER-LEFT: #657383 1px solid; WIDTH: 200px; PADDING-TOP: 15px; BORDER-BOTTOM: #657383 1px solid"&gt;&lt;br /&gt;&lt;span style="color:#ff0000;"&gt;#left-sidebar {&lt;br /&gt;width: 220px;&lt;br /&gt;float: left;&lt;br /&gt;}&lt;br /&gt;&lt;/span&gt;&lt;/div&gt;&lt;br /&gt;&lt;br /&gt;The new code block should look like this:&lt;br /&gt;&lt;br /&gt;&lt;div style="BORDER-RIGHT: #657383 1px solid; PADDING-RIGHT: 15px; BORDER-TOP: #657383 1px solid; PADDING-LEFT: 15px; PADDING-BOTTOM: 15px; BORDER-LEFT: #657383 1px solid; WIDTH: 200px; PADDING-TOP: 15px; BORDER-BOTTOM: #657383 1px solid"&gt;&lt;br /&gt;&lt;span style="color:#000099;"&gt;@media all {&lt;br /&gt;#content{&lt;br /&gt;width: 940px;&lt;br /&gt;margin:0 auto;&lt;br /&gt;padding:0px;&lt;br /&gt;text-align:left;&lt;br /&gt;}&lt;/span&gt;&lt;span style="color:#ff0000;"&gt;&lt;br /&gt;#left-sidebar {&lt;br /&gt;width: 220px;&lt;br /&gt;float: left;&lt;br /&gt;}&lt;/span&gt;&lt;span style="color:#000099;"&gt;&lt;br /&gt;#main {&lt;br /&gt;width: 500px;&lt;br /&gt;margin:0 auto;&lt;br /&gt;padding:0; text-align:left;&lt;br /&gt;}&lt;br /&gt;#sidebar {&lt;br /&gt;    width:220px;&lt;br /&gt;    float:right;&lt;br /&gt;    }&lt;br /&gt;  }&lt;br /&gt;@media handheld {&lt;br /&gt;  #content {&lt;br /&gt;    width:90%;&lt;br /&gt;    }&lt;br /&gt;  #main {&lt;br /&gt;    width:100%;&lt;br /&gt;    float:none;&lt;br /&gt;    }&lt;br /&gt;  #sidebar {&lt;br /&gt;    width:100%;&lt;br /&gt;    float:none;&lt;br /&gt;    }&lt;br /&gt;  }&lt;br /&gt;&lt;/span&gt;&lt;/div&gt;&lt;br /&gt;&lt;br /&gt;Then scroll way down the page to the footer section (or use CTRL F), the beginning of the footer section looks like this:&lt;br /&gt;&lt;br /&gt;/* Footer&lt;br /&gt;----------------------------------------------- */&lt;br /&gt;&lt;br /&gt;Now, change the width of the footer from 660 to 940:&lt;br /&gt;&lt;br /&gt;#footer {&lt;br /&gt;width:660px; &lt;span style="color:#ff0000;"&gt;&lt;-------change to 940&lt;/span&gt;&lt;br /&gt;clear:both;&lt;br /&gt;margin:0 auto;&lt;br /&gt;}&lt;br /&gt;&lt;br /&gt;At this point, believe it or not, there is only one more step. This particular step is hard only because you need to make sure you type in the additional code in the right spot, and this next spot can be a hard place to identify (CTRL+F helps here a lot).&lt;br /&gt;&lt;br /&gt;Anyway, in the same footer section that you're now in, scroll down until you see the beginning of the "content" section, it looks like this:&lt;br /&gt;&lt;br /&gt;&lt;span style="color:#000099;"&gt;&amp;lt;!-- Begin #content --&gt;&lt;br /&gt;&amp;lt;div id='content'&gt;&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;&lt;div align="justify"&gt;Then, locate the the "main" section id a few lines below it. It looks like this:&lt;br /&gt;&lt;br /&gt;&lt;span style="color:#000099;"&gt;&amp;lt;!-- Begin #main --&gt;&lt;br /&gt;&amp;lt;div id='main'&gt;&amp;lt;div id='main 2'&gt;&lt;br /&gt;&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;Now, just above the "main" and "main2" id, paste in the following code EXACTLY as it appears (&lt;em&gt;note, this code will insert text into your new sidebar as a placeholder, you can customize that later when you finish&lt;/em&gt;):&lt;br /&gt;&lt;br /&gt;&lt;div style="BORDER-RIGHT: #657383 1px solid; PADDING-RIGHT: 15px; BORDER-TOP: #657383 1px solid; PADDING-LEFT: 15px; PADDING-BOTTOM: 15px; BORDER-LEFT: #657383 1px solid; WIDTH: 400px; PADDING-TOP: 15px; BORDER-BOTTOM: #657383 1px solid"&gt;&lt;br /&gt;&lt;div align="left"&gt;&lt;span style="color:#ff0000;"&gt;&amp;lt;div id="left-sidebar"&gt;&lt;br /&gt;&amp;lt;h2 class="sidebar-title"&gt;New Text Titles&amp;lt;/h2&gt; &lt;br /&gt;&amp;lt;/div&gt;&lt;/div&gt;&lt;/span&gt;&lt;/div&gt;&lt;br /&gt;&lt;br /&gt;After you do that, the newly modified section should now look like this:&lt;br /&gt;&lt;br /&gt;&lt;div style="BORDER-RIGHT: #657383 1px solid; PADDING-RIGHT: 15px; BORDER-TOP: #657383 1px solid; PADDING-LEFT: 15px; PADDING-BOTTOM: 15px; BORDER-LEFT: #657383 1px solid; WIDTH: 400px; PADDING-TOP: 15px; BORDER-BOTTOM: #657383 1px solid"&gt;&lt;br /&gt;&lt;span style="color:#000099;"&gt;&lt;br /&gt;&amp;lt;!-- Begin #content --&gt;&lt;br /&gt;&amp;lt;div id='content'&gt;&lt;br /&gt;&lt;!-- Begin #main --&gt;&lt;/span&gt;&lt;span style="color:#ff0000;"&gt;&lt;br /&gt;&amp;lt;div id="left-sidebar"&gt;&lt;br /&gt;&amp;lt;h2 class="sidebar-title"&gt;New Text Titles&amp;lt;/h2&gt;&lt;br /&gt;&amp;lt;/div&gt;&lt;br /&gt;&lt;/span&gt;&lt;span style="color:#000099;"&gt;&lt;br /&gt;&amp;lt;!-- Begin #main --&gt;&lt;br /&gt;&amp;lt;div id="main"&gt;&amp;lt;div id="main2"&gt;&lt;/span&gt;&lt;/div&gt;&lt;br /&gt;&lt;br /&gt;If it does, you are a now master minima coder, because you're done! Hit preview to see your new three column layout, and then save the template. Then you can go into the "Html Edit" tab and replace the "New Text Titles" placeholder with new text, a widget, or advertising.  Just be sure to keep it all within the opening left-sidebar "div id" tag and the closing "&amp;lt;/div&gt;" tag.&lt;br /&gt;&lt;br /&gt;At this point, you may also want to look at &lt;a href="http://www.threecolumnblogger.com/2008/09/adjusting-three-column-margins-in.html"&gt;adjusting your column margins in Classic Template&lt;/a&gt;.  That post will help you get more space in between the columns and achieve an even more custom look.&lt;br /&gt;&lt;br /&gt;Best of luck with your blogging. If you found this helpful, links back to this post on three column minima are always welcome.  Thanks!&lt;/div&gt;&lt;/div&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/8198937227131193549-4968202222126520321?l=www.threecolumnblogger.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://www.blogger.com/feeds/8198937227131193549/4968202222126520321/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='https://www.blogger.com/comment.g?blogID=8198937227131193549&amp;postID=4968202222126520321' title='17 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/8198937227131193549/posts/default/4968202222126520321'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/8198937227131193549/posts/default/4968202222126520321'/><link rel='alternate' type='text/html' href='http://www.threecolumnblogger.com/2008/09/three-column-minima-classic-template.html' title='Three Column Minima (Classic Template Version)'/><author><name>REIT Wrecks</name><email>noreply@blogger.com</email><gd:extendedProperty xmlns:gd='http://schemas.google.com/g/2005' name='OpenSocialUserId' value='00692419550533468334'/></author><thr:total>17</thr:total></entry><entry><id>tag:blogger.com,1999:blog-8198937227131193549.post-709072190296508717</id><published>2008-09-01T15:05:00.000-07:00</published><updated>2008-11-19T17:18:46.010-08:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='3 Column Blogs'/><title type='text'>Adding A Third Column To Blogger</title><content type='html'>&lt;div align="justify"&gt;If you're interested in adding a third column to your free blogger template, search no more. Our blogger tutorials will teach you everything you need to turn your two column blog into a three column blog.&lt;br /&gt;&lt;br /&gt;Not only will we show you how to quickly and easily add a third column, but we will show you how to position your new column too. Do you want a new sidebar to the left of the main post? Or do you want your new sidebar to be to the right of the new post, next to the existing sidebar? Or do you want FOUR columns??&lt;br /&gt;&lt;br /&gt;&lt;strong&gt;Customize Your Blogger Layout&lt;/strong&gt;&lt;br /&gt;&lt;br /&gt;There are many free third-party, three-column template downloads available online. However, downloading hacks can create several disadvantages.  First, you may be disappointed with the specific template design, and if so you will not have the knowledge to modify it.  Also, to the extent you've already customized your Blogger layout, you may lose all of those customizations if you download a hack.  Adding all those customizations back can be a painstaking waste of time.  &lt;br /&gt;&lt;br /&gt;Also, many free templates have not been updated and that means they will contain outdated, incompatible code.  Worse, some unscrupulous programmers may have embedded malicious code within their templates.  There's no reason to take these risks, because modifying your existing Blogger template really isn't all that hard.&lt;br /&gt;&lt;br /&gt;&lt;strong&gt;The Advantage of Free Blogger Templates&lt;/strong&gt;&lt;br /&gt;&lt;br /&gt;The free templates provided by Blogger are current and up to date, and there is no risk of harming your computer. Blogger updates, when they inevitably occur, will still support your existing Blogger template even if you've customized it, but they may not be so kind to a third party work-around. What's more, I guarantee you that you will get to the point of wanting to customize your blog template, and the knowledge you will gain from adding a third column on your blog will give you the confidence and knowledge you need to succeed in customizing it even further. This approach gives you total control over the layout and look of your blog.&lt;br /&gt;&lt;br /&gt;If you have an existing blog and merely want to expand the template to include another column, our tutorials will be extremely helpful. The sole focus of Three Column Blogger is to show you how to add a new sidebar to your Blogger template - that's it. Tutorials on adding columns and sidebars is all we write about. Our tutorials will also show you how to adjust the margins and padding and other things incidental to adding a new column or sidebar.&lt;br /&gt;&lt;br /&gt;&lt;strong&gt;Add a Third Column to Blogger Easily&lt;/strong&gt;&lt;br /&gt;&lt;br /&gt;So if adding a third column to your blogger template is what you want to do, you've come to the right place. Our tutorials will show you how to add a third column to any free blogger template quickly and easily. We offer step by step, template-specific instructions. No more guessing or translating from one three-column tutorial to another. We show you specifically how to add a third column to YOUR blogger template. We look forward to helping you achieve your third column nirvanna soon!&lt;br /&gt;&lt;/div&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/8198937227131193549-709072190296508717?l=www.threecolumnblogger.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://www.blogger.com/feeds/8198937227131193549/709072190296508717/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='https://www.blogger.com/comment.g?blogID=8198937227131193549&amp;postID=709072190296508717' title='26 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/8198937227131193549/posts/default/709072190296508717'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/8198937227131193549/posts/default/709072190296508717'/><link rel='alternate' type='text/html' href='http://www.threecolumnblogger.com/2008/09/adding-third-column-to-blogger.html' title='Adding A Third Column To Blogger'/><author><name>REIT Wrecks</name><email>noreply@blogger.com</email><gd:extendedProperty xmlns:gd='http://schemas.google.com/g/2005' name='OpenSocialUserId' value='00692419550533468334'/></author><thr:total>26</thr:total></entry></feed>