Showing posts with label Blogger Widgets. Show all posts
Showing posts with label Blogger Widgets. Show all posts

How to add Google Translate Widget with Flags for Blogger


Google translation for your blog is now made easy with the use of flags. Add a Google Translator widget with mini flags to Blogger.
With the help of Google Translate and by adding flags to it, this widget in HTML, allows your visitors to translate your site and blog in their own languages.

Features:

  • Translate widget with mini Flags for Blogger
  • Coded in HTML, no JavaScript used so that it can also be viewed with Lynx based browsers which are unable to load script files.
  • This Widget can translate any language to readers preferred language that are supported by Google Translate.
  • I have included 10 languages in this widget. They are: Chinese(Simplified), Portuguese, English, French, Italian, German, Japanese, Korean, Russian and Spanish.
  • Available for both English and Non-English blogs.
  • Animation effects for modern browsers. (New)

Tested on a French language blog.
How to add this widget! Just click any one of the "Add to Blogger" Button.

Translator Widget with Mini Flags for English blogs

Translator Widget with Mini Flags for Non English blogs

Site Translator widget with Flags 1





Let me know if it helped you or if you have any problems or bugs with it.
READMORE
 

Magic Image! Move Image Freely in blogger

Hi, friends! Now, we are gonna make a crazy trick. That's Magic Image! Move Image Freely. Freely? Yups... you and your visitors of your blog can move images wherever. Left, right, top, or bottom. It's up to you. Curious? See the DEMO. OK, now if you wanna try Magic Image! Move Image Freely, just follow the steps below.









1. Log in to your blogger icon
2. Go to Design --> Edit HTML

3. Copy the code below, and paste above ]]></b:skin>
.FBT_magic img { cursor: move;}
4. Then, copy the code below and paste above </head>
<script src='http://ajax.googleapis.com/ajax/libs/jquery/1.4/jquery.min.js' type='text/javascript'/>
<script src='http://ajax.googleapis.com/ajax/libs/jqueryui/1.8/jquery-ui.min.js' type='text/javascript'/>
<script type='text/javascript'>
$(document).ready(function() {
$(&quot;div.FBT_magic img&quot;).draggable();
});
</script>
5. Click SAVE TEMPLATE

Now if you wanna use this effect, just use this code

<div class='FBT_magic'><img src='PICTURE-URL'/></div>

OK, That's all friend... Hopefully useful... 


READMORE
 

Add Floating Spoiler Menu in blogspot


Hi, guys! Now, we will try to add floating spoiler menu. This spoiler menu is difference with others. We don't need to click the button to display the menu. Just put your cursor on this menu, and the menu wil be slide out. Want to see the DEMO? Now, if you wanna add floating spoiler menu into your blog, just follow the steps below.






1. Log in to your blogger account
2. Go to Design --> Page Elements --> Add Gadget
3. Chose "HTML/Java Script"
4. Add the code below


<style text-type="CSS">
#bmenu{
position:fixed;
right:5px;
center:0px;
background-color:#000;
border-radius:10px;
-moz-border-radius:10px;
border:1px solid #FFF;
width:202px;
height:20px;
color:#FF0606;
transition:all .5s ease-in;-moz-transition:all .5s ease-in;-webkit-transition:all .5s ease-in;-o-transition:all .5s ease-in;z-index:3;overflow:hidden;padding:9px 15px 10px;}

#bmenu h3{
margin:0;
padding:0;
text-align:center;
cursor:pointer;}

#bmenu ul{
border-radius:10px;-moz-border-radius:10px;
border:2px solid #FFf;
background-color:#FF0606;
margin:15px 0;
padding:0 15px;}

#bmenu li{list-style:none;margin:0 0 5px;padding:0;} #bmenu li a{
color:#000;
text-decoration:none;
font-size:14px;}

#bmenu li a:hover{
color:#fff;}

#bmenu:hover{
z-index:5;
height:175px;
</style>

<div id="bmenu">
<h3>
TITLE</h3>
<ul>
<li><a href="#">FBT-1</a></li>
<li><a href="#">FBT-2</a></li>
<li><a href="#">FBT-3</a></li>
<li><a href="#">FBT-4</a></li>
<li><a href="#">FBT-5</a></li>
</ul>
</div>
Customize:
=> The position of floating spoiler menu
=> The title of this menu
=> The title and link location

