Showing posts with label css. Show all posts
Showing posts with label css. Show all posts

Horizontal/ vertical navigation menu or tab menu are the heart of every web page or blog. Navigation menu helps readers to find out the latest and important topic of the website. To create a Navigation menu you must have good knowledge of CSS and HTML. But since more and more designers are sharing their tutorials online, coding has become far easier. I have got 40+ top class navigation menus. These horizontal menu which works with pure CSS3 and it is designed by dynamic drive. You just need to copy and paste the codes and that’s it!

To add your selected navigation menu to your blogger template follow these steps,
  1. Go To Layout Add a GadgetHTML/JavaScript
  2. Simply paste the Navigation Menu Code inside HTML/JavaScript
  3. Now click on Save
  4. How drag & drop the HTML/javascript widget to Header Section.
    For more help you can see the following image.

  5. This is the Navigation Menu code ...
    <li><a href="#" ><span>Link 1</span></a></li>
      <li><a href="#" ><span>Link 2</span></a></li>
      <li><a href="#" ><span>Link 3</span></a></li>
      <li><a href="#" ><span>Link 4</span></a></li>
      <li><a href="#" ><span>Link 5</span></a></li>
      <li><a href="#" ><span>Link 6</span></a></li>
      <li><a href="#" ><span>Link 7</span></a></li>
    Hints: You have to change the "#" with the link of the page. And you should change the name of the Pages. Change Page1, Page 2, Page 3 to your desired page name.
<style> #navcontainer { /* none needed */ } ul#navlist { margin: 0; padding: 0; list-style-type: none; white-space: nowrap; } ul#navlist li { float: left; font-family: verdana, arial, sans-serif; font-size: 9px; font-weight: bold; margin: 0; padding: 5px 0 4px 0; background-color: #666; border-top: 1px solid #e0ede9; border-bottom: 1px solid #e0ede9; } #navlist a, #navlist a:link { margin: 0; padding: 5px 9px 4px 9px; color: #fff; border-right: 1px solid #d1e3db; text-decoration: none; } ul#navlist li#active { color: #95bbae; background-color: #d1e3db; } #navlist a:hover { color: #fff; background-color: #FE9C54; } </style> <div id="navcontainer"> <ul id="navlist"> <li><a href="#"><span>Link 1</span></a></li> <li><a href="#"><span>Link 2</span></a></li> <li><a href="#"><span>Link 3</span></a></li> <li><a href="#"><span>Link 4</span></a></li> <li><a href="#"><span>Link 5</span></a></li> <li><a href="#"><span>Link 6</span></a></li> <li><a href="#"><span>Link 7</span></a></li> </ul> </div>
<style> #tabsE { float:left; width:100%; background:#000; font: bold 7.5pt Verdana; line-height:normal; } #tabsE ul { margin:0; padding:10px 10px 0 50px; list-style:none; } #tabsE li { display:inline; margin:0; padding:0; } #tabsE a { float:left; background:url(https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEgeduz41BFWCtmFifmuBqx2X7PvE2ubsBiq5u8GtUuN5M9cVACts0O0J-gef4f17lue33rv8J4aA3FhPFpnzOx-O62pwQ845bgKF5_wRiqr9QO0WO-TvvtA7kJn7dFFanuMsfPehpgBmNE/s1600/tableftE.png) no-repeat left top; margin:0; padding:0 0 0 4px; text-decoration:none; } #tabsE a span { float:left; display:block; background:url(https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEjmrZ_OS0lPovpCFup6-U1Bm7KNlVUrazUedsWAq9PjYAhpM0Sivl3XM9BEH_DGBwIlyLme5eNisRuCO89pUJIPNzFpMd069te9S4XMGt3upCSVcN6-6Nh9nAUmnLNv9KtO43JYYCc9_4o/s1600/tabrightE.png) no-repeat right top; padding:5px 15px 4px 6px; color:#FFF; } /* Commented Backslash Hack hides rule from IE5-Mac \*/ #tabsE a span {float:none;} /* End IE5-Mac hack */ #tabsE a:hover span { color:#FFF; } #tabsE a:hover { background-position:0% -42px; } #tabsE a:hover span { background-position:100% -42px; } </style> <div id="tabsE"> <ul> <li><a href="#"><span>Link 1</span></a></li> <li><a href="#"><span>Link 2</span></a></li> <li><a href="#"><span>Link 3</span></a></li> <li><a href="#"><span>Link 4</span></a></li> <li><a href="#"><span>Link 5</span></a></li> <li><a href="#"><span>Link 6</span></a></li> <li><a href="#"><span>Link 7</span></a></li> </ul> </div>

