Hacking Blogger Beta: Building a Three Column Template, Removing the Navbar and Adding a Picture to the Header
Before you begin - Check out these free blogger templates!
Looking for a three column Blogger Beta template? Looking to remove the Blogger Navbar? Looking to add a picture to your header? Then look no further!
Recently, I’ve received a lot of e-mails complimenting me on the clean, simple design of my site and asking me how I achieved it. Even though my site is hosted freely by Blogger, it differs substantially from the usual Blogger template. I have three columns in my site while most Blogger templates have just two. My Navbar is removed and I’ve added a picture to the header. Since so many people are interested in how to do this, I thought I’d explain it simple step by simple step.
Note: Before you even attempt any of these steps, backup your blog template – just in case. Simply click the ‘Download Full Template’ link in the Blogger admin area to download it to your computer.
Step 1: Creating A Three Column Template
Note: These instructions apply to the existing Minima Templates in Blogger Beta yet the same principles apply to all templates.
The first thing you want to do is enter the ‘Edit HTML’ section for your blog through the Blogger admin area.
Next, find this portion of the HTML (a simple, ‘find text’ search will suffice):
#sidebar-wrapper {
width: 220px;
float: right;
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 */
}
This bit of code defines the format of the sidebar for your blog which in the Minima Template is on the right. What we want to do is make a new sidebar with a new name (eg ‘new-sidebar’) and put it on the left hand side of the blog. Copy the code below and place it directly below the above code in your blog:
#newsidebar-wrapper {
width: 220px;
float: left;
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 */
}
The next part is a bit tricky. We’ve added a new column, but we haven’t changed the width of your blog. Look just above the code we just inserted in your blog to the #outer-wrapper section. Notice that the width is 660px. Yet what we have at this point is (left sidebar + main + right sidebar). Or (220px +410px +220px = 850px). Therefore, we need to change the width of the outer-wrapper so that it can fit our blog. You can vary the widths depending on the design of your blog, but in this example we’ll change the width to 850px so that the outer-wrapper section looks like this:
#outer-wrapper {
width: 850px;
margin:0 auto;
padding:10px;
text-align:left;
font: $bodyfont;
}
Now we’ve defined the columns in our blog but we still need to put them into the blog. Next, we want to find the <div id=’sidebar-wrapper’> portion of the text. Once again, a simple ‘find text’ will suffice. It should look like this:
<div id=’sidebar-wrapper’>
<b:section class=’sidebar’ id=’sidebar’ preferred=’yes’>
<b:widget id=’BlogArchive1′ locked=’false’ title=’Blog Archive’ type=’BlogArchive’/>
<b:widget id=’Profile1′ locked=’false’ title=’About Me’ type=’Profile’/>
</b:section>
</div>
This section adds the existing sidebar to the blog. We want to change it a little so that we are adding the newsidebar on the left. Also, Blogger won’t let us have the same two elements in both sidebars, so we want to remove the ‘BlogArchive1′ and ‘Profile1′ part of the code. Add the following newsidebar code directly above the <div id=’main-wrapper’> part of the HTML:
<div id=’newsidebar-wrapper’>
<b:section class=’sidebar’ id=’newsidebar’ preferred=’yes’>
<b:widget id=’Text1′ locked=’false’ title=” type=’Text’/>
</b:section>
</div>
Save it and that’s it!! Go to the ‘Page Elements’ tab and you should see three columns in your blog ready to be edited!
Step 2: Removing the Navbar
This step is incredibly easy. Simply copy and paste the following piece of code directly above the #header-wrapper line in the ‘Edit HTML’ view of your blog:
#navbar-iframe {
height: 0px;
visibility: hidden;
display: none;
}
Save the template and you’re done!
Note: Removing the Navbar is possibly against the Blogger Terms of Service. On their site, they state that the Navbar may be removed for those publishing via FTP to their own server. They do not explicitly state that other users can not do it too. Furthermore, the fact that they allow you to edit the HTML of your blog gives the impression that you can display your blog as you wish. But there is no definitive answer. You’ve been warned!
Step 3: Add A Picture To Your Header
Again, an incredibly simple step. Find the part of your HTML that looks like this (a simple ‘find text’ search will suffice):
<div id=’header-wrapper’>
<b:section class=’header’ id=’header’ maxwidgets=’1′ showaddelement=’no’>
<b:widget id=’Header1′ locked=’true’ title=’blogtitle (Header)’ type=’Header’/>
</b:section>
</div>
What we want to do is change it so that the maximum number of widgets(elements) is more than one. Furthermore, we want to be able to show ads and be able to delete the header elements that we don’t want. So, we want to change the maxwidgets to how many elements we want (let’s say ‘5’), change the showaddelement to ‘yes’ and put the locked to ‘false’. We want to replace the above code with this one:
<div id=’header-wrapper’>
<b:section class=’header’ id=’header’ maxwidgets=’5′ showaddelement=’yes’>
<b:widget id=’Header1′ locked=’false’ title=’blogtitle (Header)’ type=’Header’/>
</b:section>
</div>
Save it and you’re done! You should now be able to add a picture to the header. Be careful with the size of your picture. I’ve found that if the picture is too big, it won’t display. If your picture doesn’t display, try reducing the size.
And that’s how easy it is!
Too hard? Download the templates here!! Right click the link and save the file to your PC!
Download the Three Column Minima White Blogger Beta Template with the Navbar
Download the Three Column Minima White Blogger Beta Template without the Navbar
Download the Three Column Minima Dark Blogger Beta Template with the Navbar
Download the Three Column Minima Dark Blogger Beta Template without the Navbar
To install these templates, simply use the ‘Upload Template’ facility in the ‘Edit HTML’ section of the Blogger admin area!
Rich people subscribe to Cash Quests
RSS
Archives


