Saturday, 27 December 2014

Add Stylish Search Boxes In Your Blog


While browsing over the internet you may have seen all the sites having a Search Box. It is rule to have a search box for giving better content easily to readers. You may have tried to adding it but it may be not matching with your template design. Let us provide you some beautiful search boxes, except these you may add your own which suites best to your template design. Here we will provide you Two most beautiful Search boxes. Just copy & paste the code as suggested. Let's start making these widgets.

Search Box 1. If you want your search box to look like this then use below code


Here is code for this>>>

<style>
#searchbox {
    background: #d8d8d8;
    border: 4px solid #e8e8e8;
    padding: 20px 10px;
    width: 250px;
}

input:focus::-webkit-input-placeholder {
    color: transparent;
}

input:focus:-moz-placeholder {
    color: transparent;
}

input:focus::-moz-placeholder {
    color: transparent;
}

#searchbox input {
    outline: none;
}

#searchbox input[type="text"] {
    background: url(https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEjq3HCldqg1PZU3oLw9UdB5G5yrydpMB_609fJKk0vBBHnjJRvYFiiGcHPxb3L5Q7Kbx0IEVxjXp1IxZZPlr6f2JpvOHsGGbckoE8ijD7v5FJSBnE8VQcYOQwFSI8NisanuNrYjIkJCJCMS/s1600/search-dark.png) no-repeat 10px 6px #fff;
    border-width: 1px;
    border-style: solid;
    border-color: #fff;
    font: bold 12px Arial,Helvetica,Sans-serif;
    color: #bebebe;
    width: 55%;
    padding: 8px 15px 8px 30px;
}

#button-submit {
    background: #6A6F75;
    border-width: 0px;
    padding: 9px 0px;
    width: 23%;
    cursor: pointer;
    font: bold 12px Arial, Helvetica;
    color: #fff;
    text-shadow: 0 1px 0 #555;
}

#button-submit:hover {
    background: #4f5356;
}

#button-submit:active {
    background: #5b5d60;
    outline: none;
}

#button-submit::-moz-focus-inner {
    border: 0;
}
</style>

<form id="searchbox" method="get" action="/search">
<input name="q" type="text" size="15" placeholder="Type here..." />
<input id="button-submit" type="submit" value="Search" />
</form>



Search Box 2. If you want your search box to look like this then use below code





Here is code for this>>>

<style>
#searchbox {
width: 240px;
}
#searchbox input {
    outline: none;
}
input:focus::-webkit-input-placeholder {
    color: transparent;
}
input:focus:-moz-placeholder {
    color: transparent;
}
input:focus::-moz-placeholder {
    color: transparent;
}
#searchbox input[type="text"] {
    background: url(https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEjq3HCldqg1PZU3oLw9UdB5G5yrydpMB_609fJKk0vBBHnjJRvYFiiGcHPxb3L5Q7Kbx0IEVxjXp1IxZZPlr6f2JpvOHsGGbckoE8ijD7v5FJSBnE8VQcYOQwFSI8NisanuNrYjIkJCJCMS/s1600/search-dark.png) no-repeat 10px 13px #f2f2f2;
border: 2px solid #f2f2f2;
    font: bold 12px Arial,Helvetica,Sans-serif;
    color: #6A6F75;
    width: 160px;
    padding: 14px 17px 12px 30px;
    -webkit-border-radius: 5px 0px 0px 5px;
    -moz-border-radius: 5px 0px 0px 5px;
    border-radius: 5px 0px 0px 5px;
    text-shadow: 0 2px 3px #fff;
    -webkit-transition: all 0.7s ease 0s;
    -moz-transition: all 0.7s ease 0s;
    -o-transition: all 0.7s ease 0s;
    transition: all 0.7s ease 0s;
}
#searchbox input[type="text"]:focus {
background: #f7f7f7;
border: 2px solid #f7f7f7;
width: 200px;
padding-left: 10px;
}

#button-submit{
background: url(https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEibAqnsBnT1w9S-85LMXi6KDE8MJzHv8-9xDYAMXeom38UyvdE76MY-JMui01zO8drm1evN5yTQ9Ww_qEFbNUFcUFjizNrHZHOJAT5M8eqINB57KRZsIC9HrygwXtlMA9Jgodb-z9wN-gAr/s1600/slider-arrow-right.png) no-repeat;
margin-left: -40px;
border-width: 0px;
width: 43px;
height: 45px;
}
</style>

