Putting a Cool Multi Column Footer Widget In Blogger

Do you want to make your visitors more busy after reading your posts? Aside from adding widgets such as read more , recent post and popular post, you can still add spice to your blog by adding a multi column footer on it.This  kind of footer could be three, four or as many as you want, you just simply adjust the width to let this footer fit to your blog's lay-out.

putting three column footer


Live Demo


Putting Multi Column Footer In Blogger


Step 1. Log -in to your Blogger Account
Step 2. Go to Blogger Dashboard and select the Template button (please back-up your template)
Step 3. Hit the Edit HTML button
Step 4. Search the code below
]]></b:skin>
Step 5. And just above ]]></b:skin , paste the following css code:
/*----- BBT COOL MULTI COLUMN FOOTER WIDGET -----*/
#lower {
margin:auto;
padding: 0px 0px 10px 0px;
width: 100%;
background:#158aee;
}
#lower-wrapper {
background:#ddd;
margin:auto;
padding: 20px 0px 20px 0px;
width: 960px;
border:0;
}
#lowerbar-wrapper {
background:#FE2EF7;
float: left;
margin: 0px 5px auto;
padding-bottom: 20px;
width: 23%;
text-align: justify;
color:#ddd;
font: bold 12px Arial, Tahoma, Verdana;
line-height: 1.6em;
word-wrap: break-word;
overflow: hidden;
-webkit-transition: all 0.2s ease;
-moz-transition: all 0.2s;
-ms-transition: all 0.2s;
-o-transition: all 0.2s;
border-radius: 30px;
}
#lowerbar-wrapper:hover{
border-radius:0;
background-color: #FE2EF7;
}

.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;
border:0;
color:#ddd;
text-transform:uppercase;
font: bold 14px Arial, Tahoma, Verdana;
}
.lowerbar ul {
color:#fff;
margin: 0 auto;
padding: 0;
list-style-type: none;
}
.lowerbar li {
display:block;
color:#fff;
line-height: 1.6em;
margin-left: 0 !important;
padding: 6px;
border-bottom: 1px solid #222;
border-top: 1px solid #444;
list-style-type: none;
}
.lowerbar li a {
text-decoration:none; color: #d8d8d8;
}
.lowerbar li a:hover {
text-decoration:underline;
}
.lowerbar li:hover {
display:block;
background: #222;
}
Step 6. Now we will add a set of code to the body section  of your template. Search the code </body>
 and just above it 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 id='lowerbar-wrapper'>
<b:section class='lowerbar' id='lowerbar4' preferred='yes'>
</b:section>
</div>

<div style='clear: both;'/>
</div> </div>

Step 6. Now Save your Template!

Customization:

  • Replace 158aee  in order to change the color blue (outside your footer section). You can select your hexadecimal color here.
  • Replace ddd to change the color of your footer body section.
  • Replace FE2EF7 in order to change the pink background of your specific footer widget.
  • Replace d8d8d8  to change color title of your list item (li), like for example in the popular post widget the (first) list item is Sample Post for Testing.
  • Delete the orange highlighted text above if you want to disable the hover effect on your footer widget.
  • To subtract or get one column footer, just delete the tag 

  • <div id='lowerbar-wrapper'>  <b:section class='lowerbar' id='lowerbar4' preferred='yes'>  </b:section>  </div>

  • Or if you want to add another column footer, just add the code below,

  • <div id='lowerbar-wrapper'>  <b:section class='lowerbar' id='lowerbar5' preferred='yes'>  </b:section>  </div>
    But be sure to replace the width 23% with 17% in order to fit properly all your footer widgets in your footer's body section.

    If you have some questions regarding this post, try to contact me or leave a comment below.We are happy  to hear your voice pal.
    Enjoy and God Bless Us All!!!

How to Customize Sidebar Using Animated Borders In Blogger

Mastering the different SEO tips, providing quality and unique  contents to the visitors really matters most to bloggers who are goal-oriented. And having a unique and creative sidebar  also adds weigh in order to attract our readers  to stay a longer period of time in our site. This is important to guide the readers to take a look on to those plug-in, widgets and gadgets and consequently interact on them. Feel excited to apply this tweak on your blog? Please follow the steps below.

Live Demo


How to Animate Moz (Normal) Border In Blogger Sidebar

customize sidebar with hover effect


Step 1. Log-in to your Blogger Account
Step 2. Go to Blogger Dashboard
Step 3. Click Template (back-up your template)
Step 4. Hit the Edit HTML button
Step 5. Look for the code ]]></b:skin>
Step 6. Just above ]]></b:skin> paste the code below