Hi there Kumiko,
A very lovely blog you have.. truly stand out among all other Money Making Blogs. I’m also publishing my own blog on making money just like yourself and was wondering if you’d mind exchanging links with me?
My site can be found at:
http://how2make.blogspot.com
Thanks for your consideration.
Daryl
by Daryl W.T. Lau
Thanks dear for the link to my How2Earn blog. Sharing is indeed caring
by Daryl W.T. Lau
Nice blog… Are you permanently in Tokyo?
We’ve listed you at http://harro.com
Cheers.
by Harro!
Hi kumiko,
I saw you got some earnings. Are they from Adsense?
I think the most effective way to get more people to visit your site is via the below few methods.
1. Forum Marketing
2. Article Marketing
3. RSS
4. Link Exchange
5. Traffic Exchange (Not for adsense site)
Think of your blog as a HUB and the rest of the method to generate traffic as Feeder. All the feeders will feed traffic into the HUB.
More traffic more earnings. Hope you like this.
I will add your site to my blog.
Cheers!
Adwin
by adwin
Thank you very much for your simple tutorial on how to build a three column template …
by Mat Nyibuk
Thanks for the tutorial, but I’m still having a bit of trouble. Once I have the third column in the template, The right column widgets are below the body and to the right, and they hang over the edge so that I can’t click the edit button in each widget. Any ideas?
Thanks
by David and Carmen
Thank you for this tutorial!!! I have been scouring the web for this info that was user friendly and doable. Yours was the first! So thank you! Thank you!
by Adventures in Baby Fat
I have a solution for this comment
“Thanks for the tutorial, but I’m still having a bit of trouble. Once I have the third column in the template, The right column widgets are below the body and to the right, and they hang over the edge so that I can’t click the edit button in each widget. Any ideas?”
Thanks
Its on blog i don’t mean to be saming or anything
http://questmoney.blogspot.com/
by blog gadget
take a look at this article How to hide blogger nav bar
i think its more usable than completely hiding the navigation
by Anonymous
Kumiko,
Thank you - thank you - thank you!! I have been working on my Hippie Spelunker blog all day with your help! And I am having so much fun - you’re the best! You WILL be getting a link on my site!!
Thanks TONS!
Lisa
by Lisa
Hi Kumiko,
Thank you for adding this information. Very good! However, the Rounders templates in Blogger are much more difficult to configure and position the three columns.
If anyone can help on this, I’d appreciate you contacting me right away. Feel free to comment me on my blog. Please help.
Thanks.
by mslatinarenee
Bless you, Kumiko.
by Bulbboy
Thanks for this tutorial. i tried it and it work. i’ve tried other tips before but they all don’t, hope i got it right, but your tip work. Good you made it so simple. Hope you could give out new other tips. If you have time, i’ll be glad to receive and email from you, ever_2769@yahoo.com. Thanks.
by E Akino
Hope you could visit my blog http://kabayan-junction.blogspot.com some of the images are cut, i tried to adjust the size but i won’t work properly. Hope you could also give my your email add. Promise i won’t bug you to much, just 10 times a day. lol. Anyway thanks.
by E Akino
E Akino - Your pictures are bigger than your column width. Increase the size of your columns or decrease the size of your pictures.
Kumiko
by Kumiko
Thanks for the tricks. Will try it soon
by BundaWAH
great stuff
i have used both the nav bar and title hacks already and will be implementing a new column or two when i get a chance
by macgoo
This is a cute blog from a cute girl. Thanks for your tricks and tips.
by Khang
Hi, just to say thanks to your info. about building a 3 column template.
It’s very helpful to my blog
Again, thanks ^^
And nice blog ^^
by Mavis
Hi Kumiko
I found this EXTREMELY helpful. Thank you so much. Ebe isi weputa, ya no’chie (means ‘whatever you give, may you receive three-fold in return’).
You take care…
black.pixie
by black pixie
Hi,
Thanks for the excellent information that you have provided for three column template. I am a starter with blogs and my blog is at http://info4beingrich.blogspot.com I am interested to exchange links with you please.
by info4beingrich
Are those templates still available for download? I tried download one but it brings me to parked page….
by IngaOz
Your ability to explain things in a easy to understand format is just amazing! I completely understand your posts - I read a lot of ‘em! It’s my first time here and I will definitely be back to check out the site. More power! Mabuhay!
by AnitoKid
All of the contents are useful for me. Thank you for the tips!
by arisjulianta
You’re welcome! Glad that you liked them!
by Princess Kumiko
Can you give me the HTML for getting this comments box for my blog and do follow tag you have installed in comments.
Hope to get benefitted Best Indian Stock Market BLOG with Online Money making Tips from sites which Pays
by KAVITA
[...] How to remove your navbar [...]
by Free Blogger Templates » Make Money Online at Kumiko's Cash Quest
Hi Kavita,
Read this article to learn how to make your blogger blog do follow for comments:
http://cyberst0rm.blogspot.com/2007/05/how-to-hack-blogger-removing-nofollow.html
by cyberst0rm
thank you so much that was way easier than i expected and by the way it is not against the ToS
here is the official link on removing the navbar
http://help.blogger.com/bin/answer.py?answer=42269
by erik
I’m in the middle of trying to make a new template bkground for my blog which is like most, 2 columns. your directions above are easy enough but they don’t work!! after i add the last section it will not let me “preview” or “save”. I keep getting an error (which i can’t relate at the moment because at 4am i gave up and went to bed and closed it up).. so no exact words in my head at the moment but it was something about an error because {’1′} needed id quotes (or something like that!!)
I wanted to try and add a column rather than try a 3 column template because so much work was involved already (days) learning how to tweak this new code (xml stuff) and getting the widths, colors, etc to my liking..
i of course have been googling the error msg but only find ppl who get the same problem but no answers..
but don’t misunderstand, i appreciate when anyone tries to post help especially like above when it’s easily written out, even though it didn’t work lol.
by BJ
Hi. I already have a three column template, but would like to move my sidebars both to the left. Could you help me? It looks like you are able to explain things very clearly. I would appreciate it. Thanks!
by Mike+
[...] 5. CashQuests [...]
by Essentral » Blog Archive » 8 Sites with Free Blogspot Templates and Tricks