<form id="searchbox" method="get" action="/search" autocomplete="off">
<input name="q" type="text" size="15" placeholder="Enter keywords here..." />
<input id="button-submit" type="submit" value=" "/>
</form>



Add Blogger And Google+ Show/Hide Comment Box



We all know Google+ provides us the biggest circle around the world to share our content and stay connected to it in future. But sometimes it takes readers to trouble as commenting through Google+ they will have to make a Google+ profile. In this way Blog readers are forced to create Google+ profile, but in this tutorial we will show you how you can add Google+ comment box along with blogger comment box below each post. This widget enables users to let have a choice to put their comment. If they want to comment through Google+ they can simply click on Google+ comment section & if they want to comment simply through they can use blogger comment section. Overall this widget shows Toggle effect hence have a pretty look. Let's start making it.


For making it easiest than easier we used inline JQuery & CSS, but if you wanted to change it. You can change it later. These are Four easy steps for creating such widget.

STEP 1. Go to your blogger Dashboard & Select your blog> then Navigate to template > now click on Edit HTML button on right to Customize (See Screenshot below)




STEP 2. When you see whole coding on your screen, click anywhere on coding & press ctrl+F on your keyboard to open a search box. Write below code in search box & hit enter.

Here is code>>>

<b:include data='post' name='post'/>

STEP 3.Just after <b:include data='post' name='post'/> add below written code.

Here is code>>>

<b:if cond='data:blog.pageType == &quot;item&quot;'>
<style>#comments, #gplus-comments-visibility {display:none;} .comments-icons {background: url(https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEjbU-CDFEOBbEQtOdWN5Zkcjm6clhv2dg57v2s8kQh1lfpn4uRFjazgJnwKxzBUKZ0SgjM4xa841DHfaEgv4_bdwTKVaW29Bsw0qUjSwnURJII7ub3sBcw8nUSlP5gmRmJpWNbciHJxEaTb/s1600/speech-bubble.png) no-repeat; font-size: 20px; font-family: &quot;Arial Narrow&quot;,Arial,sans-serif; color: #555; font-weight: bold; padding: 18px 15px 0; height: 70px; } .comments-icons a img {vertical-align: middle;}</style>
<div class='comments-icons'>
Show Comments: <a class='show-hide-comments' href='javascript:void();' onclick='$(&quot;#gplus-comments-visibility&quot;).slideToggle();$(&quot;#comments&quot;).hide();'><img class='gplus-icon' height='35' src='https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEhSksylH18FbPrad7byKRr1DB6SdAU7oZuvS0awP-O92DeXYyZqWabz0kzgg1RlXAKYmxjGjpPUfAGTDiT6dn9CC7H3j1nHkSurAj5_tezDCUL6E5Q5pMsI0pSBb2Rtj3wmery-H30ZX-EU/s1600/google-plus-logo.png' width='35'/></a> OR <a class='show-hide-comments' href='javascript:void();' onclick='$(&quot;#comments&quot;).slideToggle();$(&quot;#gplus-comments-visibility&quot;).hide();'><img class='blogger-icon' height='35' src='https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEg-dvgyeuwhTXcDptInAu5Lr-Odo8mVvlybtL5vIqAXJPXYAnNgtOcIMs867LQT96rSWQATbboqcNvtxrMWX8yUajZHM24VpngPyqf11aKVD1jzJCqenXIESdRcVrYV7rgfVK_McTMn9cMy/s1600/blogger-logo.png' width='35'/></a>
</div>
<div id='gplus-comments-visibility'>
<div class='g-comments' data-first_party_property='BLOGGER' data-view_type='FILTERED_POSTMOD' data-width='550' expr:data-href='data:post.url'/>
</div>      
</b:if> 

* You can change data-width with your need. Depends on the width of your main wrapper.

STEP 4. Now, last step that you always do. Just click on Save Template. When you are done you will see comment box embedded on your blog.

Important>>> To make this widget work 100%, you just make sure that you are using a version of JQuery in your blog. If it is not, just add below code before </body> tag in your Template Edit section.

Here is code>>>

<script src='https://ajax.googleapis.com/ajax/libs/jquery/1.6.4/jquery.min.js' type='text/javascript'/>

After all done you will see like this in your blog/site.