5. Click SAVE
READMORE
 

Add Welcome Image to your blogspot ?

 Do you want to welcome image appear in your blog before visitor can read your blog content. Now many blogger had use this widget to decorate they blogger look more interesting.You also can changes the picture when ever you want

1.Go to Blogger Dashboard
2.Click template Design >> Edit HTML
3.Find this code:  ]]></b:skin> in html code
Then paste below script ABOVE the this code ]]></b:skin>:


</style></head>
<script language="javascript" type="text/javascript">
function toggle(el,milli) {
// Get the opacity style parameter from the image
var currOpacity = document.getElementById(el).style.opacity;
if(currOpacity != 0) { // if not faded
fade(el, milli, 100, 0);
} else { // else the images is already faded
fade(el, milli, 0, 100);
}
}
function changeOpacity(el,opacity) {
var image = document.getElementById(el);
// For Mozilla
image.style.MozOpacity = (opacity / 100);
// For IE
image.style.filter = "alpha(opacity=" + opacity + ")";
// For others
image.style.opacity = (opacity / 100);
}
function fade(el,milli,start,end) {
var fadeTime = Math.round(milli/100);
var i = 0; // Fade Timer
// Fade in
if(start < end) {
for(j = start; j <= end; j++) {
// define the expression to be called in setTimeout()
var expr = "changeOpacity('" + el + "'," + j + ")";
var timeout = i * fadeTime;
// setTimeout will call 'expr' after 'timeout' milliseconds
setTimeout(expr,timeout);
i++;
}
}
// Fade out
else if(start > end) {
for(j = start; j >= end; j--) {
var expr = "changeOpacity('" + el + "'," + j + ")";
var timeout = i * fadeTime;
setTimeout(expr,timeout);
i++;
}
}
}
</script>
<div class="input" onClick="javascript:toggle('ybl', 3000); this.style.display='none';
document.getElementById('tbb').style.display=''">
<center><img src="http://i219.photobucket.com/albums/cc282/garam63/welcome.png"
style="opacity:0.4;filter:alpha(opacity=40)"
onmouseover="this.style.opacity=1;this.filters.alpha.opacity=100"
onmouseout="this.style.opacity=0.7;this.filters.alpha.opacity=40"/></center>
</div>
<div id="ybl" style="filter : alpha(opacity=0); -moz-opacity : 0; opacity : 0;">
<div id="tbb" style="display : none;">
<body>

Replace the red word with your image url
4.save your template then preview



READMORE
 

Google Translate Widget with Flags for Blogger


Google translation for your blog is now made easy with the use of flags. Add a Google Translator widget with mini flags to Blogger.
With the help of Google Translate and by adding flags to it, this widget in HTML, allows your visitors to translate your site and blog in their own languages.

Features:

  • Translate widget with mini Flags for Blogger
  • Coded in HTML, no JavaScript used so that it can also be viewed with Lynx based browsers which are unable to load script files.
  • This Widget can translate any language to readers preferred language that are supported by Google Translate.
  • I have included 10 languages in this widget. They are: Chinese(Simplified), Portuguese, English, French, Italian, German, Japanese, Korean, Russian and Spanish.
  • Available for both English and Non-English blogs.
  • Animation effects for modern browsers. (New)
Tested on a French language blog.
How to add this widget! Just click any one of the "Add to Blogger" Button.

Translator Widget with Mini Flags for English blogs

Translator Widget with Mini Flags for Non English blogs

Site Translator widget with Flags 1





Let me know if it helped you or if you have any problems or bugs with it.
READMORE
 

Add Blogger statistics Widget

Add Blogger statistics Widget to your Blog It show Total Posts & Comments


Follow the Simple Steps for add Widget:

1 Go To the blogger.com >>> Design >>> Page Element >> HTML/JavaScript paste the below the code in HTML/JavaScript new window box




<script style="text/javascript">
function numberOfPosts(json) {
document.write('Posts: <b>' + json.feed.openSearch$totalResults.$t + '</b><br>');
}
function numberOfComments(json) {
document.write('Comments: <b>' + json.feed.openSearch$totalResults.$t + '</b><br>');
}
</script>
<font color="blue"><script src="
http:facetweetbook.blogspot.com /feeds/posts/default?alt=json-in-script&callback=numberOfPosts"></script>
<script src="http:facetweetbook.blogspot.com/feeds/comments/default?alt=json-in-script&callback=numberOfComments"></script></font>