.sidebar .widget {
border:2px dashed #FF0000;
padding:0;
-webkit-transition: all 0.2s ease;
-moz-transition: all 0.2s;
-ms-transition: all 0.2s;
-o-transition: all 0.2s;
background-color:none;
}
.sidebar .widget:hover {
border:2px ridge #DF0101;
padding:0;
}

  • Replace dashed with a different border styles here.
  • Change or replace the hexadecimal color FF0000 and DF0101  that would blend to blog's theme here.
Step 7. Save your Template!

How to Customize Sidebar Using Animated Moz- Border In Blogger



Live Demo

Step 1. Repeat step 1 to 5 above
Step 2. Paste the code below above ]]></b:skin>
.sidebar .widget {
border-top-left-radius: 0;
border-bottom-right-radius: 0;
padding:0;
-webkit-transition: all 0.2s ease;
-moz-transition: all 0.2s;
-ms-transition: all 0.2s;
-o-transition: all 0.2s;
background-color: #E6E6E6;
}
.sidebar .widget:hover {
border-top-right-radius: 20px;
border-bottom-left-radius: 20px;
padding: 0;
background-color: #D8D8D8;
}
Step 3. Save your Template and you are done!

Adding Webkit- Box-Shadow to Menu Tabs and Side Bar Title

Most professional blogs like Mybloggertricks  and Bloggertrix have a very beautiful navigation bar because they added a shadow that tends to glow if you look at it in a  closer mode. Take a glance also in my menu tabs above and in my sidebar titles as an example. Want to know how I have made it? Of course, I will share here in this article the process in making that webkit- box- shadow.

putting webkit box shadow to menu tabs


Adding Webkit- Box-Shadow to Menu Tabs or Navigation Bar


Step 1. Open your Blogger account and go to Blogger Dashboard section
Step 2. Click Template button (have a back-up of your template before proceeding to step 3)
Step 3. Hit  Edit HTML
Step 4. Look (Control F) for the code #bbtnav {  (this is part or included of whole CSS that is responsible for navigation bar)

This may look like this:
#bbtnav {
Some codes here.............
}
Note: To  know your own unordered list (ul) ID, like for example (bbtnav) in my case, just go to your blogger lay-out page and find the set of code that is responsible of your menu tabs. Usually this ul ID is located at the first part of the whole code. Or can attach or send your blog url at my contact page to let me find your ul ID of your navigation bar.

In my case, this is the set of codes:
<ul id='bbtnav'>
        <li>
          <a href='http://bloggingtipsandtrix.blogspot.com/'>Home</a>
         </li>
        <li>
          <a href='http://bloggingtipsandtrix.blogspot.com/2012/12/about-me.html'>About</a>
       </li>
        <li>
          <a href='http://bloggingtipsandtrix.blogspot.com/2013/04/var-servicedomainwww.html'>Contact</a>
        </li>
 <li>
          <a href='http://bloggingtipsandtrix.blogspot.com/2013/01/sitemap-for-blogging-tips-and-trix.html'>Sitemap</a>
        </li>
 <ul>
Step 4. Add the additional CSS code below to have a webkit-box-shadow on your navigation bar
-webkit-box-shadow: 0 -2px 30px #1751ff;
box-shadow: 0 -1px 30px #1751ff;
border-top: 1px solid #1484fc;
border-bottom: 1px solid #1484fc;

Therefore, your final CSS code will be:
#your ul ID here {
width: 961px;
background: #000000;
margin: -32px 0 0 -1px;
padding: 0;
height:30px;
-webkit-box-shadow: 0 -2px 30px #1751ff;
box-shadow: 0 -1px 30px #1751ff;
border-top: 1px solid #1484fc;
border-bottom: 1px solid #1484fc;

Step 5. Save your template.

Adding Webkit-Box-Shadow to Your Sidebar Title


adding webkit box shadow to sidebar title

Note: Before proceeding to the steps below, be sure you have already put a background color or an image to your sidebar title to make this tweak more effective.

Step 1. In your Blogger Template Editor's page look for the code

#PopularPosts1 h2 {
  • Popular Posts1 is the ID of your widget. To know how to get the particular ID of the widget you have inserted in your Lay-out page, click here
Step 2. Add the code below after the line   #Your widget Id here h2 {

-webkit-box-shadow: 0 -2px 20px #ffbf00;

  • Do these on all your sidebar title widget to have a uniform effects.
  • Change the hexadecimal color ffbf00 with your own. You can select it here.
Step 3. Save your template! And now visit your blog to see your new sidebar header title with  glowing effects.

How To Add Gadget Above Header Section