Add Facebook Share Widget In Your Blog






Since Facebook is a hub for promoting your content, it is the first choice of entrepreneurs. So, there must be some tool which can allow visitors to share your blog content easily to their timeline hence making your voice louder to a larger circle. Facebook Share Widget allows you to share the piece of content from any page directly to your timeline or page you manage. The Share button lets people add a personalized message to links before sharing on their timeline, in groups, or to their friends via a Facebook Message. We will guide you making widget by these easy steps that you never heard before. You can add Six types of sharing widgets to your blog. Let's start making it.

1. For Box Count Sharing widget use below code. After you place it in your blog (See How) it will show up like this


 Here is code for this>>>

<iframe src="//www.facebook.com/plugins/share_button.php?href=http%3A%2F%2Fbbthome.blogspot.com%2F&amp;layout=box_count" scrolling="no" frameborder="0" style="border:none; overflow:hidden;" allowTransparency="true"></iframe>

*Change bbthome.blogspot.com with your URL
.....................................................................................................................................................................
2. For Button Count Sharing Widget use below code & paste in your add widget section. After adding it it will look like





Here is code for this>>>

<iframe src="//www.facebook.com/plugins/share_button.php?href=http%3A%2F%2Fbbthome.blogspot.com%2F&amp;layout=button_count" scrolling="no" frameborder="0" style="border:none; overflow:hidden;" allowTransparency="true"></iframe>


*Change bbthome.blogspot.com with your URL
.....................................................................................................................................................................
3. For Button Sharing Widget use below code. After adding it it will look like this






Here is code for this>>>

<iframe src="//www.facebook.com/plugins/share_button.php?href=http%3A%2F%2Fbbthome.blogspot.com%2F&amp;layout=button" scrolling="no" frameborder="0" style="border:none; overflow:hidden;" allowTransparency="true"></iframe>

*Change bbthome.blogspot.com with your URL
.....................................................................................................................................................................
4. For Icon Link Sharing Widget use below code. After you add it will show up like this




Here is code for this>>>

<iframe src="//www.facebook.com/plugins/share_button.php?href=http%3A%2F%2Fbbthome.blogspot.com%2F&amp;layout=icon_link" scrolling="no" frameborder="0" style="border:none; overflow:hidden;" allowTransparency="true"></iframe>

*Change bbthome.blogspot.com with your URL
.....................................................................................................................................................................
5. For Icon Sharing Widget use below code for widget that look like this





Here is code for this>>>

<iframe src="//www.facebook.com/plugins/share_button.php?href=http%3A%2F%2Fbbthome.blogspot.com%2F&amp;layout=icon" scrolling="no" frameborder="0" style="border:none; overflow:hidden;" allowTransparency="true"></iframe>

*Change bbthome.blogspot.com with your URL
.....................................................................................................................................................................
6. For Link Sharing Widget use below code. After adding it will look like this





Here is code for this>>>

<iframe src="//www.facebook.com/plugins/share_button.php?href=http%3A%2F%2Fbbthome.blogspot.com%2F&amp;layout=link" scrolling="no" frameborder="0" style="border:none; overflow:hidden;" allowTransparency="true"></iframe>

*Change bbthome.blogspot.com with your URL
.....................................................................................................................................................................
You can use any one of these Six types. For easiest way of making these widgets we recommend to go Here

After you place it in your blog (See How) it will show up like this - See more at: http://bbthome.blogspot.in/2014/12/add-facebook-likeshare-or-likeshare.html#sthash.mWCP7sXI.dpuf
After you place it in your blog (See How) it will show up like this - See more at: http://bbthome.blogspot.in/2014/12/add-facebook-likeshare-or-likeshare.html#sthash.mWCP7sXI.dpuf
After you place it in your blog (See How) it will show up like this - See more at: http://bbthome.blogspot.in/2014/12/add-facebook-likeshare-or-likeshare.html#sthash.mWCP7sXI.dpuf
After you place it in your blog (See How) it will show up like this - See more at: http://bbthome.blogspot.in/2014/12/add-facebook-likeshare-or-likeshare.html#sthash.mWCP7sXI.dpuf
After you place it in your blog (See How) it will show up like this - See more at: http://bbthome.blogspot.in/2014/12/add-facebook-likeshare-or-likeshare.html#sthash.mWCP7sXI.dpuf
After you place it in your blog (See How) it will show up like this - See more at: http://bbthome.blogspot.in/2014/12/add-facebook-likeshare-or-likeshare.html#sthash.mWCP7sXI.dpuf
After you place it in your blog (See How) it will show up like this - See more at: http://bbthome.blogspot.in/2014/12/add-facebook-likeshare-or-likeshare.html#sthash.mWCP7sXI.dpuf
After you place it in your blog (See How) it will show up like this - See more at: http://bbthome.blogspot.in/2014/12/add-facebook-likeshare-or-likeshare.html#sthash.mWCP7sXI.dpuf
After you place it in your blog (See How) it will show up like this - See more at: http://bbthome.blogspot.in/2014/12/add-facebook-likeshare-or-likeshare.html#sthash.mWCP7sXI.dpuf