Now Save your widget .... Now your Done :) For Demo Click Here


Widget Customization!


Replace http:facetweetbook.blogspot.com/ with your own blog URL. You can change the Posts: andComments: text to whatever you like for example you can replace Comments: with Total No. of Comments:.
READMORE
 

Floating Facebook LikeBox For Blogs


Add Floating Likebox To Blogger

  1. Go To Blogger > Design > PageElements
  2. Click on "Add a Gadget"
  3. Choose HTML/JavaScript Widget
  4. Paste the following code inside it,
<script type="text/javascript"> 
//<!-- 
$(document).ready(function() {$(".w2bslikebox").hover(function() {$(this).stop().animate({right: "0"}, "medium");}, function() {$(this).stop().animate({right: "-250"}, "medium");}, 500);}); 
//--> 
</script> 
<style type="text/css"> 
.w2bslikebox{background: url("https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEhRsrL0uj0KAHbKUHae5EKk3wmYXqNeWrCsatcp0Ie0w5rsl_ZWevGZcwmEQmF0i6TiXz0J5Fb7c52s0m_DQ7479n2dipDTMDeeQKRhMedTx_9AAntJNDY8S-P0m7mZAu05cZxx6E9NMfj-/s150/w2b_facebookbadge.pn") no-repeat scroll left center transparent !important;display: block;float: right;height: 270px;padding: 0 5px 0 46px;width: 245px;z-index: 99999;position:fixed;right:-250px;top:20%;} 
.w2bslikebox div{border:none;position:relative;display:block;} 
.w2bslikebox span{bottom: 12px;font: 8px "lucida grande",tahoma,verdana,arial,sans-serif;position: absolute;right: 6px;text-align: right;z-index: 99999;} 
.w2bslikebox span a{color: #808080;text-decoration:none;} 
.w2bslikebox span a:hover{text-decoration:underline;} 
</style><div class="w2bslikebox" style=""><div>
<iframe src="//www.facebook.com/plugins/likebox.php?href=http%3A%2F%2Fwww.facebook.com%2Fpages%2FNet-PublicLabblogspotcom%2F326506680732670%23%21%2Fpages%2FNet-PublicLabblogspotcom%2F326506680732670&amp;width=292&amp;height=290&amp;colorscheme=light&amp;show_faces=true&amp;border_color&amp;stream=false&amp;header=true&amp;appId=344867528898439" scrolling="no" frameborder="0" style="border:none; overflow:hidden; width:292px; height:290px;" allowTransparency="true"></iframe><span>Widget by:<a href="http://net-publiclab.blogspot.com/2012/06/floating-facebook-likebox-for-blogs.html ">Internet Online Help</a></span></div></div>

http://www.facebook.com/pages/Net-PublicLabblogspotcom/326506680732670
http://www.Facebook.com/Blogger-Tricks/981736126312983612
If you have not yet created a Facebook Username to brand your Fan Page then create it in seconds by clicking this link Once your create a username then replace netppubliclab with your newly created username
    6.  Save your widget
    7.  Now go To Design > Edit HTML
    8. Search for <head> and just below it paste the following JQuery code, (You can ignore this step if Jquery Link is already added in your template)
<script src='https://ajax.googleapis.com/ajax/libs/jquery/1.6.1/jquery.min.js' type='text/javascript'/>
9.  Save your template and you are all done!
Visit your Blogs to see it floating at the right side of your webpage. I hope this widget helps you in increasing the number of your Facebook Readers. The widget code was created by Internet Online Help
READMORE
 

Blogger Tag Cloud Widget by Categories / Labels

This widget is perfect for blogspot users who desire a simple tag cloud for their Categories. The Labels Cloud can easily be implemented within the sidebar of your blog and will match your template wonderfully.


 

Steps for Implementation

Step 1: Back it Up
Always make sure to back up your Blogger Template before doing anything else!

Step 2: The Labels Gadget


Make sure that you have the Labels Page Element installed. If you haven't already...
  1. Go to Layout >Page Elements .
  2. Click "Add a Gadget" and then add the "Labels" gadget.
Step 3: Locating the "Old Code"
  1. Now go to Layout >Edit HTML
  2. Make sure that the "Expand Widgets Template" box is unchecked.
  3. Now we need to search for the code that looks like this.
    <b:widget id='Label1' locked='false' title='Tags' type='Label'/>
    Your code may look a little different. So try using your browser's search tool to find type='Label'.
Step 4: Replacing the "Old Code" with the "New Code"
  1. Once you've located type='Label', remove the whole line of code that looks just like the code mentioned in part 3 of step 3.
  2. Replace this code that you've just deleted with the code below:
    /*
    Distributed by John Smith at WidgetsForFree.blogspot.com
    */ <b:widget id='Label1' locked='false' title='Tags' type='Label'>
    <b:includable id='main'>
    <b:if cond='data:title'>
    <h2><data:title/></h2>
    </b:if>
    <div class='widget-content' style='text-align: justify;'>
    <script type='text/javascript'>
    /*
    Simple Blogger Tag Cloud Widget
    by Raymond May Jr.
    http://www.compender.com
    Released to the Public Domain
    */

    //Settings / Variables
    var max = 150; //max css size (in percent)
    var min = 70; //min css size (in percent)
    var showCount = false; // show counts? true for yes, false for no
    var minCount = 1; // what is the minimum count for a tag to be shown? 1 for all


    //Begin code:
    var range = max - min;

    //Build label Array
    var labels = new Array();
    <b:loop values='data:labels' var='label'>
    labels.push(&quot;<data:label.name/>&quot;);
    </b:loop>

    //URLs
    var urls = new Array();
    <b:loop values='data:labels' var='label'>
    urls.push(&quot;<data:label.url/>&quot;);
    </b:loop>

    //Counts
    var counts = new Array();
    <b:loop values='data:labels' var='label'>
    counts.push(&quot;<data:label.count/>&quot;);
    </b:loop>

    //Number sort funtion (high to low)
    function sortNumber(a, b)
    {
    return b - a;
    }

    //Make an independant copy of counts for sorting
    var sorted = counts.slice();

    //Find the largest tag count
    var most = sorted.sort(sortNumber)[0];

    //Begin HTML output
    for (x in labels)
    {
    if(x != &quot;peek&quot; &amp;&amp; x != &quot;forEach&quot; &amp;&amp; counts[x] >= minCount)
    {
    //Calculate textSize
    var textSize = min + Math.floor((counts[x]/most) * range);
    //Show counts?
    if(showCount)
    {
    var count = &quot;(&quot; + counts[x] + &quot;)&quot;;
    }else{
    var count = &quot;&quot;;
    }
    //Output
    document.write(&quot;<span style='font-size:&quot; + textSize + &quot;%'><a href='&quot; + urls[x] + &quot;' style='text-decoration:none;'>&quot; + labels[x] + count + &quot;</a></span> &quot; );
    }
    }
    </script>
    <br/>
    <span style="font-size:80%;float:right;">Powered by <a href="http://www.widgetsforfree.blogspot.com">Blogger Widgets</a></span>
    </div>
    </b:includable>
    </b:widget>

Step 5: Previewing the New Tag Cloud

Before saving the template make sure to click preview. The new tag cloud should now be visible. If not, make sure that you've completed all the steps correctly.
READMORE
 

Random Posts Widget for Blogger / Blogspot


This widget can definitely bring some excitement to your blogger powered blog. Letting your readers surf your blog to the fullest extent by creating a link to a random post in your blog's sidebar. Besides providing fun for your blog, hopefully your visitors will stay on your site for longer periods of time.

Installation and Customization:

  • Click button below to complete Installation:

  • Once you have installed the widget, you can change the link text. The default value is "View Random Post". To change this, view the code and search for "View Random Post", and change it to any desired text.
Those are all the steps necessary to implement the Random Post Widget to blogger. I hope you and your readers thoroughly enjoy it!
READMORE
 

Related Posts Widget for Blogger / Blogspot


Now here is wonderful hack for displaying links to related posts beneath each of your blog posts. The related articles are chosen from other posts in that same category/label/tag. With this hack many of your readers will remain on your site for longer periods of time when they see related posts of interest.

Preview of Related Posts Links:


Error Fix:

If your related posts have not been working correctly:
  1. Search for this line of code: http://theblogtemplates.com/scripts/Related_posts_hack.js
  2. Replace the URL above withhttps://sites.google.com/site/widgetsforfree/scripts/Related_posts_hack.js

How to Add Related Posts Widget to Your Blog?

  1. Go to Layout >Edit HTML in your Blogger Dashboard.
  2. Back up your existing Template before making any changes!
  3. Make sure to check the "Expand Widget Templates" box.
  4. Search for the </head> tag.
  5. Add the following code just before the </head> tag.
  6. <style> #related-posts { float : left; width : 540px; margin-top:20px; margin-left : 5px; margin-bottom:20px; font : 11px Verdana; margin-bottom:10px; } #related-posts .widget { list-style-type : none; margin : 5px 0 5px 0; padding : 0; } #related-posts .widget h2, #related-posts h2 { font-size : 20px; font-weight : normal; margin : 5px 7px 0; padding : 0 0 5px; } #related-posts a { text-decoration : none; } #related-posts a:hover { text-decoration : none; } #related-posts ul { border : medium none; margin : 10px; padding : 0; } #related-posts ul li { display : block; background : url("https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEgoSWiZDAwfDGlBN8qS0xca5c-QFpguAqNMf8wBAbIlJ7_iQHdIPaErIlx9CFg73HguzBhSwLMB5m2BQ6qo5OCP6HJoiXeYhX3ptCK5hPeFqERlmPxtEZsdaVlVem7dp3UY96h1wmz69p4/") no-repeat 0 0; margin : 0; padding-top : 0; padding-right : 0; padding-bottom : 1px; padding-left : 21px; margin-bottom : 5px; line-height : 2em; border-bottom:1px dotted #cccccc; } </style> <script src='https://sites.google.com/site/widgetsforfree/scripts/Related_posts_hack.js' type='text/javascript'/>
  7. Now search for <data:post.body/>. In some of the templates this code may look like this
    <div class='post-body>
    or
    <data:post.body/>
  8. Add the following code just beneath the code you just searched for.
    <b:if cond='data:blog.pageType == "item"'>
    <div id="related-posts">
    <font face='Arial' size='3'><b>Related Posts : </b></font><font color='#FFFFFF'><b:loop values='data:post.labels' var='label'><data:label.name/><b:if cond='data:label.isLast != &quot;true&quot;'>,</b:if><b:if cond='data:blog.pageType == &quot;item&quot;'>
    <script expr:src='&quot;/feeds/posts/default/-/&quot; + data:label.name + &quot;?alt=json-in-script&amp;callback=related_results_labels&amp;max-results=5&quot;' type='text/javascript'/></b:if></b:loop> </font>
    <script type='text/javascript'> removeRelatedDuplicates(); printRelatedLabels();
    </script>
    </div></b:if>
  9. Now Save your Template and you're done!

Customization

  • In order to change the number of maximum related posts being displayed for each label, search for the code below (within the code given in step 7) and change the number "5" to any desired number.
READMORE
 

Currently Online Readers Widget


tracker
Show off your blog's currently online readers in real time. When clicked on, this live widget will display which pages are being currently read by displaying the URLs. It's really easy to install, just Copy and paste the code from Whos.amung.us into your blog. Supposedly the code is suppposed to be on every page of your site, but it worked find for me in my blog post as you can see above. Go ahead and give the button above a click, and hopefully you will be able to see how popular this site is :)
Get this widget
READMORE
 