It has been a couple of days already  when I published a post regarding on how to add adsense code or any gadgets beside the header section. Now, I am thinking to make another tutorial on adding gadget still in the neighboring parts of the header section and that is above  on it.
If we try to drag some gadgets above the header area, we found it difficult because the default template of Blogger that we are using is locked, so we will try to unlock it and add widget (not to mention the navbar and favicon section).You will how, if you follow these steps.

adding adsense  above header




How To Add Adsense,Banner,or any Gadget Above Your Header Section


Step 1. In your Blogger Dashboard, click the Template button,
Step 2. (Have a back-up of your Template). Hit the HTML button,
Step 3. Search for the code below,
<b:section class='header' id='header' maxwidgets='1' showaddelement='no'>
Step 4. Replace '1' with '3'  or your desired number of widgets to be added at the top of your header area
Step 5. Replace 'no' with 'yes' in order to show your added gadget/element.
Step 6. Save your Template


How to Remove Moz- Border- Radius or Rounded Borders in Blogger

In  Blogger Template (especifically Picture Window) that  I am using, I meet a small  problem regarding on how to remove the moz-border-radius in my menu tabs  and the  surrounding corners of its body and footer area . But a big big thanks! to Google Chrome in his capability to let me see how  my design looks like by adjusting the settings live on screen without going to my Blogger template editor page  and to make the story short, I had succeeded in finding a solution of that problem. In this tutorial I will share you the steps on how to make it and the CSS is highly customizable according to your preferences.

removing moz-border-radius

INTO THIS

how to remove moz-border-radius


How to Remove Moz- Border- Radius in Menutabs, Body and Footer Section and Replace it with Straight Vertical Line


Step 1. Go to Blogger Dashboard
Step 2. Click Template
Step 3. Hit the Edit HTML button
Step 4. Look or find the code ]]></b:skin> and just before it paste the code below
.tabs-inner .widget li a {
-moz-border-radius:  0;
-webkit-border-top-left-radius:0;
-webkit-border-top-right-radius: 0;
border-radius: 0 0 0 0;
border-top-left-radius:0px;
border-top-left-radius: 0px;
border-bottom-left-radius: 0;
}
.tabs-inner .widget li:first-child a {
border-top-left-radius:0px;
}
.footer-outer{
border-bottom-left-radius:0;
border-bottom-right-radius:0;
}
.content-outer, .region-inner {
min-height:2px ;
margin: 0 auto ;
background-color:#FAFAFA;
border-top-left-radius:0;
border-top-right-radius:0;
}

Explanation:
  • The first set of code ( .tabs-inner .widget li a) is responsible for removing the  moz-border-radius of your menu-tabs (inner part).
  • The second set of code (.tabs-inner .widget li:first-child a ) is responsible in removing the moz-border-radius (border top left portion) in the first tab of your menu-tabs. In my case this the top left portion of my home tab.
  • The third part (.footer-outer )  works in removing those moz-border-radius in your footer area both in left and right portion of it.
  • And finally, the last part (.content-outer, .region-inner  ) removes those moz-border-radius above your content- outer region.
Customization (Optional):
1. Click here to change the hexadecimal color (FAFAFA)

Step 5. Click preview to see the initial effect of the codes
Step 6. Finally, Save your Template and you are done. Enjoy!

How to Customize Labels in Blogger Using CSS3

I've done a number of customizations in my blogger sidebar already like putting background to its sidebar title, putting background on it  and for this time I will share you a trick which I've learned from helperblogger and that is customizing the label gadget using CSS3.  Now, let us find out how to apply this hack to your blogger Template.
design blogger labels with css3

Note:  Before using this tutorial, set your label  in cloud  style. 
         

Customizing Blogger Labels Using CSS3


