3 Column Rounders 2
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.
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). 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. 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 2, look in the right sidebar for the specific version of Rounders that you are using, and click on on that link.
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:
/* Page Structure
-----------------------------------------------
((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)
Now, change the width of the "outer-wrapper" from 740 to 990:
#outer-wrapper {
width:740px;<-------change to 990
margin:0 auto;
text-align:$startSide;
font: $bodyFont;
}
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":
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). 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. 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 2, look in the right sidebar for the specific version of Rounders that you are using, and click on on that link.
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:
/* Page Structure
-----------------------------------------------
((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)
Now, change the width of the "outer-wrapper" from 740 to 990:
#outer-wrapper {
width:740px;<-------change to 990
margin:0 auto;
text-align:$startSide;
font: $bodyFont;
}
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":
#main-wrap1 {
width:485px;
float:left;
background:$mainBgColor url("http://www1.blogblog.com/rounders2/corners_main_bot.gif") no-repeat $startSide bottom;
margin:15px 0 0 ;<-------change this to "12px 0 0 12px"
padding:0 0 10px;
color:$mainTextColor;
font-size:97%;
line-height:1.5em;
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 */
}
That piece of code should now look EXACTLY like this:
#outer-wrapper {
width:990px;
margin:0 auto;
text-align:$startSide;
font: $bodyFont;
}
#main-wrap1 {
width:485px;
float:left;
background:$mainBgColor url("http://www1.blogblog.com/rounders2/corners_main_bot.gif") no-repeat $startSide bottom;
margin:12px 0 0 12px;
padding:0 0 10px;
color:$mainTextColor;
font-size:97%;
line-height:1.5em;
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 */
}
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):
#left-sidebar-wrap {
width:240px;
float:left;
margin:15px 0 0;
font-size:97%;
line-height:1.5em;
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 */
}
#newsidebar h2 {
color: $postTitleColor;
border-bottom: 1px dotted $postTitleColor;
}
#newsidebarbottom h2 {
color: $postTitleColor;
border-bottom: 1px dotted $postTitleColor;
}
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!
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:
#header-wrapper {
background:$titleBgColor url("http://www2.blogblog.com/rounders2/corners_cap_top.gif") no-repeat $startSide top;
margin-top:22px;
margin-$endSide:0;
margin-bottom:0;
margin-$startSide:0;
padding-top:8px;
padding-$endSide:0;
padding-bottom:0;
padding-$startSide:0;
color:$titleTextColor;
}
#header {
background:url("http://www.blogblog.com/rounders2/corners_cap_bot.gif") no-repeat $startSide bottom;
padding:0 15px 8px;
}
The top header url needs to be replaced with this link:
http://i454.photobucket.com/albums/qq270/threecolumnblogger/
corners_cap2_top.gif
and the bottom header url needs to be replaced with this link:
http://i454.photobucket.com/albums/qq270/threecolumnblogger/
corners_cap2_bot.gif
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:
#header-wrapper {
background:$titleBgColor url("
http://i454.photobucket.com/albums/qq270/threecolumnblogger/
corners_cap2_top.gif")
no-repeat $startSide top;
margin-top:22px;
margin-$endSide:0;
margin-bottom:0;
margin-$startSide:0;
padding-top:8px;
padding-$endSide:0;
padding-bottom:0;
padding-$startSide:0;
color:$titleTextColor;
}
#header {
background:url("
http://i454.photobucket.com/albums/qq270/threecolumnblogger/
corners_cap2_bot.gif")
margin-top:22px;
margin-$endSide:0;
margin-bottom:0;
margin-$startSide:0;
padding-top:8px;
padding-$endSide:0;
padding-bottom:0;
padding-$startSide:0;
color:$titleTextColor;
}
#header {
background:url("
http://i454.photobucket.com/albums/qq270/threecolumnblogger/
corners_cap2_bot.gif")
no-repeat $startSide bottom;
padding:0 15px 8px;
}
padding:0 15px 8px;
}
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:
#footer-wrap1 {
clear:both;
margin:0 0 10px;
padding:15px 0 0;
}
#footer-wrap2 {
background:$titleBgColor url("
http://i454.photobucket.com/albums/qq270/threecolumnblogger/
corners_cap2_top.gif")
no-repeat $startSide top;
color:$titleTextColor;
}
#footer {
background:url("
http://i454.photobucket.com/albums/qq270/threecolumnblogger/
corners_cap2_bot.gif")
color:$titleTextColor;
}
#footer {
background:url("
http://i454.photobucket.com/albums/qq270/threecolumnblogger/
corners_cap2_bot.gif")
no-repeat $startSide bottom;
padding:8px 15px;
}
#footer hr {display:none;}
#footer p {margin:0;}
#footer a {color:$titleTextColor;}
#footer .widget-content {
margin:0;
}
padding:8px 15px;
}
#footer hr {display:none;}
#footer p {margin:0;}
#footer a {color:$titleTextColor;}
#footer .widget-content {
margin:0;
}
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).
Anyway, in the same " */ Footer " section where you are now working, scroll down a little further until you see:
<div id='header-wrapper'>
Then, locate the the "main wrapper" id a few lines below it. It looks like this:
<div id='main-wrap1'><div id='main-wrap2'>
Now, just above the "main wrapper" id, copy (ctrl c) and paste (ctrl v) the following code EXACTLY as it appears below:
<div id='left-sidebar-wrap'>
<div id='sidebartop-wrap'><div id='sidebartop-wrap2'>
<b:section class='sidebar' id='newsidebar' preferred='yes'>
<b:widget id='BloggerButton1' locked='false' title='' type='BloggerButton'/>
</b:section>
</div></div>
<div id='sidebarbottom-wrap1'><div id='sidebarbottom-wrap2'>
<b:section class='sidebar' id='newsidebarbottom' preferred='yes'>
</b:section>
</div></div>
</div>
</div>
<div id='sidebartop-wrap'><div id='sidebartop-wrap2'>
<b:section class='sidebar' id='newsidebar' preferred='yes'>
<b:widget id='BloggerButton1' locked='false' title='' type='BloggerButton'/>
</b:section>
</div></div>
<div id='sidebarbottom-wrap1'><div id='sidebarbottom-wrap2'>
<b:section class='sidebar' id='newsidebarbottom' preferred='yes'>
</b:section>
</div></div>
</div>
</div>
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:
<div id='header-wrapper'>
<div id='crosscol-wrapper' style='text-align:center'>
<b:section class='crosscol' id='crosscol' showaddelement='no'/>
</div>
<div id='left-sidebar-wrap'>
<div id='sidebartop-wrap'><div id='sidebartop-wrap2'>
<b:section class='sidebar' id='newsidebar' preferred='yes'>
<b:widget id='BloggerButton1' locked='false' title='' type='BloggerButton'/>
</b:section>
</div></div>
<div id='sidebarbottom-wrap1'><div id='sidebarbottom-wrap2'>
<b:section class='sidebar' id='newsidebarbottom' preferred='yes'>
</b:section>
</div></div>
</div>
<div id='main-wrap1'><div id='main-wrap2'>
<div id='crosscol-wrapper' style='text-align:center'>
<b:section class='crosscol' id='crosscol' showaddelement='no'/>
</div>
<div id='left-sidebar-wrap'>
<div id='sidebartop-wrap'><div id='sidebartop-wrap2'>
<b:section class='sidebar' id='newsidebar' preferred='yes'>
<b:widget id='BloggerButton1' locked='false' title='' type='BloggerButton'/>
</b:section>
</div></div>
<div id='sidebarbottom-wrap1'><div id='sidebarbottom-wrap2'>
<b:section class='sidebar' id='newsidebarbottom' preferred='yes'>
</b:section>
</div></div>
</div>
<div id='main-wrap1'><div id='main-wrap2'>
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.
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.
Go back into the html tab, and scroll or CTRL F down to the section that says:
/** Page structure tweaks for layout editor wireframe */
Then, replace the code directly under the "/** Page structure tweaks for layout editor wireframe */" line with the following code block:
body#layout #header-wrapper,
body#layout #outer-wrapper,
body#layout #footer-wrap1 {
width:840px;
}
body#layout #main-wrap1 {
width: 485px;margin-right:10px;
}
body#layout #sidebar-wrap,
body#layout #left-sidebar-wrap {
width:150px;
}
The resulting code should look like this:
/** Page structure tweaks for layout editor wireframe */
body#layout #header-wrapper,
body#layout #outer-wrapper,
body#layout #footer-wrap1 {
width:840px;
}
body#layout #main-wrap1 {
width: 485px;margin-right:10px;
}
body#layout #sidebar-wrap,
body#layout #left-sidebar-wrap {
width:150px;
}
]]></b:skin>
</head>
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!
Labels: 3 Column Blogs, Column Rounders 2, Three Column Rounders 2