<style> #navcontainer { float:left; width:100%; background:#fff; font: bold 7.5pt Verdana; line-height:normal; border-bottom:1px solid #6659A7; border-top:1px solid #6659A7; } ul#navlist { margin: 0; padding: 0; list-style-type: none; white-space: nowrap; } ul#navlist li { float: left; font-family: verdana, arial, sans-serif; font-size: 9px; font-weight: bold; margin: 0; padding: 5px 0 4px 0; background-color: #6659A7; border-top: 1px solid #e0ede9; border-bottom: 1px solid #e0ede9; } #navlist a, #navlist a:link { margin: 0; padding: 5px 9px 4px 9px; color: #fff; border-right: 1px solid #d1e3db; text-decoration: none; } ul#navlist li#active { color: #95bbae; background-color: #d1e3db; } #navlist a:hover { color: #666; background-color: #fff; } </style> <div id="navcontainer"> <ul id="navlist"> <li><a href="#"><span>Link 1</span></a></li> <li><a href="#"><span>Link 2</span></a></li> <li><a href="#"><span>Link 3</span></a></li> <li><a href="#"><span>Link 4</span></a></li> <li><a href="#"><span>Link 5</span></a></li> <li><a href="#"><span>Link 6</span></a></li> <li><a href="#"><span>Link 7</span></a></li> </ul> </div>
<style> #tabs { font: bold 7.5pt Verdana; } #navcontainer { float:left; margin: 0; padding: 8px 0px; width:100%; background:#575656; font-size:93%; line-height:normal; } ul#navlist { margin: 0; padding: 0; list-style-type: none; white-space: nowrap; } ul#navlist li { float: left; font: bold 7.5pt Verdana; line-height: 14px; margin: 0; padding: 5px 0 5px 0; } #navlist a, #navlist a:link { margin: 0; padding: 10px; color: #fff; border: 4px solid #575656; text-decoration: none; } #navlist a:hover { color: #fff; border: 4px solid #fff; } </style> <div id="navcontainer"> <ul id="navlist"> <li><a href="#"><span>Link 1</span></a></li> <li><a href="#"><span>Link 2</span></a></li> <li><a href="#"><span>Link 3</span></a></li> <li><a href="#"><span>Link 4</span></a></li> <li><a href="#"><span>Link 5</span></a></li> <li><a href="#"><span>Link 6</span></a></li> <li><a href="#"><span>Link 7</span></a></li> </ul> </div>
<style> #tabs1 { font: bold 7.5pt Verdana; } #tabs9 img { border: none; } #navcontainer { margin: 10px 0 0 30px; padding: 0; height: 20px; } #navcontainer ul { border: 0; margin: 0; padding: 0; list-style-type: none; text-align: center; } #navcontainer ul li { display: block; float: left; text-align: center; padding: 0; margin: 0; } #navcontainer ul li a { background: #fff; width: 78px; height: 18px; border-top: 1px solid #ddd; border-left: 1px solid #ddd; border-bottom: 1px solid #ddd; border-right: 1px solid #ddd; padding: 0; margin: 0 0 5px 0; color: #666; text-decoration: none; display: block; text-align: center; font: normal 10px/18px verdana; } #navcontainer ul li a:hover { color: #6659A7; background: #eeeeee; } #navcontainer a:active { background: #c60; color: #fff; } #navcontainer li#active a { background: #c60; border: 1px solid #c60; color: #fff; } </style> <div id="navcontainer"> <ul id="navlist"> <li><a href="#"><span>Link 1</span></a></li> <li><a href="#"><span>Link 2</span></a></li> <li><a href="#"><span>Link 3</span></a></li> <li><a href="#"><span>Link 4</span></a></li> <li><a href="#"><span>Link 5</span></a></li> <li><a href="#"><span>Link 6</span></a></li> <li><a href="#"><span>Link 7</span></a></li> </ul> </div>
<style> .container { width: 500px; padding: 0 0 5px 0; margin: 3px 0 10px 0; background: #fff; } #nav { margin: 0; padding: 0; border-top: 3px solid #5F6A71; } #nav li { margin: 0; padding: 0; display: inline; list-style-type: none; } #nav a:link, #nav a:visited { float: left; font: bold 7.5pt verdana; line-height: 14px; padding: 9px; text-decoration: none; color: #708491; } #nav a:link.active, #nav a:visited.active, #nav a:hover { color: #666; background: url(https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEgjn8vqcIcNXUy3RdXjKgAuppN_u9s_nzu-Utk9whhhEfuQnrU-PNTVxhna3I4ru7pfbBCpBs5bV8zUBHo48esrQCnHAwm864mU3bLkrY_Zs16ehcnER5Tha3FuToKMdLky0mtHPhBPBVo/s1600/Inverted.png) no-repeat top center; border-top: 4px solid #5F6A71; } </style> <div class="container"> <ul id="nav"> <li><a href="#"><span>Link 1</span></a></li> <li><a href="#"><span>Link 2</span></a></li> <li><a href="#"><span>Link 3</span></a></li> <li><a href="#"><span>Link 4</span></a></li> <li><a href="#"><span>Link 5</span></a></li> <li><a href="#"><span>Link 6</span></a></li> <li><a href="#"><span>Link 7</span></a></li> </ul> </div>
<style> #tabsI { float:left; width:100%; background:#EFF4FA; font: bold 7.5pt Verdana; line-height:normal; border-bottom:1px solid #DD740B; } #tabsI ul { margin:0; padding:10px 10px 0 50px; list-style:none; } #tabsI li { display:inline; margin:0; padding:0; } #tabsI a { float:left; background:url(https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEjwikvjI04SV2moew-py5ZhRKfoW2otDBeL_wSrAsHUUjAwh-TB-v8hhK0PS4TpKeFL4UnP2dgF0f9832nkdyt8W3CXFWh9UBHaHyDzR_kuXzjaHohZpEIAMml0HYTPNqBNnsKt9p9pCh4/s1600/tableftI.png) no-repeat left top; margin:0; padding:0 0 0 5px; text-decoration:none; } #tabsI a span { float:left; display:block; background:url(https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEjURwTF2IrghHKSvzqIUQhxAzM2SJ0Ic2zI2VeBedIcXBJyCwvNJpDf-EcunLYQDI5pBsLEVm-nAxig6pWLO0k94O5DGfD0d4AkdZ-3ea3B1CiS2eNPRsIDxkhLEpV161vS7apraEg1KWM/s1600/tabrightI.png) no-repeat right top; padding:5px 15px 4px 6px; color:#FFF; } /* Commented Backslash Hack hides rule from IE5-Mac \*/ #tabsI a span {float:none;} /* End IE5-Mac hack */ #tabsI a:hover span { color:#FFF; } #tabsI a:hover { background-position:0% -42px; } #tabsI a:hover span { background-position:100% -42px; } </style> <div id="tabsI"> <ul> <li><a href="#"><span>Link 1</span></a></li> <li><a href="#"><span>Link 2</span></a></li> <li><a href="#"><span>Link 3</span></a></li> <li><a href="#"><span>Link 4</span></a></li> <li><a href="#"><span>Link 5</span></a></li> <li><a href="#"><span>Link 6</span></a></li> <li><a href="#"><span>Link 7</span></a></li> </ul> </div>
<style> #tabsG { float:left; width:100%; background:#666; font: bold 7.5pt Verdana; line-height:normal; } #tabsG ul { margin:0; padding:10px 10px 0 50px; list-style:none; } #tabsG li { display:inline; margin:0; padding:0; } #tabsG a { float:left; background:url(https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEj4cw0l_Z-rvizSKPxhdkcT8VNtForEuFfG5n3F_fRPXaojqeVukOyksMIkc7y5hhZNiYmgrQ2U8t0goUWSlVM8wv7zS2Jhm3xw5y6xLT-cUEqKQybCvP2dxwht3xZJBSZVGFXCCcMURDk/s1600/tableftG.png) no-repeat left top; margin:0; padding:0 0 0 4px; text-decoration:none; } #tabsG a span { float:left; display:block; background:url(https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEgIalWHkWFGnWZbd6InfZotMrajL-TcTmG1zzhgY_V0PMzQvW3jRrRmsc1OCfm3npG19xIVmQ4Pa-bPrQEMWF18gubsEd9oGecrrckXq5SCWd8fDfCxb_gTIxdfAR6RRY8CuIejMx2Enj0/s1600/tabrightG.png) no-repeat right top; padding:5px 15px 4px 6px; color:#FFF; } /* Commented Backslash Hack hides rule from IE5-Mac \*/ #tabsG a span {float:none;} /* End IE5-Mac hack */ #tabsG a:hover span { color:#FFF; } #tabsG a:hover { background-position:0% -42px; } #tabsG a:hover span { background-position:100% -42px; } </style> <div id="tabsG"> <ul> <li><a href="#"><span>Link 1</span></a></li> <li><a href="#"><span>Link 2</span></a></li> <li><a href="#"><span>Link 3</span></a></li> <li><a href="#"><span>Link 4</span></a></li> <li><a href="#"><span>Link 5</span></a></li> <li><a href="#"><span>Link 6</span></a></li> <li><a href="#"><span>Link 7</span></a></li> </ul> </div>
<style> #tabsF { float:left; width:100%; background:#efefef; font: bold 7.5pt Verdana; line-height:normal; border-bottom:1px solid #666; } #tabsF ul { margin:0; padding:10px 10px 0 50px; list-style:none; } #tabsF li { display:inline; margin:0; padding:0; } #tabsF a { float:left; background:url(https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEgAmqNECvIzZGkFb88XP8YQIh1zEXBBW-2ObxQ5Sj19YPFaPKrp-hmAJhnYPhC-s7FUZS7eb-coTB0dgF4WUn_9M2tv60RqUA2W0-rwTNYDeeEQOJ8WWPS54dntWBln-6146IfZuqdOi9E/s1600/tableftF.png) no-repeat left top; margin:0; padding:0 0 0 4px; text-decoration:none; } #tabsF a span { float:left; display:block; background:url(https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEiqYLGzPN5btWeF9HGgxYAODn_1IKEmNBktBmwDOkNKgjeCwha7vj2z9VGcMHqss6-WhIiLRtgvr_DiF20Z41pG1_hYRmlE8pP2o8wUdG2F-jgUNzRcCOogDdaAY8snOnVwqUQQhEl5SIw/s1600/tabrightF.png) no-repeat right top; padding:5px 15px 4px 6px; color:#666; } /* Commented Backslash Hack hides rule from IE5-Mac \*/ #tabsF a span {float:none;} /* End IE5-Mac hack */ #tabsF a:hover span { color:#FFF; } #tabsF a:hover { background-position:0% -42px; } #tabsF a:hover span { background-position:100% -42px; } </style> <div id="tabsF"> <ul> <li><a href="#"><span>Link 1</span></a></li> <li><a href="#"><span>Link 2</span></a></li> <li><a href="#"><span>Link 3</span></a></li> <li><a href="#"><span>Link 4</span></a></li> <li><a href="#"><span>Link 5</span></a></li> <li><a href="#"><span>Link 6</span></a></li> <li><a href="#"><span>Link 7</span></a></li> </ul> </div>
<style> #navcontainer { background: #369; border-top: 1px solid #9CC; margin-top: 20px; font: normal normal 11px Verdana, Geneva, Arial, Helvetica, sans-serif; } #navlist { list-style: none outside none; margin: 0; padding: 0; } @media all { #navlist { text-align: center } } #navlist li { bottom: 11px; display: inline; line-height: 1.2em; margin: 0; padding: 0; position: relative; } html>body #navlist li { background: #000; margin: 0 3px 0 0; padding: 4px 0px 4px 0; } #navlist a, #navlist a:link, #navlist a:visited { background: #900; border: 1px solid #FFF; bottom: 2px; color: #FFF; cursor: pointer; display: inline; height: 1em; margin: 0; padding: 3px 5px 3px 5px; position: relative; right: 2px; text-decoration: none; } #navlist a:hover { background: #C00; bottom: 1px; color: #FFF; position: relative; right: 1px; } #navlist a:active { background: #999; bottom: 0px; color: #FFF; position: relative; right: 0px; } #navlist li#active { background: #369; bottom: 13px; display: inline; margin: 0 3px 0 0; padding: 0; position: relative; } html>body #navlist li#active { background: #000; margin: 0 4px 0 4px; } #navlist #active a, #navlist #active a:link, #navlist #active a:visited, #navlist #active a:hover { background: #369; border-bottom: none; border-left: 1px solid #9CC; border-right: 1px solid #9CC; border-top: 1px solid #9CC; bottom: 0; color: #FFF; cursor: text; margin: 0; padding: 2px 5px 0 5px; position: relative; right: 0; } </style> <div id="navcontainer"> <ul id="navlist"> <li><a href="#"><span>Link 1</span></a></li> <li><a href="#"><span>Link 2</span></a></li> <li><a href="#"><span>Link 3</span></a></li> <li><a href="#"><span>Link 4</span></a></li> <li><a href="#"><span>Link 5</span></a></li> <li><a href="#"><span>Link 6</span></a></li> <li><a href="#"><span>Link 7</span></a></li> </ul> </div>

Continue Reading ...

How to add more column on Blogger Footer Section? Many of the blogger want to add more column on the footer section.

In Blogger you will find that the default Blogger template's footer has only 1 column. But you will see that many websites and blogs has two-four columns on footer. If you make more column on your Footer then you will see some of the good advantages as below ...
  1. You may have more space for your widgets.
  2. Can add and replace more widgets.
  3. Your website will be loaded faster if you use large widgets on footer.
  4. It will turn the design of your blog to the modern Web 2.0.

As we are going to add multiple column on our footer section. I think 3 column is better for this tutorial. So, I'm going to add three column on the footer section of the website. Just follow the following steps to add three column to Blogger footer section:
  1. Back-up your existing blogs Template. (Download the Template)
  2. Remove all widgets (gadgets) from the footer section.
  3. Add CSS code for three column Footer section.
Lets Add CSS to accomplish the work ...
  1. Go to BloggerTemplate → Edit HTMLProceed
  2. Expand the Template checking the expand box.
  3. Press (Ctrl + F) to find ]]></b:skin> code on your Template.
  4. Add the following code just above the ]]></b:skin> code.
    /*
        Code is developed by: 
            http:www.howblogger.com
        Blogspot Tutorial Index:
        Code Description: 
            Codes for adding columns (3 columns) in the blogger footer section
    */
    #footer-columns{
        border-top:1px dotted #999999;
        clear:both;
        margin:0 auto;
    }
    .column1{
        padding: 0px 5px 3px 5px;
        width: 30%;
        float: left;
        margin:3px;
        text-align: left;
    }
    .column2{
        padding: 0px 5px 3px 5px;
        width: 30%;
        float: left;
        margin:3px 3px 3px 5px;
        text-align: left;
    }
    .column3{
        padding: 0px 5px 3px 5px;
        width: 30%;
        float: right;
        margin:3px;
        text-align: left;
    }
    .addwidget {
        padding: 0 0 0 0;
    }
    #footer-columns ul {
        list-style:none;
        margin:0 0 0;
        padding:0 0 0;
    }
    #footer-columns li {
        margin:0;
        padding-top:0;
        padding-left:0;
        padding-bottom:.25em;
        padding-right:15px;
        text-indent:-15px;
        line-height:1.5em;
    }
    body#layout #footer-columns {
        width: 100%;
        margin-left: auto;
        margin-right: auto;
    }
    body#layout .column1 {
        width: 32%;
        float: left;
    }
    body#layout .column2 {
        width: 32%;
        float: left;
    }
    body#layout .column3 {
        width: 32%;
        float: right;
    }
  5. When we have completed adding CSS code, we shoul add the containers for the footer section. We have to search the following code to add containers:
    <b:section class='footer' id='footer'/ 
  6. Find our the above code from your Template & delete the code. Then paste the following code at the place of the above code::
    <div id='footer-columns'>
    <div class='column1'>
    <b:section class='addwidget' id='col1' preferred='yes' style='float:left;'>
    </b:section>
    </div>
    <div class='column2'>
    <b:section class='addwidget' id='col2' preferred='yes' style='float:left;'>
    </b:section>
    </div>
    <div class='column3'>
    <b:section class='addwidget' id='col3' preferred='yes' style='float:right;'>
    </b:section>
    </div>
    <div style='clear:both;'/>
    </div>
    <b:section class='footer' id='footer'/>
  7. Now Save your Template & you have completed adding 3 columns on your blogger blog.

