I am sure you have noticed three column footer at bottom side of many commercial or professional sites. Which helps to add whatever stuff you like.
3 Column footer widget keeps readers busy in seeing stuff that you have implemented in it. You can add
recent posts widget,
popular posts widget or anything you like.
This footer widget contains 3 columns where you are enable to add as many widgets as you want into each column.
If you want to this widget to be added into your blog's bottom section, All you have to do is to follow the easy steps given below :
Preview : Add a Three Column Footer Widget in Blogger
Go to
Blogger Dashboard > Template > Edit HTMLPress CTRL + F to enable the search box, then search for this :
]]></b:skin>
Just before it, Paste this CSS code,
/* ----- LOWER SECTION ----- */
#lower {
margin:auto;
padding: 0px 0px 10px 0px;
width: 100%;
background:#333434;
}
#lower-wrapper {
margin:auto;
padding: 20px 0px 20px 0px;
width: 960px;
}
#lowerbar-wrapper {
border:1px solid #DEDEDE;
background:#fff;
float: left;
margin: 0px 5px auto;
padding-bottom: 20px;
width: 32%;
text-align: justify;
font-size:100%;
line-height: 1.6em;
word-wrap: break-word;
overflow: hidden;
}
.lowerbar {margin: 0; padding: 0;}
.lowerbar .widget {margin: 0; padding: 10px 20px 0px 20px;}
.lowerbar h2 {
margin: 0px 0px 10px 0px;
padding: 3px 0px 3px 0px;
text-align: left;
color:#0084ce;
text-transform:uppercase;
font: bold 14px Arial, Tahoma, Verdana;
border-bottom:3px solid #0084ce;
}
.lowerbar ul {
margin: 0px 0px 0px 0px;
padding: 0px 0px 0px 0px;
list-style-type: none;
}
.lowerbar li {
margin: 0px 0px 2px 0px;
padding: 0px 0px 1px 0px;
border-bottom: 1px dotted #ccc;
}
Now Search For
</body>
and just above this code paste the code below,
<div id='lower'>
<div id='lower-wrapper'>
<div id='lowerbar-wrapper'>
<b:section class='lowerbar' id='lowerbar1' preferred='yes'>
</b:section>
</div>
<div id='lowerbar-wrapper'>
<b:section class='lowerbar' id='lowerbar2' preferred='yes'>
</b:section>
</div>
<div id='lowerbar-wrapper'>
<b:section class='lowerbar' id='lowerbar3' preferred='yes'>
</b:section>
</div>
<div style='clear: both;'/>
</div> </div>
Save your template. done!
Now, Just go to the layout section of your blog, and start adding widgets into the footer section. !!
Also see : Add Auto Read More with Thumbnail to Blogger/Blogspot
You can customize look and colors of this widgets according to your need by editing into the CSS style above.Read descriptions below carefully to better stylize your three column widget.