12 Comments:
This post has been removed by the author.
How do I make it so both columns are on the right instead of one on the right and one on the left?
Thanks
Hi RW
I've followed your instructions faithfully, your tutorial seems pretty easy to follow.... and well explained.
However, having made the edits, when I come to preview, I am getting the following error message:
"Your template could not be parsed as it is not well-formed. Please make sure that all XML elements are closed properly.
XML error message: The element type "body" must be terminated by the matching end-tag ""."
Any advice on what's going on here? Your further help would be much appreciated. Thanks in advance.
Saludos!
Hello again...
Any chance of answer to my question posted on 23rd February? I really would love to get a 3 Column Rounders for my blog... and still can't figure on why it's not working... sorry!
Thanks again in anticipation!
I get the same error as Cybernest. Any thoughts?
Actually Jen, having asked twice and receiving NO reply here... I got fed up waiting and found a solution to a Rounders 2 / 3 Column template here.
With a little bit of simple tweaking of that template code, I am now very happy with the 3 column Rounders 2 template I am using for my blog A Gibo's Tale!
Good luck to you in finding your solutin!
Saludos!
Hi very nice and cool tips to make a 3 columns templet.But may be your typing mistake the following codes
div id='left-sidebar-wrap
. .. .... ......
/div /div
/div
/div
Instate of 4 div tag there will be 3 div tag and the last tag must be eleminated.
I've used it and it works really, really well, so thanks for the step by step guide. One question, I'd like the title colours on the new side bar to match the ones on the side bar on the right, how do I achieve this?
http://diaryofaledger.blogspot.com/
You'll see what my issue is if you have a look at the site. I do love the 3 columns though and was very pleased when it worked.
Thanks again.
thank you so much for this tutorial. I have done it perfectly. keep up the good job
Everything copied & pasted properly. No changes were made to element BODY, and yet am getting error message: Your template could not be parsed as it is not well-formed. Please make sure all XML elements are closed properly.
XML error message: The element type "body" must be terminated by the matching end-tag "".
How do I fix this, please? I see others have had the same trouble, but no answer. I'm using Rounders 3 template. Please advise. Thank you
Thanks for this nice post. There is one extra end tag for div that causes an error. It's just a typo, please remove it. It is at the end of your recommended code that follows this sentence in the post:
"Now, just above the "main wrapper" id, copy (ctrl c) and paste (ctrl v) the following code EXACTLY as it appears below:"
I found this guide helpful.
Post a Comment
<< Home