If you have any problem please let me to know. If you face any problem you may post a comment under this post so that I can solve your problem.
Continue Reading ...

Search box helps your visitors to search the posts what they want. A search box will definitely be needed if you have a lot of contents in your website. But, not only work we also want to make our website looking awesome. That's why we can make our Search bar more beautiful using css search boxes. If you add a stylish css3 search box, your blog seems so beautiful. Today I wanna share with you a set of colorful search boxes for your blogger blog. So, lets start learning how to use stylish Search Boxes in your blogger blog.
You can have more Stylish Search Boxes for Blogger Blogs
  1. Choose your desired search box below & copy the code of that search box
  2. Go to Blogger DashboardLayout Add a Gadget HTML/JavaScript
  3. Now, Paste code (leave title column blank) and then click on Save.

This is the time to find out the best matching Search box for your blog.

<style type="text/css">
#helperblogger-searchbox {
    border-radius: 5px;
    background: URL(http://2.bp.blogspot.com/-upfLE67VJ48/T9L_1DEmg7I/AAAAAAAAB8s/HtdrkTY7GoI/s1600/helperblogger.com-red.png) no-repeat scroll center center transparent;
    width: 307px;
    height: 50px;
    disaply: block;
}
   
form#helperblogger-searchform {
    display: block;
    padding: 9px 16px;
    margin: 0;
}
   