Shopping Cart Blogger Template


We are proud to release Shopping Cart, the first ever free e-commerce/ online store template with “Add to Cart” and PayPal Checkout function for Blogger. Many had a view that Blogger cannot be transformed into an online store because people thought it is just aplatform for beginners and does not have features like a CMS. But, we made it possible in this template.
Thanks to the creators of Simple Cart script which powers entire cart functions in this template. Here is a screenshot of the blog which we set for demo purpose only.
Other blogging platforms like WordPress has “Custom Fields” option which lets us to add extra description such as price and thumbnails without having to add the HTML codes in post editor. But, Blogger doesn’t have that feature. So, we at Bloggermint.com tried our best to make the item posting as easy as possible by using tables method. Here is how the table looks in post editor.
Template Usage Instructions
Using Blogger’s “Post Template” feature, we are able to pre-format the post editor with text or code that will appear each time we create a new post. So, we will make use of that feature in this template. First, download Shopping Cart Blogger template and upload it to your blog. Now, go to Settings > Formatting. Set the desired number of posts to be shown in the blog.
Then, scroll down the page until you see “Post Template” option. Paste the following code into the text area. And click “Save“.
<table border="1" style="width: 660px;">
<tbody>
<tr>
 
<th class="item_thumb" id="thumb" width="45%"><a href="https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEj4zGxb4CBuKN3QMyNVQf4ZrObGNBn4ClkcaiWSToP5ZC7fheXZvB4rnpnbFjtG9omaVBZgJovrYwYke8sRwOR6-1KP4DisuwHmyi1mt5AsUWXEYu31smJKb9_K52iH6OE0PWetET5uu5nh/s1600/blue.gif" onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}"><img alt="" border="0" id="BLOGGER_PHOTO_ID_5610175970378217570" src="https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEj4zGxb4CBuKN3QMyNVQf4ZrObGNBn4ClkcaiWSToP5ZC7fheXZvB4rnpnbFjtG9omaVBZgJovrYwYke8sRwOR6-1KP4DisuwHmyi1mt5AsUWXEYu31smJKb9_K52iH6OE0PWetET5uu5nh/s400/blue.gif" style="cursor: hand; cursor: pointer; display: block; height: 164px; margin: 0px auto 10px; text-align: center; width: 148px;" /></a></th>
 