Check Also: 
How to Customize Blogger Labels Using Bricks Style!
Step 1. Go to your Blogger Dashboard
Step 2. Hit the Template button (always click the back- up button before editing your template)
Step 3. Click the Edit HTML button.
Step 4. Look  (control F) the code ]]></b:skin> and just above it, paste the code below:
.label-size {
    float: left;
    margin: 0 0 7px 20px;
    position: relative;
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
    font-size: 0.75em;
    font-weight: bold;
    text-decoration: none;
    color: #996633;
    text-shadow: 0px 1px 0px rgba(255,255,255,.4);
    padding: 0.417em 0.417em 0.417em 0.917em;
    border-top: 1px solid #d99d38;
    border-right: 1px solid #d99d38;
    border-bottom: 1px solid #d99d38;
    -webkit-border-radius: 0 0.25em 0.25em 0;
    -moz-border-radius: 0 0.25em 0.25em 0;
    border-radius: 0 0.25em 0.25em 0;
    background-image: -webkit-linear-gradient(top, rgb(254, 218, 113), rgb(254, 186, 71));
    background-image: -moz-linear-gradient(top, rgb(254, 218, 113), rgb(254, 186, 71));
    background-image: -o-linear-gradient(top, rgb(254, 218, 113), rgb(254, 186, 71));
    background-image: -ms-linear-gradient(top, rgb(254, 218, 113), rgb(254, 186, 71));
    background-image: linear-gradient(top, rgb(254, 218, 113), rgb(254, 186, 71));
    filter: progid:DXImageTransform.Microsoft.gradient(GradientType=0,StartColorStr='#feda71', EndColorStr='#feba47');
    -webkit-box-shadow: inset 0 1px 0 #faeaba,
        0 1px 1px rgba(0,0,0,.1);
    -moz-box-shadow: inset 0 1px 0 #faeaba,
        0 1px 1px rgba(0,0,0,.1);
    box-shadow: inset 0 1px 0 #faeaba,
        0 1px 1px rgba(0,0,0,.1);
    z-index: 1;
}
.label-count {
white-space: nowrap;
display: none;
}
 .label-size:before {
    content: '';
    width: 1.30em;
    height: 1.39em;
    background-image: -webkit-linear-gradient(left top, rgb(254, 218, 113), rgb(254, 186, 71));
    background-image: -moz-linear-gradient(left top, rgb(254, 218, 113), rgb(254, 186, 71));
    background-image: -o-linear-gradient(left top, rgb(254, 218, 113), rgb(254, 186, 71));
    background-image: -ms-linear-gradient(left top, rgb(254, 218, 113), rgb(254, 186, 71));
    background-image: linear-gradient(left top, rgb(254, 218, 113), rgb(254, 186, 71));
    filter: progid:DXImageTransform.Microsoft.gradient(GradientType=1,StartColorStr='#feda71', EndColorStr='#feba47');
    position: absolute;
    left: -0.69em;
    top: .2em;
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    -o-transform: rotate(45deg);
    transform: rotate(45deg);
    border-left: 1px solid #d99d38;
    border-bottom: 1px solid #d99d38;
    -webkit-border-radius: 0 0 0 0.25em;
    -moz-border-radius: 0 0 0 0.25em;
    border-radius: 0 0 0 0.25em;
    z-index: 1;
}

.label-size:after {
    content: '';
    width: 0.5em;
    height: 0.5em;
    background: #fff;
    -webkit-border-radius: 4.167em;
    -moz-border-radius: 4.167em;
    border-radius: 4.167em;
    border: 1px solid #d99d38;
    -webkit-box-shadow: 0 1px 0 #faeaba;
    -moz-box-shadow: 0 1px 0 #faeaba;
    box-shadow: 0 1px 0 #faeaba;
    position: absolute;
    top: 0.667em;
    left: -0.083em;
    z-index: 9999;
}

#Label1 {
    height: 210px;
}

.label-size:hover {
    background-image: -webkit-linear-gradient(top, rgb(254, 225, 141), rgb(254, 200, 108));
    background-image: -moz-linear-gradient(top, rgb(254, 225, 141), rgb(254, 200, 108));
    background-image: -o-linear-gradient(top, rgb(254, 225, 141), rgb(254, 200, 108));
    background-image: -ms-linear-gradient(top, rgb(254, 225, 141), rgb(254, 200, 108));
    background-image: linear-gradient(top, rgb(254, 225, 141), rgb(254, 200, 108));
    filter: progid:DXImageTransform.Microsoft.gradient(GradientType=0,StartColorStr='#fee18d', EndColorStr='#fec86c');
    border-color: #e1b160;
}

.label-size:hover:before {
    background-image: -webkit-linear-gradient(left top, rgb(254, 225, 141), rgb(254, 200, 108));
    background-image: -moz-linear-gradient(left top, rgb(254, 225, 141), rgb(254, 200, 108));
    background-image: -o-linear-gradient(left top, rgb(254, 225, 141), rgb(254, 200, 108));
    background-image: -ms-linear-gradient(left top, rgb(254, 225, 141), rgb(254, 200, 108));
    background-image: linear-gradient(left top, rgb(254, 225, 141), rgb(254, 200, 108));
    filter: progid:DXImageTransform.Microsoft.gradient(GradientType=1,StartColorStr='#fee18d', EndColorStr='#fec86c');
    border-color: #e1b160;
}

Customization (Optional):

1. Simply delete the texts/code being highlighted in  orange color above in order to show the number of posts bearing the name of particular label beside the label tag as shown in the screenshot below.
2. Adjust the height of the label by changing the height (in yellow text) above (210px)

customize labels using css3


Step 5. Finally, click the Save button. Enjoy!