form#helperblogger-searchform #s {
    padding-left: 24px !important;
    padding: 7.5px;
    margin: 0;
    width: 198px;
    font-size: 16px;
    font-family: georgia;
    font-style: italic;
    color: #666666;
    vertical-align: top;
    border: none;
    background: transparent;
}
   
form#helperblogger-searchform
#sbutton {
    margin: 0;
    padding: 0;
    height: 40px;
    width: 74px;
    vertical-align: top;
    border: none;
    background: transparent;
}
</style>
<div id="helperblogger-searchbox">
    <form id="helperblogger-searchform" action="/search" method="get">
        <input type="text" id="s" name="q" value="Search..." onfocus='if (this.value == "Search...") {this.value = ""}'
        onblur='if (this.value == "") {this.value = "Search...";}' />
        <input type="image" src="http://img1.blogblog.com/img/blank.gif" id="sbutton"
        />
    </form>
</div>
<style type="text/css">
#helperblogger-searchbox {
    border-radius: 5px;
    background: URL(http://4.bp.blogspot.com/-jkzG3DU10a0/T9L_yt0nqYI/AAAAAAAAB8U/8NCpgoIYP18/s1600/helperblogger.com-green.png) no-repeat scroll center center transparent;
    width: 307px;
    height: 50px;
    disaply: block;
}
   