<td><input class="item_add" type="button" value="Add to Cart" /></td>
</tr>
<tr>
 
<th><b>Item Name</b></th>
 
<td class="item_name">Product Name Goes here!</td>
</tr>
<tr>
 
<th><b>Price</b></th>
 
<td class="item_price">$99.99</td>
 
</tr>
<tr>
 
<th><b>Description</b></th>
 
<td class="item_Description">Your product description here!</td>
 
</tr>
<tr>
 
<th><b>Available Stock</b></th>
 
<td>Stock count here!</td>
</tr>
<tr>
 
<th><b>Misc</b></th>
 
<td>Place extra thumbs/images of product here</td>
</tr>
</tbody>
</table>
Here is the screenshot of post template which has been added with the code.
Now go to Posting | New Post and you’ll see the table there in your post editor. You can remove the default image that we have added in the code by clicking on it and select “Remove“. Then, upload your item image inside that table cell. We suggest you to use images of medium sizes.
Fill in other options such as Item NamePrice and Description by replacing the default texts. They will be used as values by the SimpleCart script during the PayPal Checkout. And please remember that your Item Name must be unique. Now, click on the HTML Mode in post editor and remove the unnecessary <div>.... </div> in the code for item image. We need only the <img ... /> which has been highlighted in the image below.
So, this is how it will look once we remove the <div>.... and <a href.... which wraps <img ... code.
You can change it back to “Compose” mode, add/edit any information about the product and hit the “Publish” button. That’s all.
PayPal Email Setup Instructions
Go to Design > HTML. Search for simpleCart.email using CTRL + F. You will find this piece of code.
<script type='text/javascript'>
simpleCart
.email = &quot;bloggermint@gmail.com&quot;;
simpleCart
.checkoutTo = PayPal;