Add Facebook Like & Share Widget To Your Blog


This widget provides you the quickest way to share with your friends or publicly. When blogging comes to your mind then first how to promote your piece of content to others becomes more important. When someone will click on the Like button a single will 'like' pieces of content of your site on the web and if they wanted to share it to Facebook it will allow them to share on Facebook. You display only Like button Or a Share button next to the Like button to let people add a personal message and customize who they share with. Well, let us learn how we can add Facebook Like/Share Or Facebook Like+Share both with these easy steps. You can manage Like & Share widget in four ways. You can use any one.

1. For Standard Like & Share use below code. After you place it in your blog (See How) it will show up like this


Here is code for this>>>

<iframe src="//www.facebook.com/plugins/like.php?href=https%3A%2F%2Fbbthome.blogspot.com&amp;width=80&amp;layout=standard&amp;action=like&amp;show_faces=true&amp;share=true&amp;height=80" scrolling="no" frameborder="0" style="border:none; overflow:hidden; width:80px; height:80px;" allowTransparency="true"></iframe>

*Change bbthome.blogspot.com with your URL
*Adjust width & height as you want
*If you don't want to show friend's faces then, after show_faces write false. i.e. show_faces=false
 *If you want to show only Like button then after share write false. i.e. share=false
 ....................................................................................................................................................................
2. For Box Count Like & Share use below code. It will show you up like this


Here is code for this>>>


<iframe src="//www.facebook.com/plugins/like.php?href=https%3A%2F%2Fbbthome.blogspot.com&amp;width=80&amp;layout=box_count&amp;action=like&amp;show_faces=true&amp;share=true&amp;height=65" scrolling="no" frameborder="0" style="border:none; overflow:hidden; width:80px; height:65px;" allowTransparency="true"></iframe>

*Change bbthome.blogspot.com with your URL
*Adjust width & height as you want
*If you don't want to show friend's faces then, after show_faces write false. i.e. show_faces=false
 *If you want to show only Like button then after share write false. i.e. share=false
.....................................................................................................................................................................
3. For Button Count Like & Share use below code. It will show you up like this

Here is code for this>>>


<iframe src="//www.facebook.com/plugins/like.php?href=https%3A%2F%2Fbbthome.blogspot.com&amp;width=80&amp;layout=button_count&amp;action=like&amp;show_faces=true&amp;share=true&amp;height=21" scrolling="no" frameborder="0" style="border:none; overflow:hidden; width:80px; height:21px;" allowTransparency="true"></iframe> 


*Change bbthome.blogspot.com with your URL
*Adjust width & height as you want
*If you don't want to show friend's faces then, after show_faces write false. i.e. show_faces=false
 *If you want to show only Like button then after share write false. i.e. share=false
.....................................................................................................................................................................
4. For Button Like & Share use below code. It will look like this

Here is code for this>>>


<iframe src="//www.facebook.com/plugins/like.php?href=https%3A%2F%2Fbbthome.blogspot.com&amp;width=80&amp;layout=button&amp;action=like&amp;show_faces=true&amp;share=true&amp;height=80" scrolling="no" frameborder="0" style="border:none; overflow:hidden; width:80px; height:80px;" allowTransparency="true"></iframe>
 
*Change bbthome.blogspot.com with your URL
*Adjust width & height as you want
*If you don't want to show friend's faces then, after show_faces write false. i.e. show_faces=false
 *If you want to show only Like button then after share write false. i.e. share=false
.....................................................................................................................................................................

You can use any of above four types. For easiest way of making these widgets visit Here