form#helperblogger-searchform {
    display: block;
    padding: 9px 16px;
    margin: 0;
}
   
form#helperblogger-searchform #s {
    padding-left: 24px !important;
    padding: 7.5px;
    margin: 0;
    width: 198px;
    font-size: 16px;
    font-family: georgia;
    font-style: italic;
    color: #666666;
    vertical-align: top;
    border: none;
    background: transparent;
}
   
form#helperblogger-searchform
#sbutton {
    margin: 0;
    padding: 0;
    height: 40px;
    width: 74px;
    vertical-align: top;
    border: none;
    background: transparent;
}
</style>
<div id="helperblogger-searchbox">
    <form id="helperblogger-searchform" action="/search" method="get">
        <input type="text" id="s" name="q" value="Search..." onfocus='if (this.value == "Search...") {this.value = ""}'
        onblur='if (this.value == "") {this.value = "Search...";}' />
        <input type="image" src="http://img1.blogblog.com/img/blank.gif" id="sbutton"
        />
    </form>
</div>




<style type="text/css">
#helperblogger-searchbox {
    border-radius: 5px;
    background: URL(http://1.bp.blogspot.com/-3QS-Mh7cdm4/T9L_x-etZiI/AAAAAAAAB8Q/OXgi3sBFiRI/s1600/helperblogger.com-blue.png) no-repeat scroll center center transparent;
    width: 307px;
    height: 50px;
    disaply: block;
}
   