simpleCart
.cartHeaders = [&quot;thumb_image&quot; , &quot;Quantity_input&quot; ,   &quot;Total&quot;, &quot;remove&quot; ];
</script>
Replace the default PayPal email that we set (bloggermint@gmail.com) to yours. AndSave the template. You’re done! Here is a sample screenshot of PayPal pop up window during checkout.
We have planned for a paid PRO version of this Shopping Cart with more advanced features and professional look. Please keep the footer credit links intact. If you want to remove the link you have to pay a little fee. And, if you want to get the template customized , contact us. Also check our Blogger Template site Blogger Templates Hub Blog for latest blogger templates.
Update 08/06/2011 :
For those who don’t have PayPal/credit card, you might want to use email contact form. You can replace “Add to Cart” button with a email contact/feedback form link by following the steps below. Heartfelt thanks to one of our blog reader, Vivija(Ble) from Skopje, Macedonia, who spent her time to find this method.
First, go to Kontacr.com and register for a new account. Once you logged into Kontacr, scroll down the page until you see the “Ajax Embed Widget” or “Buttons Code” and get your Kontacr ID which will look like this :- id=39662;. Copy it and keep it for the usage in the coming steps.
Now, go to Design > Edit HTML . Add the code shown below just before the closing </head>tag.
<script type="text/javascript" src="http://kontactr.com/kpu/kontactr.js"></script>
Then, search for the piece of code shown below using CTRL + F.
input.item_add{
    bottom
: 9px;
    font
-size: 11px;
    position
: absolute;
    right
: 15px;
    width
: 90px;
}
There are two input.item_add{ codes in this template. But, you can differentiate them by looking at the CSS declarations inside { .... }. Search for the input.item_add{ code which comes earlier in CSS part. Then, replace it with this code.
span.item_add{
    bottom
: 9px;
    font
-size: 11px;
    position
: absolute;
    right
: 15px;
    width
: 90px;
}
So now, search for the second input.item_add { code at the bottom of the CSS Part.
input.item_add {
    font
-size: 17px;
    height
: 40px;
    margin
: 5px 0 0 140px;
    position
: relative;
    width
: 120px;
}
And replace it with
span.item_add {
    font
-size: 17px;
    height
: 40px;
    margin
: 5px 0 0 140px;
    position
: relative;
    width
: 120px;
}
And now click “Save Template”. Once saved, go to Settings > Formatting and search for the “Post Template” option which is located at the bottom of that page.
Add the following code into the text area there and click “Save Settings“. But before that, remember to change the id=39662; with your ID in Kontacr which you get earlier.
<table border="1" style="width: 660px;">
 
<tbody>
<tr>
 
<th class="item_thumb" id="thumb" width="45%"><a href="https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEj4zGxb4CBuKN3QMyNVQf4ZrObGNBn4ClkcaiWSToP5ZC7fheXZvB4rnpnbFjtG9omaVBZgJovrYwYke8sRwOR6-1KP4DisuwHmyi1mt5AsUWXEYu31smJKb9_K52iH6OE0PWetET5uu5nh/s1600/blue.gif" onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}"><img alt="" border="0" id="BLOGGER_PHOTO_ID_5610175970378217570" src="https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEj4zGxb4CBuKN3QMyNVQf4ZrObGNBn4ClkcaiWSToP5ZC7fheXZvB4rnpnbFjtG9omaVBZgJovrYwYke8sRwOR6-1KP4DisuwHmyi1mt5AsUWXEYu31smJKb9_K52iH6OE0PWetET5uu5nh/s400/blue.gif" style="cursor: hand; cursor: pointer; display: block; height: 164px; margin: 0px auto 10px; text-align: center; width: 148px;" /></a></th>
 
<td><span class="item_add"><script type="text/javascript"> id=39662; t=1; ctxt="Order Now"; </script>
<script type="text/javascript" src="http://kontactr.com/kpu/kontactr.js"></script></span></td>
 
</tr>
<tr>
 
<th><b>Item Name</b></th>
 
<td class="item_name">Product Name Goes here!</td>
</tr>
<tr>
 
<th><b>Price</b></th>
 
<td class="item_price">$99.99</td>
 
</tr>
<tr>
 
<th><b>Description</b></th>
 
<td class="item_Description">Your product description here!</td>
 
</tr>
<tr>
 
<th><b>Available Stock</b></th>
 
<td>Stock count here!</td>
 
</tr>
<tr>
 
<th><b>Misc</b></th>
 
<td>Place extra thumbs/images of product here</td>
 
</tr>
</tbody></table>
And you’re done. I have updated the demo blog with email feedback links in several items. Thanks again to Vivija.
Update 25/07/2011 :
Due to some suspicious changes in our Google code, where we hosted our script, the Cart Javascript was not working. We have reuploaded the js file. We are are sorry for the inconvenience caused.
Search for the following code in your template HTML editor.
<script src='http://introbloggerscripts.googlecode.com/files/cart.js' type='text/javascript'/>
And replace it with the newer source URL.
<script src='http://shopppingcart.googlecode.com/files/simplecart.js' type='text/javascript'/>
Update: I am trying to get the demo URL back to the form. For some unknown reason the Demo blog wasn’t working. So I have contacted Blogger, hope they fix it soon.
Update 2: We have fixed the demo blog issue. Thanks for your patience.
If you want some new features added to the template, hire me for the customization. Hourly rates starting from $25/hr.
READMORE
 

Leave Me a Comment Below. Thanks :)