form#helperblogger-searchform {
    display: block;
    padding: 9px 16px;
    margin: 0;
}
   
form#helperblogger-searchform #s {
    padding-left: 24px !important;
    padding: 7.5px;
    margin: 0;
    width: 198px;
    font-size: 16px;
    font-family: georgia;
    font-style: italic;
    color: #666666;
    vertical-align: top;
    border: none;
    background: transparent;
}
   
form#helperblogger-searchform
#sbutton {
    margin: 0;
    padding: 0;
    height: 40px;
    width: 74px;
    vertical-align: top;
    border: none;
    background: transparent;
}
</style>
<div id="helperblogger-searchbox">
    <form id="helperblogger-searchform" action="/search" method="get">
        <input type="text" id="s" name="q" value="Search..." onfocus='if (this.value == "Search...") {this.value = ""}'
        onblur='if (this.value == "") {this.value = "Search...";}' />
        <input type="image" src="http://img1.blogblog.com/img/blank.gif" id="sbutton"
        />
    </form>
</div>




<style type="text/css">
#helperblogger-searchbox {
    border-radius: 5px;
    background: URL(http://3.bp.blogspot.com/-8DNTltUx70c/T9L_zrbhRaI/AAAAAAAAB8g/5H5PYM-I20I/s1600/helperblogger.com-orange.png) no-repeat scroll center center transparent;
    width: 307px;
    height: 50px;
    disaply: block;
}
   
form#helperblogger-searchform {
    display: block;
    padding: 9px 16px;
    margin: 0;
}
   
form#helperblogger-searchform #s {
    padding-left: 24px !important;
    padding: 7.5px;
    margin: 0;
    width: 198px;
    font-size: 16px;
    font-family: georgia;
    font-style: italic;
    color: #666666;
    vertical-align: top;
    border: none;
    background: transparent;
}
   
form#helperblogger-searchform
#sbutton {
    margin: 0;
    padding: 0;
    height: 40px;
    width: 74px;
    vertical-align: top;
    border: none;
    background: transparent;
}
</style>
<div id="helperblogger-searchbox">
    <form id="helperblogger-searchform" action="/search" method="get">
        <input type="text" id="s" name="q" value="Search..." onfocus='if (this.value == "Search...") {this.value = ""}'
        onblur='if (this.value == "") {this.value = "Search...";}' />
        <input type="image" src="http://img1.blogblog.com/img/blank.gif" id="sbutton"
        />
    </form>
</div>




<style type="text/css">
#helperblogger-searchbox {
    border-radius: 5px;
    background: URL(http://1.bp.blogspot.com/-xUr8VMkrYEw/T9L_0s7DQoI/AAAAAAAAB8k/LTQ94RRZrJA/s1600/helperblogger.com-purple.png) no-repeat scroll center center transparent;
    width: 307px;
    height: 50px;
    disaply: block;
}
   
form#helperblogger-searchform {
    display: block;
    padding: 9px 16px;
    margin: 0;
}
   
form#helperblogger-searchform #s {
    padding-left: 24px !important;
    padding: 7.5px;
    margin: 0;
    width: 198px;
    font-size: 16px;
    font-family: georgia;
    font-style: italic;
    color: #666666;
    vertical-align: top;
    border: none;
    background: transparent;
}
   
form#helperblogger-searchform
#sbutton {
    margin: 0;
    padding: 0;
    height: 40px;
    width: 74px;
    vertical-align: top;
    border: none;
    background: transparent;
}
</style>
<div id="helperblogger-searchbox">
    <form id="helperblogger-searchform" action="/search" method="get">
        <input type="text" id="s" name="q" value="Search..." onfocus='if (this.value == "Search...") {this.value = ""}'
        onblur='if (this.value == "") {this.value = "Search...";}' />
        <input type="image" src="http://img1.blogblog.com/img/blank.gif" id="sbutton"
        />
    </form>
</div>
Continue Reading ...

Receive all updates via Facebook. Just Click the Like Button Below

Powered By | Blog Gadgets Via Blogger Widgets