Facebook Youtube linkedin Twitter feedburner Skype Me

පාවෙන Google +1, Facebook, Twitter බොත්තම් Share Widget එකක් ඔයාලගේ බ්ලොග් එකටත් දාගන්න.. 16

bt4u | 12/10/2011 | , , , , ,


කොහොමද කට්ටියට ගොඩක් දවසකින් ඔයාලට මොකුත් බ්ලොග් ගැජට් එකක් දෙන්න බැරි උනා ඔන්න එකටත් එක්ක ලස්සන පාවෙන Google +1, Facebook, Twitter බොත්තම් Share Widget එකක් මම අරගෙන අවා.. ඔයාලත් ආසනම් මේ ගැජට් එක බ්ලොග් එකට දා ගන්න.. මම පහල කියලා තියෙන ව්දියට වැඩ ටික කරගෙන බ්ලොග් එකට මේ ගැජට් එක දා ගන්න..

මුලින්ම ඔයාලා Dashboard >> Design >> Edit Html >> යන්න..මතක ඇතුව Expand Widget Templates තැනට හරිය දෙන්න..දැන් ඔයලා යතුරු පුවරුවේ Ctrl+F යතුරු එක වර ඔබන්න..දැන් ඔයාලට ලැබේයි සේර්ච් බාර් එකක්.

එතන ]]></b:skin> කියලා ටයිප් කරන්න..දැන් ඔයලාගේ HTML box එකේ මේ කොඩ් එක Highlight වෙලා තියෙනවා පෙනෙයි..
දැන් ඔයලා ]]></b:skin> කොඩ් එකට පහලින් මම පහල දිලා තියෙන කොඩ් එක Copy, Past කරන්න...


<style type='text/css'>
#floatdiv { 
    position:absolute; 
    width:94px; 
    height:229px; 
    top:0; 
    left:0; 
        z-index:100 
}

#saamgeadaviya { 
border:1px solid #ddd;
-moz-border-radius: 6px;
-webkit-border-radius: 6px;
-goog-ms-border-radius: 6px;
border-radius: 6px; 
left: -12px;
padding: 8px; 
position:relative; 
height:220px; 
width:55px; 
margin:0 0 0 69px; 
}
</style>


දැන් Template එක Save කරන්න...Save Template 


දැන් ඔයලා Desing >> Page Element >> Add a gadget >> "Html/java script" එකක් ගන්න..එකට මම පහල දිලා තියෙන කොඩ් එක copy කරගෙන ඔයාලා "html/java script" එකට past කරන්න.

<div id="floatdiv"> 
<div id="saamgeadaviya"> 
    <table cellpadding="1px" cellspacing="0">
    <tr> 
    <td style="border-bottom: 1px solid #E8E8E8; padding:5px 0 2px 0;"> 
<div id="fb-root"></div><script src="http://connect.facebook.net/en_US/all.js#xfbml=1"></script><fb:like href="" send="false" layout="box_count" show_faces="false" font=""></fb:like> 
    </td> 
    </tr>
    <tr> 
    <td style="border-bottom: 1px solid #E8E8E8; padding:5px 0px;"> 
<g:plusone size="Tall" expr:href="data:post.url"> 
    </g:plusone></td> 
    </tr>
    <tr> 
    <td style="border-bottom: 0px solid #E8E8E8; padding:5px 0 0px 0;">
<a href="http://twitter.com/share" class="twitter-share-button" data-count="vertical" data-via="Your Twitter ID">Tweet</a><script type="text/javascript" src="http://platform.twitter.com/widgets.js"></script> 
    </td> 
    </tr>
    <tr> 
    <td style="border-bottom: 0px solid #E8E8E8; padding:0px 0 0px 0;">
<p style=" font-size:10px; text-align:center; color:#ddd;"></p> 
    </td> 
    </tr>
    </table> 
</div> 
</div> 


<script type="text/javascript"> 
// JavaScript Document

   <!-- 
/* Script by: www.jtricks.com 
* Version: 20071017 
* Latest version: 
* www.jtricks.com/javascript/navigation/floating.html 
*/ 
var floatingMenuId = 'floatdiv'; 
var floatingMenu = 
{ 
    targetX: 0, 
    targetY: 300,
    hasInner: typeof(window.innerWidth) == 'number', 
    hasElement: typeof(document.documentElement) == 'object' 
        && typeof(document.documentElement.clientWidth) == 'number',
    menu: 
        document.getElementById 
        ? document.getElementById(floatingMenuId) 
        : document.all 
          ? document.all[floatingMenuId] 
          : document.layers[floatingMenuId] 
};
floatingMenu.move = function () 
{ 
    floatingMenu.menu.style.left = floatingMenu.nextX + 'px'; 
    floatingMenu.menu.style.top = floatingMenu.nextY + 'px'; 
}
floatingMenu.computeShifts = function () 
{ 
    var de = document.documentElement;
    floatingMenu.shiftX =  
        floatingMenu.hasInner  
        ? pageXOffset  
        : floatingMenu.hasElement  
          ? de.scrollLeft  
          : document.body.scrollLeft;  
    if (floatingMenu.targetX < 0) 
    { 
        floatingMenu.shiftX += 
            floatingMenu.hasElement 
            ? de.clientWidth 
            : document.body.clientWidth; 
    }
    floatingMenu.shiftY = 
        floatingMenu.hasInner 
        ? pageYOffset 
        : floatingMenu.hasElement 
          ? de.scrollTop 
          : document.body.scrollTop; 
    if (floatingMenu.targetY < 0) 
    { 
        if (floatingMenu.hasElement && floatingMenu.hasInner) 
        { 
            // Handle Opera 8 problems 
            floatingMenu.shiftY += 
                de.clientHeight > window.innerHeight 
                ? window.innerHeight 
                : de.clientHeight 
        } 
        else 
        { 
            floatingMenu.shiftY += 
                floatingMenu.hasElement 
                ? de.clientHeight 
                : document.body.clientHeight; 
        } 
    } 
}
floatingMenu.calculateCornerX = function() 
{ 
    if (floatingMenu.targetX != 'center') 
        return floatingMenu.shiftX + floatingMenu.targetX;
    var width = parseInt(floatingMenu.menu.offsetWidth);
    var cornerX = 
        floatingMenu.hasElement 
        ? (floatingMenu.hasInner 
           ? pageXOffset 
           : document.documentElement.scrollLeft) + 
          (document.documentElement.clientWidth - width)/2 
        : document.body.scrollLeft + 
          (document.body.clientWidth - width)/2; 
    return cornerX; 
};
floatingMenu.calculateCornerY = function() 
{ 
    if (floatingMenu.targetY != 'center') 
        return floatingMenu.shiftY + floatingMenu.targetY;
    var height = parseInt(floatingMenu.menu.offsetHeight);
    // Handle Opera 8 problems 
    var clientHeight = 
        floatingMenu.hasElement && floatingMenu.hasInner 
        && document.documentElement.clientHeight 
            > window.innerHeight 
        ? window.innerHeight 
        : document.documentElement.clientHeight
    var cornerY = 
        floatingMenu.hasElement 
        ? (floatingMenu.hasInner  
           ? pageYOffset 
           : document.documentElement.scrollTop) + 
          (clientHeight - height)/2 
        : document.body.scrollTop + 
          (document.body.clientHeight - height)/2; 
    return cornerY; 
};
floatingMenu.doFloat = function() 
{ 
    // Check if reference to menu was lost due 
    // to ajax manipuations 
    if (!floatingMenu.menu) 
    { 
        menu = document.getElementById 
            ? document.getElementById(floatingMenuId) 
            : document.all 
              ? document.all[floatingMenuId] 
              : document.layers[floatingMenuId];
        initSecondary(); 
    }
    var stepX, stepY;
    floatingMenu.computeShifts();
    var cornerX = floatingMenu.calculateCornerX();
    var stepX = (cornerX - floatingMenu.nextX) * .07; 
    if (Math.abs(stepX) < .5) 
    { 
        stepX = cornerX - floatingMenu.nextX; 
    }
    var cornerY = floatingMenu.calculateCornerY();
    var stepY = (cornerY - floatingMenu.nextY) * .07; 
    if (Math.abs(stepY) < .5) 
    { 
        stepY = cornerY - floatingMenu.nextY; 
    }
    if (Math.abs(stepX) > 0 || 
        Math.abs(stepY) > 0) 
    { 
        floatingMenu.nextX += stepX; 
        floatingMenu.nextY += stepY; 
        floatingMenu.move(); 
    }
    setTimeout('floatingMenu.doFloat()', 20); 
};
// addEvent designed by Aaron Moore 
floatingMenu.addEvent = function(element, listener, handler) 
{ 
    if(typeof element[listener] != 'function' || 
       typeof element[listener + '_num'] == 'undefined') 
    { 
        element[listener + '_num'] = 0; 
        if (typeof element[listener] == 'function') 
        { 
            element[listener + 0] = element[listener]; 
            element[listener + '_num']++; 
        } 
        element[listener] = function(e) 
        { 
            var r = true; 
            e = (e) ? e : window.event; 
            for(var i = element[listener + '_num'] -1; i >= 0; i--) 
            { 
                if(element[listener + i](e) == false) 
                    r = false; 
            } 
            return r; 
        } 
    }
    //if handler is not already stored, assign it 
    for(var i = 0; i < element[listener + '_num']; i++) 
        if(element[listener + i] == handler) 
            return; 
    element[listener + element[listener + '_num']] = handler; 
    element[listener + '_num']++; 
};
floatingMenu.init = function() 
{ 
    floatingMenu.initSecondary(); 
    floatingMenu.doFloat(); 
};
// Some browsers init scrollbars only after 
// full document load. 
floatingMenu.initSecondary = function() 
{ 
    floatingMenu.computeShifts(); 
    floatingMenu.nextX = floatingMenu.calculateCornerX(); 
    floatingMenu.nextY = floatingMenu.calculateCornerY(); 
    floatingMenu.move(); 
}
if (document.layers) 
    floatingMenu.addEvent(window, 'onload', floatingMenu.init); 
else 
{ 
    floatingMenu.init(); 
    floatingMenu.addEvent(window, 'onload', 
        floatingMenu.initSecondary); 
}
//-->
</script>

<script src='http://apis.google.com/js/plusone.js' type='text/javascript'> {lang: &#39;en-US&#39;} </script>


වැදගත්: ඉහත කොඩ් එකේ Your Twitter ID තැනට ඔයාලගේ twitter id එක දෙන්න ..

දැන් HTML/JavaScript එක Save කරගන්න..

වැඩේ ගොඩ....

wooow.. දැන් ඔයලගේ බ්ලොග් එකටත් ලස්සන පාවෙන Google +1, Facebook, Twitter බොත්තම් Share Widget එකක් තියෙනවා.. :D

ඔබට ජය

ඇති වෙනකල් බාන්න IDM V6.07 Full Setup එක බාගන්න (Crack එක සහිතයි) 13

bt4u | 11/12/2011 | ,


මෙන්න මම ඔයාලට අලුත්ම Internet Download Manager V6.7 මෘදුකාංගය අරගෙන අවා .(Crack එක සහිතයි) ගොඩක් දෙනක් දැන් Internet Download Manager මෘදුකාංගය භාවිතා කරන නිසා. මේක ගොඩක් වැදගත් වෙයි ඔයාලට,  Internet Download Manager අලුත් සංස්කරණයේ පරන සංස්කරණ වලට වඩා වෙනස් කම් කිහිපයක්ම IDM සමාගම සිදු කරලා තියෙනවා, එවා බලන්න ඉතින් මෙක බාගෙන install කරලා බලන්න :D , ඉතින් ඔයාලටත් මේක බාගන්න ඔනේ නම් කැමති හැමොම පහල ලින්ක් එකෙන් බාගන්න..

IDM V6.07 Full Setup එක බාගන්න / 4.50 MB

ඔබට ජය

Pop ගායක Justin Bieber ගේ Under the Mistletoe [2011] ඇල්බමය බාගන්න 5

bt4u | 11/03/2011 | ,


මෙන්න මම ඔයාලට සුපිරි Pop ගායක Justin Bieber ගේ  Under the Mistletoe [2011] අලුත්ම ඇල්බමය ගෙනාවා..මෙකේ ගොඩක් ලස්සන ගිත තියෙනවා..ඉතින් ඔයාලත් Justin Bieber ගේ ගිත වලට ආදරේ කරනවනම් මෙන්න අලුත්ම ඇල්බය තියෙනවා..කැමති හැමොම පහල ටොරන්ට් ලින්ක් එකෙන් බය නැතුව බාගන්න..

T R A C K L I S T
******************

1 Only Thing I Ever Get for Christmas
2 Mistletoe
3 The Christmas Song (Chestnuts Roasting On an Open Fire) (feat. Usher)
4 Santa Claus Is Coming to Town
5 Fa la La (feat. Boyz II Men)
6 All I Want for Christmas Is You (Superfestive!) [Duet With Mariah Carey]
7 Drummer Boy (feat. Busta Rhymes)
8 Christmas Eve
9 All I Want Is You
10 Home This Christmas (feat. The Band Perry)
11 Silent Night
12 Christmas Love
13 Fa La La (feat. Boyz II Men) [A Cappella]
14 Pray
15 Someday At Christmas




Justin Bieber ගේ Under the Mistletoe [2011] ඇල්බමය මෙතනින් බාගන්න / 117.75 MB

QUALITY: 320kbps CBR (highest) ITUNESRIP

Artist: Justin Bieber
Album: Under the Mistletoe
Release Date: 2011
Genre: Holiday


ඔබට ජය..

Facebook එකේ Chat Smiley සියල්ල අපේ Facebook Chat Box එකට දා ගමු / මැක්සා වැඩක් 8

bt4u | 10/21/2011 | , ,




මෙන්න මම ඔයාලට අරගෙන අවා අපේ Facebook Chat box එකට සියලුම Facebook Chat Smiley දාගන්න පුලුවන් Google chrome extensions එකක්, ඇත්තටම මෙක නම් මැක්සා, ඔයාලත් කැමති නම් මෙක ඔයාලගේ Facebook Chat box එකට දාගන්න පහල ලින්ක් එකෙන් ඔයාලට මෙක දාගන්න පුලුවන්,

Facebook Chat Smiley

මම හිතනවා ඔයාලට මෙක වැදගත් වෙයි කියලා..එහෙනම් මම යන්නම්,

ඔබට ජය


Facebook Timeline යනු මාරයාට අත වැනීමකි! වහා එය ඉවත් කරගන්න. 11

bt4u | 10/13/2011 | , ,


Facebook වෙබ් අඩවිය නුදුරේ දී හඳුන්වා දීමට නියමිත facebook Timeline පිළිබඳව ඔබ දැනටමත් අසා ඇතුවාට සැකයක් නැහැ. එහි ඇති විශේෂත්වය අප පළ කරන ලද පැරණි Posts පිළිවෙලට අපට අවශ්‍ය කාල සීමාව අනුව ආපසු බලාගත හැකි වැනි නවතම අංග වලින් සමන්විත වීමයි.

නමුත් අප විසින් නිල වශයෙන් දැනුම් දීමට පෙර ඇක්ටිව් කරගන්නා ලද facebook Timeline නිසා අපගේ එකවුන්ට් එක Disable වීමේ අවදානමක් තියෙනවා. මේක 100% ක්ම ඇත්ත කියලා කියනන් බැරි උනත් ඒක ඇත්ත කියලා කියන්න සාධක තියෙනවා.



1. මෙය ඇක්ටිව් කරගත් බහුතරයක් දෙනාගේ එකව්න්ට් මේ වන විට Disable වී තිබීම.
2. මෙය ඔව්න් විසින්ම නිකුත් කලද එය යම් කි ආකාරයක "බුද්ධිමය දේපල අනවසරයෙන් පාවිච්චි කිරීමක්"

මේක ඇත්තටම බුද්ධිමය දේපල අනවසරයෙන් පාවිච්චි කිරීමක් තමයි. මොකද ඒක තාම නිල වශයෙන් නිකුත් වෙලා නැති නම් ඒක අපි බලෙන් පාවිච්චි කිරීමක් තමයි මෙතන වෙන්නෙ. ඒ නිසා අපේ එකවුන්ට්ස් ගැන මේ වගේ තීරණයක් ගන්න ෆේස්බුක් බලධාරින්ට අයිතියක් තියෙනවද නැද්ද කියල තමන්ගෙ හිතෙන්ම අහල බලන්න. :)

මේ තියෙන්නෙ එහෙම එකවුන්ට් එක ඩිසේබල් වෙච්ච කෙනෙක්ට ආපු මෙසේජ් එක.
Hi,
Your personal account was recently disabled by Facebook. We are writing on behalf of the Facebook Platform team to let you know that any applications that were under your sole control as a developer have also been disabled as a precautionary measure, which include: Tline (ID #241158815937031)
For more information on recovering or transferring these applications, please visit our FAQ page: http://www.facebook.com/help?faq=17556 .
If your account is disabled, please note that the Platform team cannot re-enable your account. To find out more about your disabled account, please visit this page of our Facebook Help Center http://www.facebook.com/help/?page=1048.
Thank you,
The Facebook Platform Team
එකේ මෙහෙම තියෙනවනේ,

"If your account is disabled, please note that the Platform team cannot re-enable your account.

ඒ කියන්නෙ එකවුන්ට් එක ආයිත් ගන්න බෑ කියන එක තමයි.

ඒ වගේම Timeline යූස් කරපු ගොඩක් අයගේ ෆේස්බුක් ෆෝරම් එකවුන්ට් එකත් බෑන් කරලා.ඒ නිසා කෝකටත් කියලා තම තමන්ගෙ ටයිම් ලයින් ටික ඩිසබල් කරගන්න එක ඇගට ගුණයි.ඔයගොල්ලො හදපු ටයිම් ලයින් ඇප්ලිකේශන් එක අයින් කරන හැටි දන්නෙ නැත්නම් මේ පියවර අනුගමනය කරලා ඒක තමන්ගෙ ප්‍රොෆයිල් එකෙන් අයින් කරගන්න පුලුවන්.

මෙන්න ඩිසබල් කරගන්න ඕනේ විදිහ:

මෙතනට යන්න. http://developers.facebook.com/apps

ඔබගේ ඇප්ලිකේශන් එක තෝරන්න > එහි Settings > Edit Settings
දැන් වම් පැත්තේ යටම ඇති Delete App මගින් එම Application එක ඩිලීට් කරන්න



මෙය මෙසේ විය හැක කියා අනුමානයක් පමනි,මේක ඇත්ත උනත් නැති උනත් විය හැකි උනත්,
කෝකටත් කියලා කට්ටියට Enable කරගත්තු Timeline එක ඩිසබල් කරගන්න.

මේක යාලුවො අතරෙත් යවන්න පුලුවන් නම් හොඳයි. මොකද දන්නෙ නැතුව යාලුවෙක්ගෙ එකවුන්ට් එකක් නැති උනත් අද කාලෙ හැටියට ජීවිතය නැති උනා වගේ තමයි. ඒක නිසා මේක පරක්කු වෙන්න කලින් මිතුරන් අතරෙ යවන්න, එවිට ඔයාලටත් යාලුවොන්ටත් බේරෙන්න පුලුවන් වේවි.


උපුටා ගැනිම: lyfstyleblog.blogspot.com

ebay Sony Ericsson x10 ජංගම දුරකථනය සහ ලංකාවේ තැපැල 23

bt4u | 8/29/2011 | , ,


කොහොමද කට්ටියට, :D ගොඩ දවසකින් මම ebay වලින් ගනු දෙනු කරපු දෙයක් ගැන දාන්න බැරි උනා පොස්ට් එකක්, මම අද ඔයාලට කියන්න යන්නේ මම මේ ලගදි ebay එකෙන් ලංකාවට ගෙන්නගත්තු item එකක් ගැන, ගොඩක් දෙනෙක් ebay වලින් Mobile Phone ගන්න බයයි නේ.. මම හිතනවා මේ පොස්ට් එක කියනවනකොට ඔයලාගේ බය නැතිවේයි කියලා, හරි කතාව මෙහෙමයි :D මට ලොකු අසාවක් තිබ්බා Sony Ericsson x10 Mobile Phone එකට, ඉතින් මම ඔය අතරෙ ebay එකේ පොඩ්ඩක් මේ ෆොන් එක ගැන හොයලා බැලුවා, ලංකාවේ තියෙන ගානට වඩා සැහෙන්න අඩුයි, ඉතින් මම හිතුවා ebay වලින් ෆොන් එකක් ගන්නවා කියාලා, දවස් 2ක් තිස්සේ ebay එකෙ x10 ෆොන් ගැන හොයල බැලුවා ඔයා අතරේ එකකට මගේ හිත ගියා කිසිම අව්ලක් නැ කික්ම තමා, මැක්සා ෆොන් එක, Bid කරන්න තමා තිබ්බේ, මගේ අතේ Internet mony වලින් හොයාගත්ත සල්ලි වලින් $200 වගේ අතේ තිබ්බා,Bid  ක්ලොස් වෙන්න පැය 4ක් වගේ තිබ්බා, ඒ වේනකොට උපරිම Bid  එක තිබ්බේ $120ට, ලංකාවේ වේලාව තිබ්බේ ඒ වේනකොට පාන්දර 12.10 ඉතින් තව පැය 4ක් ඉන්න තියෙන නිසා මම මගේ අතේ තිබ්බ $200 උපරිම Bid  එක විදියට දාලා නිදා ගත්තා, පාන්දර ඇහැරිලා  ebay ලොග් වෙලා බැලුවා ,  $170 Bid එක Win කරලා, අව්ලකට තිබ්බේ ෆොන් එක ඇමරිකන් කාරයෙක්ගේ , පොර කිව්වා ලංකාවට ෆොන් එක USPS වලින් එවන්න වේනම ගානක් දෙන්න වේනවා කියලා, $15 තමා කිව්වේ , මම $185 පේපැල් වලින් පොරට pay කරා,


 දවස් 10කින් වගේ නුවර තැපැල් කන්තොරුවෙන් ලියුමක් අවා මගේ item එක තැපැල් කන්තොරුවේ නතර වේලා තියෙනවා අදාල බදු ගේවලා item එක ගන්න කියලා, තැපැල් කන්තොරුවෙදි මගේ ඉදිරියේ Item එකේ box එක කඩලා බැලුවා, (ෆොන් එකක් නේද ?) මෙන්න බොලේ රේගුනිලධාරි තුමා ගත්තු කටට කිව්වා කොලඹ යන්න වේයි කියලා කික්ම තමා , :(  TRC එකට ගිහින් අදලා ලිපි පුරවලා අවසර අරන් එන්න කිව්වා ෆොන් එක දෙන්න , මොනවා කරන්නද හෙට කොලඹ යනවා කියලා හිතගෙන ගෙදර අවා. මේ සින් එක අප්පච්චිට කිව්වට පස්සේ, අප්පච්ච් අදුරන මැන් කෙනෙක් Postoffice ඉන්නවා මැන්ට කියලා බලමු කියලා , පහුවදා  Postoffice  ගිහින් අර පොරව දලා ශෙප් කරලා ෆොන් එක ගන්න පුලුවන් උනා :D රුපියල් 200 බදු ගෙව්වා :lol ෆොන් එක නම් මැක්සා කියලා වැඩක් නැ උපරිම හොදට තිබ්බා,


ෆොන් එකේ SimLock කඩන්න වෙනම $20 ගියා, මට නම් වියදම් උන ගානට වඩා මේ ෆොන් එක සැහෙන්ට වටිනවා, ඉතින් ඔයාලත් eaby වලින් ෆොන් ගන්න ඉන්නවනම් බය නැතුව ගන්න, අව්ලකට තියෙන්නේ ෆොන් එක මට්ටු උනොත් TRC යන්න වෙන එක තමා, අහ් කියන්න අමතක උනා මම ebay වලින් laptop එකත්  ගත්තා ලංකාවට අපුවාම එක ගන්න කන කට්ට ගැනත් කියනම්කෝ, :D එහෙනම් ඉලග ලිපියෙන් හමුවෙමු ,

Sony Ericsson XPERIA X10a Sensuous black (AT&T) Smartphone

ඔබට ජය



ebay Sony Ericsson XPERIA X10 Smartphones / Buy it Now



Facebook එකේ පරණ Chat Box එක නැවත ගනිමු.. 7

bt4u | 8/05/2011 | , ,



මෙන්න මම ඔයාලට අරගෙන අවා Facebook එකේ අලුත් Chat Box එක වෙනස් කරන්න පුලුවන් Google chrome extension එකක් මෙක වැඩ කරන්නේ Google Chrome Browser එක භාවිතා කරන අයට විතරයි.. මට Firefox එකට හරි යන එක ලැබුනේ නැ.. එක ලැබුනොත් එකත් මම ඔයාලට ලබා දෙන්නම්.. හරි එහෙනම් ඔයාලට කරන්න තියෙන්නේ මම පහල දිලා තියෙන Google chrome extension එක ඔයාලගේ Google Chrome Browser එකට Install කරගන්න..



Extension 1

Extension 2

වැදගත්: ඉහත දිලා තියෙන Extension 1 එක ඔයාලා ඔයාලගේ Google Chrome Browser එකට Install කරලා Chat Box එක හරි ගියේ නැත්තම් Extension 2 එකත් Install කරන්න..මේ Extension දෙකම Install කිරිමෙන් අනිවා පරණ Facebook Chat Box එක ඔයාලට ගන්න පුලුවන්..

මම හිතනවා ඔයාලට මේ ලිපිය වැදගත් වෙන්න ඇති කියලා..නැවතත් අලුත් ලිපියකින් හමුවෙමු..

ඔබට ජය. !

අලුත් Kaspersky Internet Security 2011 Keys බාගන්න / 06.06.2011 6

bt4u | 6/06/2011 |

Date.................: 06.06.2011
By...................: Sam
WebSite..............: http://saamgeadaviya.blogspot.com/
Release Name....: Kaspersky Internet Security 2011 Keys

  Kaspersky Internet Security 2011 අලුත් Keys මෙතනින් බාගන්න

මුහුණු පොතේ අලුත් Facebook Share Count බොත්තම අපේ බ්ලොග් එකට දාගමු../ Facebook Share Count New Button 3

bt4u | 5/23/2011 | , , ,

මෙන්න ඔයාලට Facebook එකේ අලුත් Share Count බොත්තම අරගෙන අවා..ඔයාලගේ බ්ලොග් එකේ ලිපි මුහුණු පොතට Share  කරන්න ගොඩක් මෙක වටිනවා..ඒ වගෙම ඔයාලාගේ බ්ලොග් එකේ ලිපි බලන්න ඔයාලගේ මුහුණු පොතේ ඉන්න යාලුවන් ගෙන්වා ගන්නත් මේක වටිනවා.ඉතින් ඔයාලත් කැමති නම් මෙක බ්ලොග් එකට දාගන්න..පහල කියලා තියෙන විදියට වැඩ ටික කරන්න..

මුලින්ම ඔයාලා Dashboard >> Design >> Edit Html >> යන්න..මතක ඇතුව Expand Widget Templates තැනට හරිය දෙන්න..දැන් ඔයලා යතුරු පුවරුවේ Ctrl+F යතුරු එක වර ඔබන්න..දැන් ඔයාලට ලැබේයි සේර්ච් බාර් එකක්.

එතන <div class="post-header-line-1"> කියලා ටයිප් කරන්න..දැන් ඔයලාගේ HTML box එකේ මේ කොඩ් එක Highlight වෙලා තියෙනවා පෙනෙයි..දැන් ඔයලා <div class="post-header-line-1"> කොඩ් එකට පහලින් මම පහල දිලා තියෙන කොඩ් එක Copy, Past කරන්න...

<b:if cond='data:blog.pageType == &quot;item&quot;'><div style="float:left;margin:10px 10px 10px 0;"><script type="text/javascript">var fbShare = {url: '<data:post.url/>', size: 'large' }</script><script src="http://widgets.fbshare.me/files/fbshare.js" type="text/javascript"></script></div></b:if>

දැන් Template එක Save කරන්න.. Save Template


වැඩේ ගොඩ.... දැන් ඔයලගේ බ්ලොග් එකටත් ලස්සන Facebook Share Count බොත්තමක් තියෙනවා..

ඔබට ජය

තමන්ගෙම Domain name එකක් අඩුවට ගන්න ඉන්න අයට Godaddy Domain Promo Coupon For May 2011 0

bt4u | 5/07/2011 | , ,



මෙන්න මම ඔයාලට මේ මාසයට Godaddy අඩවියෙන් ඔයාලට අඩුවට ඩොමයින් ගන්න පුලුවන් Promo Coupon කොඩ් අරගෙන අවා..ඉතින් ඔයාලත් Godaddy අඩවියෙන් තමන්ගේම එකක් ගන්න ඉන්නවනම් මම පහල දිලා තියෙන Promo Coupon කොඩ් භාවිතා කරලා අඩුවට ඩොමයින් එකක් ගන්න..

CHILL749 – $7.49 .COM domain names
CHILL799 – $7.99 .NET, .BIZ, and .ORG domains
CHILL10OFF – 10% off all orders
CHILL5OFF – $5 off all orders $30 or more
CHILL40 – $10 off all orders $40 or more
CHILL75 – 15% off all orders $75 or more
CHILL20 – 20% off 1, 2, or 3 year hosting plans
CHILL1099 – .COM domains for $10.99 (valid through May 31)
CHILLECO – Deluxe Hosting for the price of Economy Hosting (valid May 1 – 31)
CHILL1299 – $12.99 SSL Certificates



ඔබට ජය

මුහුණු පොතේ SEND බොත්තම අපේ බ්ලොගයටත් දා ගමු../ Facebook Send Button 4

bt4u | 5/06/2011 | , , , ,


මෙන්න මම ඔයාලට Facebook එකේ අලුත්ම වැඩ කැල්ලක් අරගෙන අවා...ඔවුන් අලුතෙන් හදලා තියෙනවා SEND කියලා බොත්තමක් මේක මගින් අපේ බ්ලොග් එකේ පොස්ට් එකක් , ඊමෙල් මාරගයෙන්,  Facebook ගෘප් වලටයි,මිතුරන්ටයි..SEND කරන්න පුලුවන්..ඇත්තටම මරු ගැජට්  එකක්..ඉතින් ඔයාලත් මේක බ්ලොග් එකට දා ගන්න කැමති නම් මම පහල කියලා තියෙන විදියට වැඩ ටික කරන්න..

මුලින්ම ඔයාලා Dashboard >> Design >> Edit Html >> යන්න..මතක ඇතුව Expand Widget Templates තැනට හරිය දෙන්න..දැන් ඔයලා යතුරු පුවරුවේ Ctrl+F යතුරු එක වර ඔබන්න..දැන් ඔයාලට ලැබේයි සේර්ච් බාර් එකක්.

එතන <div class="post-header-line-1"> කියලා ටයිප් කරන්න..දැන් ඔයලාගේ HTML box එකේ මේ කොඩ් එක Highlight වෙලා තියෙනවා පෙනෙයි..දැන් ඔයලා <div class="post-header-line-1"> කොඩ් එකට පහලින් මම පහල දිලා තියෙන කොඩ් එක Copy, Past කරන්න...


<div id="fb-root"></div><script src="http://connect.facebook.net/en_US/all.js#xfbml=1"></script><fb:send href="Your site URL" font="arial"></fb:send>

වැදගත්: Your site URL යන තැනට ඔබේ බ්ලොග් අඩවියේ URLඑක දෙන්න

දැන් Template එක Save කරන්න.. Save Template


වැඩේ ගොඩ.... දැන් ඔයලගේ බ්ලොග් එකටත් ලස්සන SEND බොත්තමක් තියෙනවා..

ඔබට ජය

අන්තර්ජාලයේ Online Money Earn කරන්න පුලුවන් හොදම CPM,CPC සහ CPA දැන්විම් ජාල 10 / World Top 10 12

bt4u | 5/04/2011 | , ,

ගොඩක් දෙනෙක්ට දැන් අන්තර්ජාලයේන් මුදල් සෙවිම ගැන ලොකු උනන්දුවක් තියෙනවා..ඒ අතරින් මුදල් ගෙවන සහ නොගෙවන දැන්විම් ජාල රාශියක් අන්තර්ජාලයේ තියෙනවා..මෙන්න මම ඔයාලට අරගෙන අවා..ලොකයේ හොදම දැන්විම් ජාල 10..මේවා ගැන ඔයාලට බය වෙන්න කිසිම හෙතුවක් නැ..මුදල් හොයන්න ඔයාලත් හිතනවානම් මෙන්න මේ පහල අඩවිවලට ඔයාලත් සම්බන්ධ වෙලා මුදල් හොයන්න උත්සහා කරල බලන්න..

ඔබට ජය


Make Money Online 

අපේ බ්ලොගයේ Mouse Point එක ලෙසියෙන් වෙනස් කරගමු....Part 2 12

bt4u | 4/21/2011 | , ,



කොහොමද කට්ටියට.මෙන්න මම ඔයාලට තවත් මැක්සා බ්ලොග් ගැජට් එකක් අරගෙන අවා...ඔයාලා ආසද ඔයලගේ බ්ලොග් එක Mouse Point එක වෙනස් කර ගන්න..එක කරන එක හරි ලෙසි මම පහල කියල තියෙන විදියට ඔයලා වැඩ ටික කරගෙන මේ ගැජට් එක ඔයාලගේ බ්ලොග් එකට දා ගන්න..

මුලින්ම ඔයාලා Dashboard >> Design >> Edit Html >> යන්න..මතක ඇතුව Expand Widget Templates තැනට හරිය දෙන්න..දැන් ඔයලා යතුරු පුවරුවේ Ctrl+F යතුරු එක වර ඔබන්න..දැන් ඔයාලට ලැබේයි සේර්ච් බාර් එකක්.

එතන </body> කියලා ටයිප් කරන්න..දැන් ඔයලාගේ HTML box එකේ මේ කොඩ් එක Highlight වෙලා තියෙනවා පෙනෙයි..දැන් ඔයලා </body>> කොඩ් එකට පහලින් මම පහල දිලා තියෙන කොඩ් එක Copy, Past කරන්න...

<style type="text/css">body, a, a:hover {cursor: url(http://bloggertrickandtoolz.googlecode.com/files/www.bloggertricksandtoolz.com-coolcur.cur), progress;}</style>



දැන් Template එක Save කරන්න.. Save Template

 වැඩේ ගොඩ....දැන් ඔයලගේ බ්ලොග් එකටත් ලස්සන Mouse Point එකක් තියෙනවා...

ඔබට ජය



TuneUp Utilities 2011 මෘදුකාංගය Serial Keys සමග දැන්ම බාගන්න 5

bt4u | 4/17/2011 | ,


කොහොමද කට්ටියට..මෙන්න මම ඔයාලට ගොඩ දවසකින් Software කැල්ලක් අරගෙන අවා..මම දන්න විදියට දැන් ගොඩක් දෙනෙක් TuneUp Utilities මෘදුකාංග  භාවිතා කරනවා,මොකද මෙයා ගේ වැඩ ගැන හැමොම දන්න නිසා...අපේ පරිගණකයේ ඇති සියලුම අනවශ්‍ය ෆයිල් ගොනු මෙම TuneUp Utilities මෘදුකාංග හරහා අපිට ඉවත් කර ගන්න පුලුවන්..එ වගෙම මෙයාගේ  තවත් අලුත් වැඩ කැලි ගොඩක් මේ අලුත් TuneUp Utilities 2011සංකරණයේ තියෙනවා..ඉතින් ඔයාලත් කැමති නම් මෙයාට ,කැමති හැමොම මම පහල දිලා තියෙන ලින්ක් එකෙන් බාගන්න.. Serial Keys ත් සමග..

ඔබට ජය

TuneUp Utilities 2011 Download Now
TuneUp Utilities 2011 Serial Keys Download Now


තමන්ගෙම Domain name එකක් අඩුවට ගන්න ඉන්න අයට Godaddy Domain Promo Coupon For April 2011 1

bt4u | 4/07/2011 | , ,


මෙන්න මම ඔයාලට මේ මාසයට Godaddy අඩවියෙන් ඔයාලට අඩුවට ඩොමයින් ගන්න පුලුවන් Promo Coupon කොඩ් අරගෙන අවා..ඉතින් ඔයාලත් Godaddy අඩවියෙන් තමන්ගේම එකක් ගන්න ඉන්නවනම් මම පහල දිලා තියෙන Promo Coupon කොඩ් භාවිතා කරලා අඩුවට ඩොමයින් එකක් ගන්න..

Geek5 – Save 15% on any order of $20 or more at GoDaddy
Todd20 – Save 20% on 1 Year Shared Hosting Accounts at GoDaddy
TODD – Save 10% on non domain orders at GoDaddy
COMSALE – $7.99 on .COM domain names only works for renewals as well!
COMSALE2 – $7.49 on new .com domains for existing customers
GEEK – Get $5 off any order of $30 or more.
CENTRAL – Get $10 off any order of $50 or more.
ALOHA – Get $20 off any order of $75 or more.
GEEKSSL12 – $12.99 SSL Certificates

promo10 – 10% off your entire order
promo15 – Save 15% on your order of $75 or more
promo530 – Save $5 off any order of $30 or more
promo749 – Save $3 on .com registrations, transfers and renewals
promossl – $12.99 standard SSL certificates (normally $29.95)
GODADDY COUPON CODES FOR EVERY ORDER

cjc25new – 25% off any product (new customers only)
cjcchp75 – 15% off $75
cjcdoe10 – 10% off any order
cjcdoe30 – $5 off $30
cjcdoe50 – $10 off $50
GODADDY COUPON CODES FOR DOMAINS

cjc749dom – $7.49 .com
promo1099 – $10.99 .co
GODADDY COUPON CODES FOR WEB HOSTING

cjc25new – 25% off any product (new customers only)
cjcdoe20 – 20% off shared hosting
cjc199hstg – $1.99/month hosting first 3 months
Eligible on new Economy plans first 3 months – Regular price is $4.99/month. Free setup and 24/7 support.
GODADDY RENEWAL COUPON


ඔබට ජය

අපේ Facebook Account එකේ අලුත් Theater Photo Viewer එක නැති කරමු / මැක්සා වැඩක් 10

bt4u | 4/05/2011 | ,

මෙන්න මම ඔයාලට අරගෙන ආවා අලුත් වැඩ කැල්ලක්..ඔයාලා හැමොම දන්නවානේ මුහුණු පොතේ අලුත් අලුත් වැඩ කැලි එනවා කියලා...ඒ වැඩ කැලි අතරින් ආවා අලුත් Photo Viewer එකක්..ඒ Photo Viewer එකකට ගොඩක් දෙනෙක් කැමති නැ..අනික ලොඩ් වෙන්නත් වෙලා යනවා..මේකට අපිට කරන්න තියෙන්නේ පොඩි වැඩක්..පහල රුපයේ තියෙන විදියට අපි Photo එකක් Viewe කරන කොට එන Theater එකෙදි අපේ යතුරු පුවරුවේ F5 බොත්තම තදකිරිමෙන් අලුත් Theater Photo Viewer එක නැති වි පරණ Photo Viewer එකට නැවත යන්න පුලුවන්...

පහත රූප බලන්න

අලුත් Theater Photo Viewer එක



 යතුරු පුවරුවේ F5 බොත්තම තදකිරිමෙන් පසු පරණ Photo Viewer එක නැවතත්



දැන් වැඩේ ගොඩ..අපිට පහසුවෙන් දැන් පරණ Photo Viewer එකට සහ අලුත් Photo Viewer එකට F5 යතුර මගින් යාමට හැක..ඔයාලත් Try කරලා බලන්න

ඔබට ජය.

Windows Live Writer 2011 Offline Setup එක දැන්ම බාගන්න.. 2

bt4u | 4/04/2011 | ,


මෙන්න මම ඔයාලට Windows Live Writer 2011 Offline Setup එක අරගෙන අවා..මට ගොඩක් දෙනෙක් Windows Live Writer එකේ Offline Setup හොයලා දෙන්න කියලා තිබ්බා..මෙන්න ඒ හමොටම බාගන්න මම එක Offline Setup එක අරගෙන අවා..ගොඩක් දෙනෙක් දැන් බ්ලොග් එකට ලිපි ලියන්නේ Windows Live Writer භාවිතා කරලා..ඉතින් මම හිතනවා ඔයාලට මේක ගොඩක් වැදගත් වෙයි කියලා..කැමති හැමොම පහල ලින්ක් එකෙන් Windows Live Writer 2011 Offline Setup  එක බාගන්න.

ඔබට ජය..!

Windows Live Writer 2011 Offline Setup එක බාගන්න

2011 අලුත් වසරේ Blogger වල එන්න තියෙන අලුත්ම වැඩ කැලි මෙන්න /කියලා වැඩක් නැ මැක්සා.. 12

bt4u | 3/15/2011 | ,

ඔන්න කට්ටියට සුභ ආරංචියක් මම අරගෙන අවා..එක තමා මේ වසරේදි අලුත්ම වැඩ කැලි ගොඩක් එක්ක Blogger වෙනස්ම මුහුණු වරකින් එන්න ලැස්ති වෙනවා..ඇත්තටම මට හිතෙන විදියට සැහෙන වැඩ කැලි ගොඩක් Blogger භවිතා කරන අපිට ලබා දෙවි..Blogger Team එක පවසන විදියට මේ වසරෙදි එම වෙනස් කම් සියල්ල සිදු කරනවා කියලා තමා කියන්නේ..



එ අතරින් පහල වෙනස් කම් කිහිපයක් ඔවුන් අපිට පෙන්වා දි තිබෙනවා.


                                                               පැරණි  Post editor එක

  
                                                             නවතම Post editor එක


                                                             පැරණි Dashboard එක


                                                                        අලුත් Dashboard එක


ඉතින් ඔයලටත් මොකද හිතෙන්නේ මේ ගැන...ඔබේ අදහසක් දෙන්න..

ඔබට ජය.

චායාරූප උපුටා ගැනිම. blogger.com.

අලුත් Kaspersky Internet Security 2011 Keys බාගන්න / 03.14.2011 5

bt4u | 3/14/2011 |

Date.................: 14.03.2011
By...................: Sam
WebSite..............: http://saamgeadaviya.blogspot.com/
Release Name....: Kaspersky Internet Security 2011 Keys

  Kaspersky Internet Security 2011 අලුත් Keys මෙතනින් බාගන්න

සුබස මගින් අපේ ලිපි වල අක්ෂර වින්‍යාසය පරීක්ෂා කරමු../ මැක්සා වැඩක් 7

bt4u | 3/13/2011 | ,


මේන්න මම ඔයාලට තවත් ගැජට් එකක් අරගෙන අවා.. මෙක අපේ ලංකාවේ කොල්ලොන්ගේ වැඩක්..මේක ගැන කියනවනම් මෙකන් කරන්නේ අපේ සිංහල යුනිකෙත මගින් ලියන ලද යම් කිසි ලිපියක අක්ෂර වින්‍යාසය පරීක්ෂා කරගන්න පුළුවන්..එ වගෙම ඔයාලට කියන්න සතුටුයි මේ ගැජට් එකෙන්ම අපේ ලිපියක අක්ෂර වින්‍යාසය වැරදි තියෙනවානම් එවෙලෙම එම වැරදි අක්ෂර වින්‍යාසය හදලා දෙනවා..එක නිසා අපිට ගොඩක් ප්‍රයොජන ගන්න පුළුවන් ගැජට් එකක් මෙක..ඉතින් ඔයාලත් මෙක පොඩ්ඩක් ටෙස්ට් පාරක් දලා බලන්න..

සුබස භාවිතයට උපදෙස්

1.මෙය දත්ත පදනම් කර ක්‍රියාත්මක වන මෘදුකාංගයකි. නිර්මාණකරුවන් මෙමගින් යෝජනාකරන වචනවල නිවැරදිතාවය පිළිබඳව කිසිදු වගකීමක් නොදරයි.
2.ඔබ පිරික්සීමට බලාපොරොත්තු වන පෙළ සිංහල යුනිකෝඩ් ක්‍රමයට යතුරු ලියනය කර තිබිය යුතුය.
3.ඔබ යතුරු ලියනය කරන ලද ලේඛනය හැඩගැන්වීමට පෙර අපගේ අඩවියෙන් (අක්ෂර වින්‍යාසය පරීක්ෂාකිරීමේ) සේවාව ලබා ගන්න.
4.සුබස මගින් යම් යම් වචන සඳහා වැරදි යෝජනා ඉදිරිපත් කරන ලද්දේ නම් එහි නිවැරදි ආකාරය අප වෙත යොමු කරන්න. මෙමගින් ඔබට මෙම සේවාවේ නිවැරදිභාවය තව තවත් වැඩි කිරීමට දායක වීමට හැකිය.



මෙන්න මේතනින් එම අඩවියට යන්න



Sharing Sexy කෙල්ලගේ අලුත් Social Sharing Bookmarks ගැජට් එක බ්ලොග් එකට දා ගන්න.V3 8

bt4u | 3/13/2011 | , ,

මෙන්න මම ඔයාලට අලුත්ම Sharing Sexy Social Bookmarks ගැජට් එකේ අලුත් සංස්කරණය අරගෙන අවා...මෙක නම් පට්ට විදියට හදලා තියෙනවා..මේ ගැජට් එකට කලින් එකට වඩා ගොඩක් Social network වර්ග එකතු කරලා තියෙනවා..එක නිසා අපිට ගොඩක් ප්‍රයොජනවත් වෙනවා අපේ බ්ලොග් එකේ ලිපි Social network හරහා Share කරන්න...ඉතින් ඔයාලත් ආස නම් මේ ගැජට් එක බ්ලොග් එකට දා ගන්න, මම පහල කියලා තියෙන විදියට කරගෙන මෙක පහසුවෙන් ඔයාලාගේ බ්ලොග් එකට දාගන්න..

මුලින්ම ඔයාලා  Dashboard >> Design >> Edit Html >> යන්න..මතක ඇතුව Expand Widget Templates තැනට හරිය දෙන්න..දැන් ඔයලා යතුරු පුවරුවේ Ctrl+F යතුරු එක වර ඔබන්න..දැන් ඔයාලට ලැබේයි සේර්ච් බාර් එකක්.

එතන  </head> කියලා ටයිප් කරන්න..දැන් ඔයලාගේ HTML box එකේ මේ code එක Highlight වෙලා තියෙනවා පෙනෙයි..දැන් ඔයලා  </head> කොඩ් එකට පහලින් මම පහල දිලා තියෙන කොඩ් එක Copy, Past කරන්න...

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

<script type='text/javascript'>
    jQuery(document).ready(function() {
        jQuery(&#39;.sexy-bookmarks a.external&#39;).attr(&quot;target&quot;, &quot;_blank&quot;);
        var sexyBaseHeight = jQuery(&#39;.sexy-bookmarks&#39;).height();
        var sexyFullHeight = jQuery(&#39;.sexy-bookmarks ul.socials&#39;).height();
        if (sexyFullHeight &gt; sexyBaseHeight) {
            jQuery(&#39;.sexy-bookmarks-expand&#39;).hover(

            function() {
                jQuery(this).animate({
                    height: sexyFullHeight + 15 + &#39;px&#39;
                }, {
                    duration: 800,
                    queue: false
                });
            }, function() {
                jQuery(this).animate({
                    height: sexyBaseHeight + &#39;px&#39;
                }, {
                    duration: 800,
                    queue: false
                });
            });
        }
        if (jQuery(&#39;.sexy-bookmarks-center&#39;)) {
            var sexyFullWidth = jQuery(&#39;.sexy-bookmarks&#39;).width();
            var sexyBookmarkWidth = jQuery(&#39;.sexy-bookmarks:first ul.socials li&#39;).width();
            var sexyBookmarkCount = jQuery(&#39;.sexy-bookmarks:first ul.socials li&#39;).length;
            var numPerRow = Math.floor(sexyFullWidth / sexyBookmarkWidth);
            var sexyRowWidth = Math.min(numPerRow, sexyBookmarkCount) * sexyBookmarkWidth;
            var sexyLeftMargin = (sexyFullWidth - sexyRowWidth) / 2;
            jQuery(&#39;.sexy-bookmarks-center&#39;).css(&#39;margin-left&#39;, sexyLeftMargin + &#39;px&#39;);
        }
    });
</script>

<style type='text/css'>
/***********************************
 How To Add Social Sexy Bookmarks v3 to Blogger
By Bloggertricksandtoolz
Url:http://www.bloggertricksandtoolz.com/
************************************/


#post-width-w2b {
 position: relative;
 float: left;
 min-height: 95px;
 margin-bottom: 10px;
 background-color:transparent !important;
 }
div.sexy-bookmarks{margin:20px 0 0 10px; border: 0; outline: none; clear:both !important}
div.sexy-bookmarks-expand{height:32px; overflow:hidden;}
div.sexy-bookmarks-bg-sexy{
  padding:28px 0 0 10px !important;
  background:transparent url(&#39;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEgaZF2e8R2EzoCOlvNzZ_SY1jnjw_Jd4ALqJDmrZA1ohJ6CU6ycf6arvpv32RJ5j-4Ebf2CRJL46m4Kv4ahLbckqZcawUOhFYWwtytL8uNL-1GboZjct-tgPbR1gE7axFqiJodFVdEnbS2Q/&#39;) no-repeat !important
  }

div.sexy-bookmarks ul.socials{
  width:100% !important;
  margin:0 !important;
  padding:0 !important;
  float:left !important;
  background:transparent none !important;
  border:0 none !important;
  outline:0 none !important
  }
div.sexy-bookmarks ul.socials li{
  background-image:url(&#39;http://bloggertrickandtoolz.googlecode.com/files/bloggertricksandtoolz.com-shr-sprite.png&#39;) !important;
  background-repeat:no-repeat !important;
  display:inline !important;
  float:left !important;
  list-style-type:none !important;
  padding:0 !important;
  height:29px !important;
  width:60px !important;
  cursor:pointer !important;
  margin:3px 0 0 !important;
  background-color:transparent !important;
  border:0 none !important;
  outline:0 none !important;
  clear:none !important
  }
div.sexy-bookmarks ul.socials li:before, div.sexy-bookmarks ul.socials li:after,
div.sexy-bookmarks ul.socials li a:before, div.sexy-bookmarks ul.socials li a:after{content:none !important}
div.sexy-bookmarks ul.socials a,div.sexy-bookmarks ul.socials a:hover{
  display:block !important;
  width:60px !important;
  height:29px !important;
  text-indent:-9999px !important;
  background-color:transparent !important;
  text-decoration:none !important;
  border:0 none !important;
  margin:0 !important;
  padding:0 !important
  }
div.sexy-bookmarks ul.socials a:hover,div.sexy-bookmarks ul.socials li:hover{
  background-color:transparent !important;
  border:0 none !important;
  outline:0 none !important
  }
li.sexy-newsvine{background-position:left bottom !important}
li.sexy-newsvine:hover{background-position:left top !important}
li.sexy-linkedin{background-position:-70px bottom !important}
li.sexy-linkedin:hover{background-position:-70px top !important}
li.sexy-googlebookmarks{background-position:-140px bottom !important}
li.sexy-googlebookmarks:hover{background-position:-140px top !important}
li.sexy-googlereader{background-position:-210px bottom !important}
li.sexy-googlereader:hover{background-position:-210px top !important}
li.sexy-scriptstyle{background-position:-280px bottom !important}
li.sexy-scriptstyle:hover{background-position:-280px top !important}
li.sexy-mail{background-position:-350px bottom !important}
li.sexy-mail:hover{background-position:-350px top !important}
li.sexy-comfeed{background-position:-420px bottom !important}
li.sexy-comfeed:hover{background-position:-420px top !important}
li.sexy-twitter{background-position:-490px bottom !important}
li.sexy-twitter:hover{background-position:-490px top !important}
li.sexy-technorati{background-position:-560px bottom !important}
li.sexy-technorati:hover{background-position:-560px top !important}
li.sexy-stumbleupon{background-position:-630px bottom !important}
li.sexy-stumbleupon:hover{background-position:-630px top !important}
li.sexy-reddit{background-position:-700px bottom !important}
li.sexy-reddit:hover{background-position:-700px top !important}
li.sexy-myspace{background-position:-770px bottom !important}
li.sexy-myspace:hover{background-position:-770px top !important}
li.sexy-mixx{background-position:-840px bottom !important}
li.sexy-mixx:hover{background-position:-840px top !important}
li.sexy-diigo{background-position:-910px bottom !important}
li.sexy-diigo:hover{background-position:-910px top !important}
li.sexy-digg{background-position:-980px bottom !important}
li.sexy-digg:hover{background-position:-980px top !important}
li.sexy-designfloat{background-position:-1050px bottom !important}
li.sexy-designfloat:hover{background-position:-1050px top !important}
li.sexy-yahoobuzz{background-position:-1120px bottom !important}
li.sexy-yahoobuzz:hover{background-position:-1120px top !important}
li.sexy-delicious{background-position:-1190px bottom !important}
li.sexy-delicious:hover{background-position:-1190px top !important}
li.sexy-blinklist{background-position:-1260px bottom !important}
li.sexy-blinklist:hover{background-position:-1260px top !important}
li.sexy-facebook{background-position:-1330px bottom !important}
li.sexy-facebook:hover{background-position:-1330px top !important}
li.sexy-misterwong{background-position:-1400px bottom !important}
li.sexy-misterwong:hover{background-position:-1400px top !important}
li.sexy-izeby{background-position:-1470px bottom !important}
li.sexy-izeby:hover{background-position:-1470px top !important}
li.sexy-twittley{background-position:-1540px bottom !important}
li.sexy-twittley:hover{background-position:-1540px top !important}
li.sexy-tipd{background-position:-1610px bottom !important}
li.sexy-tipd:hover{background-position:-1610px top !important}
li.sexy-pfbuzz{background-position:-1680px bottom !important}
li.sexy-pfbuzz:hover{background-position:-1680px top !important}
li.sexy-friendfeed{background-position:-1750px bottom !important}
li.sexy-friendfeed:hover{background-position:-1750px top !important}
li.sexy-blogmarks{background-position:-1820px bottom !important}
li.sexy-blogmarks:hover{background-position:-1820px top !important}
li.sexy-fwisp{background-position:-1890px bottom !important}
li.sexy-fwisp:hover{background-position:-1890px top !important}
li.sexy-yahoomail{background-position:-1960px bottom !important}
li.sexy-yahoomail:hover{background-position:-1960px top !important}
li.sexy-bobrdobr{background-position:-2030px bottom !important}
li.sexy-bobrdobr:hover{background-position:-2030px top !important}
li.sexy-memoryru{background-position:-2100px bottom !important}
li.sexy-memoryru:hover{background-position:-2100px top !important}
li.sexy-100zakladok{background-position:-2170px bottom !important}
li.sexy-100zakladok:hover{background-position:-2170px top !important}
li.sexy-yandex{background-position:-2240px bottom !important}
li.sexy-yandex:hover{background-position:-2240px top !important}
li.sexy-moemesto{background-position:-2310px bottom !important}
li.sexy-moemesto:hover{background-position:-2310px top !important}
li.sexy-marrows{background-position:-2380px bottom !important}
li.sexy-marrows:hover{background-position:-2380px top !important}
li.sexy-identica{background-position:-2450px bottom !important}
li.sexy-identica:hover{background-position:-2450px top !important}
li.sexy-hackernews{background-position:-2520px bottom !important}
li.sexy-hackernews:hover{background-position:-2520px top !important}
li.sexy-ning{background-position:-2590px bottom !important}
li.sexy-ning:hover{background-position:-2590px top !important}
li.sexy-designbump{background-position:-2660px bottom !important}
li.sexy-designbump:hover{background-position:-2660px top !important}
li.sexy-printfriendly{background-position:-2730px bottom !important}
li.sexy-printfriendly:hover{background-position:-2730px top !important}
li.sexy-fleck{background-position:-2800px bottom !important}
li.sexy-fleck:hover{background-position:-2800px top !important}
li.sexy-netvibes{background-position:-2870px bottom !important}
li.sexy-netvibes:hover{background-position:-2870px top !important}
li.sexy-netvouz{background-position:-2940px bottom !important}
li.sexy-netvouz:hover{background-position:-2940px top !important}
li.sexy-nujij{background-position:-3010px bottom !important}
li.sexy-nujij:hover{background-position:-3010px top !important}
li.sexy-globalgrind{background-position:-3080px bottom !important}
li.sexy-globalgrind:hover{background-position:-3080px top !important}
li.sexy-wikio{background-position:-3150px bottom !important}
li.sexy-wikio:hover{background-position:-3150px top !important}
li.sexy-xerpi{background-position:-3220px bottom !important}
li.sexy-xerpi:hover{background-position:-3220px top !important}
li.sexy-sphinn{background-position:-3290px bottom !important}
li.sexy-sphinn:hover{background-position:-3290px top !important}
li.sexy-hotmail{background-position:-3360px bottom !important}
li.sexy-hotmail:hover{background-position:-3360px top !important}
li.sexy-posterous{background-position:-3430px bottom !important}
li.sexy-posterous:hover{background-position:-3430px top !important}
li.sexy-techmeme{background-position:-3500px bottom !important}
li.sexy-techmeme:hover{background-position:-3500px top !important}
li.sexy-ekudos{background-position:-3570px bottom !important}
li.sexy-ekudos:hover{background-position:-3570px top !important}
li.sexy-pingfm{background-position:-3640px bottom !important}
li.sexy-pingfm:hover{background-position:-3640px top !important}
li.sexy-tomuse{background-position:-3710px bottom !important}
li.sexy-tomuse:hover{background-position:-3710px top !important}
li.sexy-webblend{background-position:-3780px bottom !important}
li.sexy-webblend:hover{background-position:-3780px top !important}
li.sexy-wykop{background-position:-3850px bottom !important}
li.sexy-wykop:hover{background-position:-3850px top !important}
li.sexy-blogengage{background-position:-3920px bottom !important}
li.sexy-blogengage:hover{background-position:-3920px top !important}
li.sexy-hyves{background-position:-3990px bottom !important}
li.sexy-hyves:hover{background-position:-3990px top !important}
li.sexy-pusha{background-position:-4060px bottom !important}
li.sexy-pusha:hover{background-position:-4060px top !important}
li.sexy-hatena{background-position:-4130px bottom !important}
li.sexy-hatena:hover{background-position:-4130px top !important}
li.sexy-mylinkvault{background-position:-4200px bottom !important}
li.sexy-mylinkvault:hover{background-position:-4200px top !important}
li.sexy-slashdot{background-position:-4270px bottom !important}
li.sexy-slashdot:hover{background-position:-4270px top !important}
li.sexy-squidoo{background-position:-4340px bottom !important}
li.sexy-squidoo:hover{background-position:-4340px top !important}
li.sexy-propeller{background-position:-4410px bottom !important}
li.sexy-propeller:hover{background-position:-4410px top !important}
li.sexy-faqpal{background-position:-4480px bottom !important}
li.sexy-faqpal:hover{background-position:-4480px top !important}
li.sexy-evernote{background-position:-4550px bottom !important}
li.sexy-evernote:hover{background-position:-4550px top !important}
li.sexy-meneame{background-position:-4620px bottom !important}
li.sexy-meneame:hover{background-position:-4620px top !important}
li.sexy-bitacoras{background-position:-4690px bottom !important}
li.sexy-bitacoras:hover{background-position:-4690px top !important}
li.sexy-jumptags{background-position:-4760px bottom !important}
li.sexy-jumptags:hover{background-position:-4760px top !important}
li.sexy-bebo{background-position:-4830px bottom !important}
li.sexy-bebo:hover{background-position:-4830px top !important}
li.sexy-n4g{background-position:-4900px bottom !important}
li.sexy-n4g:hover{background-position:-4900px top !important}
li.sexy-strands{background-position:-4970px bottom !important}
li.sexy-strands:hover{background-position:-4970px top !important}
li.sexy-orkut{background-position:-5040px bottom !important}
li.sexy-orkut:hover{background-position:-5040px top !important}
li.sexy-tumblr{background-position:-5110px bottom !important}
li.sexy-tumblr:hover{background-position:-5110px top !important}
li.sexy-stumpedia{background-position:-5180px bottom !important}
li.sexy-stumpedia:hover{background-position:-5180px top !important}
li.sexy-current{background-position:-5250px bottom !important}
li.sexy-current:hover{background-position:-5250px top !important}
li.sexy-blogger{background-position:-5320px bottom !important}
li.sexy-blogger:hover{background-position:-5320px top !important}
li.sexy-plurk{background-position:-5390px bottom !important}
li.sexy-plurk:hover{background-position:-5390px top !important}
li.sexy-virb{background-position:-5460px bottom !important}
li.sexy-virb:hover{background-position:-5460px top !important}
li.sexy-dzone{background-position:-5530px bottom !important}
li.sexy-dzone:hover{background-position:-5530px top !important}
li.sexy-kaevur{background-position:-5600px bottom !important}
li.sexy-kaevur:hover{background-position:-5600px top !important}
li.sexy-boxnet{background-position:-5670px bottom !important}
li.sexy-boxnet:hover{background-position:-5670px top !important}
li.sexy-oknotizie{background-position:-5740px bottom !important}
li.sexy-oknotizie:hover{background-position:-5740px top !important}
li.sexy-bonzobox{background-position:-5810px bottom !important}
li.sexy-bonzobox:hover{background-position:-5810px top !important}
li.sexy-plaxo{background-position:-5880px bottom !important}
li.sexy-plaxo:hover{background-position:-5880px top !important}
li.sexy-springpad{background-position:-5950px bottom !important}
li.sexy-springpad:hover{background-position:-5950px top !important}
li.sexy-zabox{background-position:-6020px bottom !important}
li.sexy-zabox:hover{background-position:-6020px top !important}
li.sexy-viadeo{background-position:-6090px bottom !important}
li.sexy-viadeo:hover{background-position:-6090px top !important}
li.sexy-googlebuzz{background-position:-6160px bottom !important}
li.sexy-googlebuzz:hover{background-position:-6160px top !important}
li.sexy-gmail{background-position:-6230px bottom !important}
li.sexy-gmail:hover{background-position:-6230px top !important}
li.sexy-buzzster{background-position:-6300px bottom !important}
li.sexy-buzzster:hover{background-position:-6300px top !important}
li.sexy-way2blogging{background-position:0px -80px !important}

.sexy-link{margin: 3px 0 0 20px; font-size: 9px; float:left; color: #555; text-decoration: none;}
.sexy-link a{padding:10px 0; width:100%; color: #333; text-decoration: none; border:0; outline:none}
</style>

නැවත වරක් ඔයාලා කලින් පරිදි මේ <data:post.body/> කොඩ් එක හොයා ගන්න..<data:post.body/> කොඩ් එකට පහලින් මම පහල දිලා තියෙන කොඩ් එක කොපි කරගෙන Past කරන්න.

<b:if cond='data:blog.pageType == &quot;item&quot;'>
<div id='post-width-w2b' style='width:600px;'>
 <div class='sexy-bookmarks-bg-sexy  sexy-bookmarks sexy-bookmarks-expand sexy-bookmarks-center '>
  <ul class='socials'>
   <li class='sexy-yahoomail'>
   <a class='external' expr:href='&quot;http://compose.mail.yahoo.com/?Subject= &quot; + data:post.title + &quot;&amp;body=Link:&quot;+ data:post.url' rel='nofollow' title='Email this via Yahoo! Mail'/>
   </li>
   <li class='sexy-gmail'>
   <a class='external' expr:href='&quot;https://mail.google.com/mail/?ui=2&amp;view=cm&amp;fs=1&amp;tf=1&amp;su=&quot; + data:post.title + &quot;&amp;body=Link:&quot; + data:post.url' rel='nofollow' title='Email this via Gmail'/>
   </li>
   <li class='sexy-twitter'>
   <a class='external' expr:href='&quot;http://twitter.com/home?status=&quot; + data:post.title + &quot; -- &quot; + data:post.url ' rel='nofollow' title='Tweet This!'/>
   </li>
   <li class='sexy-facebook'>
   <a class='external' expr:href='&quot;http://www.facebook.com/share.php?v=4&amp;src=bm&amp;u=&quot; + data:post.url + &quot;&amp;t=&quot; + data:post.title ' onclick='window.open(this.href,&apos;sharer&apos;,&apos;toolbar=0,status=0,width=626,height=436&apos;); return false;' rel='nofollow' title='Share this on Facebook'/>
   </li>
   <li class='sexy-linkedin'>
   <a class='external' expr:href='&quot;http://www.linkedin.com/shareArticle?mini=true&amp;url=&quot; + data:post.url + &quot;&amp;title=&quot; + data:post.title + &quot;&amp;summary=&amp;source=&quot;' rel='nofollow' title='Share this on LinkedIn'/>
   </li>
   <li class='sexy-googlebuzz'>
   <a class='external' expr:href='&quot;http://www.google.com/buzz/post?url=&quot; + data:post.url + &quot;&amp;imageurl=&quot;' rel='nofollow' title='Post on Google Buzz'/>
   </li>
   <li class='sexy-yahoobuzz'>
   <a class='external' expr:href='&quot;http://buzz.yahoo.com/submit/?submitUrl=&quot; + data:post.url + &quot;&amp;submitHeadline=&quot; + data:post.title + &quot;&amp;submitSummary=&amp;submitCategory=science&amp;submitAssetType=text&quot;' rel='nofollow' title='Buzz up!'/>
   </li>
   <li class='sexy-blogger'>
   <a class='external' expr:href='&quot;http://www.blogger.com/blog_this.pyra?t&amp;u=&quot; + data:post.url + &quot;&amp;n=&quot; + data:post.title + &quot;&amp;pli=1&quot;' rel='nofollow' title='Blog this on Blogger'/>
   </li>
   <li class='sexy-googlebookmarks'>
   <a class='external' expr:href='&quot;http://www.google.com/bookmarks/mark?op=add&amp;bkmk=&quot; + data:post.url + &quot;&amp;title=&quot; + data:post.title ' rel='nofollow' title='Add this to Google Bookmarks'/>
   </li>
   <li class='sexy-googlereader'>
   <a class='external' expr:href='&quot;http://www.google.com/reader/link?url=&quot; + data:post.url + &quot;&amp;title=&quot; + data:post.title + &quot;&amp;srcUrl=&quot; + data:post.url + &quot;&amp;srcTitle=&quot; + data:post.title + &quot;&amp;snippet=&quot;' rel='nofollow' title='Add this to Google Reader'/>
   </li>
   <li class='sexy-stumbleupon'>
   <a class='external' expr:href='&quot;http://www.stumbleupon.com/submit?url=&quot; + data:post.url + &quot;&amp;title=&quot; + data:post.title ' rel='nofollow' title='Stumble upon something good? Share it on StumbleUpon'/>
   </li>
   <li class='sexy-delicious'>
   <a class='external' expr:href='&quot;http://delicious.com/post?url=&quot; + data:post.url + &quot;&amp;title=&quot; + data:post.title ' rel='nofollow' title='Share this on del.icio.us'/>
   </li>
   <li class='sexy-digg'>
   <a class='external' expr:href='&quot;http://digg.com/submit?phase=2&amp;url=&quot; + data:post.url + &quot;&amp;title=&quot; + data:post.title ' rel='nofollow' title='Digg this!'/>
   </li>
   <li class='sexy-comfeed'>
   <a class='external' expr:href='data:blog.homepageUrl + &quot;feeds/&quot; + data:post.id + &quot;/comments/default?alt=rss&quot;' rel='nofollow' title='Subscribe to the comments for this post?'/>
   </li>
   <li class='sexy-orkut'>
   <a class='external' expr:href='&quot;http://promote.orkut.com/preview?nt=orkut.com&amp;tt=&quot; + data:post.title + &quot;&amp;du=&quot; + data:post.url + &quot;&amp;cn=&quot;' rel='nofollow' title='Promote this on Orkut'/>
   </li>
   <li class='sexy-designbump'>
   <a class='external' expr:href='&quot;http://designbump.com/submit?url=&quot; + data:post.url + &quot;&amp;title=&quot; + data:post.title + &quot;&amp;body=&quot;' rel='nofollow' title='Bump this on DesignBump'/>
   </li>
   <li class='sexy-reddit'>
   <a class='external' expr:href='&quot;http://reddit.com/submit?url=&quot; + data:post.url + &quot;&amp;title=&quot; + data:post.title ' rel='nofollow' title='Share this on Reddit'/>
   </li>
   <li class='sexy-designfloat'>
   <a class='external' expr:href='&quot;http://www.designfloat.com/submit.php?url=&quot; + data:post.url + &quot;&amp;title=&quot; + data:post.title ' rel='nofollow' title='Submit this to DesignFloat'/>
   </li>
   <li class='sexy-friendfeed'>
   <a class='external' expr:href='&quot;http://www.friendfeed.com/share?title=&quot; + data:post.title + &quot;&amp;link=&quot; + data:post.url ' rel='nofollow' title='Share this on FriendFeed'/>
   </li>
   <li class='sexy-zabox'>
   <a class='external' expr:href='&quot;http://www.zabox.net/submit.php?url=&quot; + data:post.url ' rel='nofollow' title='Box this on Zabox'/>
   </li>
   <li class='sexy-dzone'>
   <a class='external' expr:href='&quot;http://www.dzone.com/links/add.html?url=&quot; + data:post.url + &quot;&amp;title=&quot; + data:post.title + &quot;&amp;description=&quot;' rel='nofollow' title='Add this to DZone'/>
   </li>
   <li class='sexy-webblend'>
   <a class='external' expr:href='&quot;http://thewebblend.com/submit?url=&quot; + data:post.url + &quot;&amp;title=&quot; + data:post.title + &quot;&amp;body=&quot;' rel='nofollow' title='Blend this!'/>
   </li>
   <li class='sexy-propeller'>
   <a class='external' expr:href='&quot;http://www.propeller.com/submit/?url=&quot; + data:post.url ' rel='nofollow' title='Submit this story to Propeller'/>
   </li>
   <li class='sexy-tumblr'>
   <a class='external' expr:href='&quot;http://www.tumblr.com/share?v=3&amp;u=&quot; + data:post.url + &quot;&amp;t=&quot; + data:post.title ' rel='nofollow' title='Share this on Tumblr'/>
   </li>
   <li class='sexy-squidoo'>
   <a class='external' expr:href='&quot;http://www.squidoo.com/lensmaster/bookmark?&quot; + data:post.url ' rel='nofollow' title='Add to a lense on Squidoo'/>
   </li>
   <li class='sexy-posterous'>
   <a class='external' expr:href='&quot;http://posterous.com/share?linkto=&quot; + data:post.url + &quot;&amp;title=&quot; + data:post.title + &quot;&amp;selection=&quot;' rel='nofollow' title='Post this to Posterous'/>
   </li>
   <li class='sexy-technorati'>
   <a class='external' expr:href='&quot;http://technorati.com/faves?add=&quot; + data:post.url ' rel='nofollow' title='Share this on Technorati'/>
   </li>
   <li class='sexy-hotmail'>
   <a class='external' expr:href='&quot;http://mail.live.com/?rru=compose?subject=&quot; + data:post.title + &quot;&amp;body=Link: &quot; + data:post.url ' rel='nofollow' title='Email this via Hotmail'/>
   </li>
   <li class='sexy-bebo'>
   <a class='external' expr:href='&quot;http://www.bebo.com/c/share?Url=&quot; + data:post.url + &quot;&amp;Title=&quot; + data:post.title ' rel='nofollow' title='Share this on Bebo'/>
   </li>
   <li class='sexy-bitacoras'>
   <a class='external' expr:href='&quot;http://bitacoras.com/anotaciones/&quot; + data:post.url ' rel='nofollow' title='Submit this to Bitacoras'/>
   </li>
   <li class='sexy-blinklist'>
   <a class='external' expr:href='&quot;http://www.blinklist.com/index.php?Action=Blink/addblink.php&amp;Url=&quot; + data:post.url + &quot;&amp;Title=&quot; + data:post.title ' rel='nofollow' title='Share this on Blinklist'/>
   </li>
   <li class='sexy-100zakladok'>
   <a class='external' expr:href='&quot;http://www.100zakladok.ru/save/?bmurl=&quot; + data:post.url + &quot;&amp;bmtitle=&quot; + data:post.title ' rel='nofollow' title='Add this to 100 bookmarks'/>
   </li>
   <li class='sexy-blogengage'>
   <a class='external' expr:href='&quot;http://www.blogengage.com/submit.php?url=&quot; + data:post.url ' rel='nofollow' title='Engage with this article!'/>
   </li>
   <li class='sexy-blogmarks'>
   <a class='external' expr:href='&quot;http://blogmarks.net/my/new.php?mini=1&amp;simple=1&amp;url=&quot; + data:post.url + &quot;&amp;title=&quot; + data:post.title ' rel='nofollow' title='Mark this on BlogMarks'/>
   </li>
   <li class='sexy-bobrdobr'>
   <a class='external' expr:href='&quot;http://bobrdobr.ru/addext.html?url=&quot; + data:post.url + &quot;&amp;title=&quot; + data:post.title ' rel='nofollow' title='Share this on BobrDobr'/>
   </li>
   <li class='sexy-bonzobox'>
   <a class='external' expr:href='&quot;http://bonzobox.com/toolbar/add?pop=1&amp;u=&quot; + data:post.url + &quot;&amp;t=&quot; + data:post.title + &quot;&amp;d=&quot;' rel='nofollow' title='Add this to BonzoBox'/>
   </li>
   <li class='sexy-boxnet'>
   <a class='external' expr:href='&quot;https://www.box.net/api/1.0/import?url=&quot; + data:post.url + &quot;&amp;name=&quot; + data:post.title + &quot;&amp;description=&amp;import_as=link&quot;' rel='nofollow' title='Add this link to Box.net'/>
   </li>
   <li class='sexy-current'>
   <a class='external' expr:href='&quot;http://current.com/clipper.htm?url=&quot; + data:post.url + &quot;&amp;title=&quot; + data:post.title ' rel='nofollow' title='Post this to Current'/>
   </li>
   <li class='sexy-diigo'>
   <a class='external' expr:href='&quot;http://www.diigo.com/post?url=&quot; + data:post.url + &quot;&amp;title=&quot; + data:post.title + &quot;&amp;desc=&quot;' rel='nofollow' title='Post this on Diigo'/>
   </li>
   <li class='sexy-ekudos'>
   <a class='external' expr:href='&quot;http://www.ekudos.nl/artikel/nieuw?url=&quot; + data:post.url + &quot;&amp;title=&quot; + data:post.title + &quot;&amp;desc=&quot;' rel='nofollow' title='Submit this to eKudos'/>
   </li>
   <li class='sexy-evernote'>
   <a class='external' expr:href='&quot;http://www.evernote.com/clip.action?url=&quot; + data:post.url + &quot;&amp;title=&quot; + data:post.title ' rel='nofollow' title='Clip this to Evernote'/>
   </li>
   <li class='sexy-faqpal'>
   <a class='external' expr:href='&quot;http://www.faqpal.com/submit?url=&quot; + data:post.url ' rel='nofollow' title='Submit this to FAQpal'/>
   </li>
   <li class='sexy-fwisp'>
   <a class='external' expr:href='&quot;http://fwisp.com/submit?url=&quot; + data:post.url ' rel='nofollow' title='Share this on Fwisp'/>
   </li>
   <li class='sexy-globalgrind'>
   <a class='external' expr:href='&quot;http://globalgrind.com/submission/submit.aspx?url=&quot; + data:post.url + &quot;&amp;type=Article&amp;title=&quot; + data:post.title ' rel='nofollow' title='Grind this! on Global Grind'/>
   </li>
   <li class='sexy-hackernews'>
   <a class='external' expr:href='&quot;http://news.ycombinator.com/submitlink?u=&quot; + data:post.url + &quot;&amp;t=&quot; + data:post.title ' rel='nofollow' title='Submit this to Hacker News'/>
   </li>
   <li class='sexy-hatena'>
   <a class='external' expr:href='&quot;http://b.hatena.ne.jp/add?mode=confirm&amp;url=&quot; + data:post.url + &quot;&amp;title=&quot; + data:post.title ' rel='nofollow' title='Bookmarks this on Hatena Bookmarks'/>
   </li>
   <li class='sexy-hyves'>
   <a class='external' expr:href='&quot;http://www.hyves.nl/profilemanage/add/tips/?name=&quot; + data:post.title + &quot;&amp;text=Text about this site+-+&quot; + data:post.url + &quot;&amp;rating=5&quot;' rel='nofollow' title='Share this on Hyves'/>
   </li>
   <li class='sexy-identica'>
   <a class='external' expr:href='&quot;http://identi.ca//index.php?action=newnotice&amp;status_textarea=Reading:&quot; + data:post.title + &quot;+-+from+&quot; + data:post.url ' rel='nofollow' title='Post this to Identica'/>
   </li>
   <li class='sexy-izeby'>
   <a class='external' expr:href='&quot;http://izeby.com/submit.php?url=&quot; + data:post.url ' rel='nofollow' title='Add this to Izeby'/>
   </li>
   <li class='sexy-jumptags'>
   <a class='external' expr:href='&quot;http://www.jumptags.com/add/?url=&quot; + data:post.url + &quot;&amp;title=&quot; + data:post.title ' rel='nofollow' title='Submit this link to JumpTags'/>
   </li>
   <li class='sexy-kaevur'>
   <a class='external' expr:href='&quot;http://kaevur.com/submit.php?url=&quot; + data:post.url ' rel='nofollow' title='Share this on Kaevur'/>
   </li>
   <li class='sexy-mail'>
   <a class='external' expr:href='&quot;mailto:?subject=%22&quot; + data:post.title + &quot;%22&amp;body=Link: &quot; + data:post.url + &quot; (sent via Way2blogging) &quot;' rel='nofollow' title='Email this to a friend?'/>
   </li>
   <li class='sexy-memoryru'>
   <a class='external' expr:href='&quot;http://memori.ru/link/?sm=1&amp;u_data[url]=&quot; + data:post.url + &quot;&amp;u_data[name]=&quot; + data:post.title ' rel='nofollow' title='Add this to Memory.ru'/>
   </li>
   <li class='sexy-meneame'>
   <a class='external' expr:href='&quot;http://meneame.net/submit.php?url=&quot; + data:post.url ' rel='nofollow' title='Submit this to Meneame'/>
   </li>
   <li class='sexy-misterwong'>
   <a class='external' expr:href='&quot;http://www.mister-wong.com/addurl/?bm_url=&quot; + data:post.url + &quot;&amp;bm_description=&quot; + data:post.title + &quot;&amp;plugin=sexybookmarks&quot;' rel='nofollow' title='Add this to Mister Wong'/>
   </li>
   <li class='sexy-moemesto'>
   <a class='external' expr:href='&quot;http://moemesto.ru/post.php?url=&quot; + data:post.url + &quot;&amp;title=&quot; + data:post.title ' rel='nofollow' title='Add this to MyPlace'/>
   </li>
   <li class='sexy-mylinkvault'>
   <a class='external' expr:href='&quot;http://www.mylinkvault.com/link-page.php?u=&quot; + data:post.url + &quot;&amp;n=&quot; + data:post.title ' rel='nofollow' title='Store this link on MyLinkVault'/>
   </li>
   <li class='sexy-myspace'>
   <a class='external' expr:href='&quot;http://www.myspace.com/Modules/PostTo/Pages/?u=&quot; + data:post.url + &quot;&amp;t=&quot; + data:post.title ' rel='nofollow' title='Post this to MySpace'/>
   </li>
   <li class='sexy-n4g'>
   <a class='external' expr:href='&quot;http://www.n4g.com/tips.aspx?url=&quot; + data:post.url + &quot;&amp;title=&quot; + data:post.title ' rel='nofollow' title='Submit tip to N4G'/>
   </li>
   <li class='sexy-netvibes'>
   <a class='external' expr:href='&quot;http://www.netvibes.com/share?title=&quot; + data:post.title + &quot;&amp;url=&quot; + data:post.url ' rel='nofollow' title='Submit this to Netvibes'/>
   </li>
   <li class='sexy-netvouz'>
   <a class='external' expr:href='&quot;http://www.netvouz.com/action/submitBookmark?url=&quot; + data:post.url + &quot;&amp;title=&quot; + data:post.title + &quot;&amp;popup=no&quot;' rel='nofollow' title='Submit this to Netvouz'/>
   </li>
   <li class='sexy-newsvine'>
   <a class='external' expr:href='&quot;http://www.newsvine.com/_tools/seed&amp;save?u=&quot; + data:post.url + &quot;&amp;h=&quot; + data:post.title ' rel='nofollow' title='Seed this on Newsvine'/>
   </li>
   <li class='sexy-ning'>
   <a class='external' expr:href='&quot;http://bookmarks.ning.com/addItem.php?url=&quot; + data:post.url + &quot;&amp;T=&quot; + data:post.title ' rel='nofollow' title='Add this to Ning'/>
   </li>
   <li class='sexy-nujij'>
   <a class='external' expr:href='&quot;http://nujij.nl/jij.lynkx?t=&quot; + data:post.title + &quot;&amp;u=&quot; + data:post.url + &quot;&amp;b=&quot;' rel='nofollow' title='Submit this to NUjij'/>
   </li>
   <li class='sexy-oknotizie'>
   <a class='external' expr:href='&quot;http://oknotizie.virgilio.it/post?url=&quot; + data:post.url + &quot;&amp;title=&quot; + data:post.title ' rel='nofollow' title='Share this on OkNotizie'/>
   </li>
   <li class='sexy-pfbuzz'>
   <a class='external' expr:href='&quot;http://pfbuzz.com/submit?url=&quot; + data:post.url + &quot;&amp;title=&quot; + data:post.title ' rel='nofollow' title='Share this on PFBuzz'/>
   </li>
   <li class='sexy-pingfm'>
   <a class='external' expr:href='&quot;http://ping.fm/ref/?link=&quot; + data:post.url + &quot;&amp;title=&quot; + data:post.title + &quot;&amp;body=&quot;' rel='nofollow' title='Ping this on Ping.fm'/>
   </li>
   <li class='sexy-plaxo'>
   <a class='external' expr:href='&quot;http://www.plaxo.com/?share_link=&quot; + data:post.url ' rel='nofollow' title='Share this on Plaxo'/>
   </li>
   <li class='sexy-plurk'>
   <a class='external' expr:href='&quot;http://www.plurk.com/m?content=9+beautiful+web+forms+for+free+download+-+&quot; + data:post.url + &quot;&amp;qualifier=shares&quot;' rel='nofollow' title='Share this on Plurk'/>
   </li>
   <li class='sexy-printfriendly'>
   <a class='external' expr:href='&quot;http://www.printfriendly.com/print?url=&quot; + data:post.url ' rel='nofollow' title='Send this page to Print Friendly'/>
   </li>
   <li class='sexy-pusha'>
   <a class='external' expr:href='&quot;http://www.pusha.se/posta?url=&quot; + data:post.url + &quot;&amp;title=&quot; + data:post.title ' rel='nofollow' title='Push this on Pusha'/>
   </li>
   <li class='sexy-scriptstyle'>
   <a class='external' expr:href='&quot;http://scriptandstyle.com/submit?url=&quot; + data:post.url + &quot;&amp;title=&quot; + data:post.title ' rel='nofollow' title='Submit this to Script &amp; Style'/>
   </li>
   <li class='sexy-slashdot'>
   <a class='external' expr:href='&quot;http://slashdot.org/bookmark.pl?url=&quot; + data:post.url + &quot;&amp;title=&quot; + data:post.title ' rel='nofollow' title='Submit this to SlashDot'/>
   </li>
   <li class='sexy-sphinn'>
   <a class='external' expr:href='&quot;http://sphinn.com/index.php?c=post&amp;m=submit&amp;link=&quot; + data:post.url ' rel='nofollow' title='Sphinn this on Sphinn'/>
   </li>
   <li class='sexy-springpad'>
   <a class='external' expr:href='&quot;http://springpadit.com/clip.action?body=&amp;url=&quot; + data:post.url + &quot;&amp;format=microclip&amp;title=&quot; + data:post.title + &quot;&amp;isselected=true&quot;' rel='nofollow' title='Spring this on SpringPad'/>
   </li>
   <li class='sexy-strands'>
   <a class='external' expr:href='&quot;http://www.strands.com/tools/share/webpage?title=&quot; + data:post.title + &quot;&amp;url=&quot; + data:post.url ' rel='nofollow' title='Submit this to Strands'/>
   </li>
   <li class='sexy-stumpedia'>
   <a class='external' expr:href='&quot;http://www.stumpedia.com/submit?url=&quot; + data:post.url + &quot;&amp;title=&quot; + data:post.title ' rel='nofollow' title='Add this to Stumpedia'/>
   </li>
   <li class='sexy-techmeme'>
   <a class='external' expr:href='&quot;http://twitter.com/home/?status=Tip+@Techmeme+&quot; + data:post.url + &quot;--&quot; + data:post.title + &quot;&amp;source=Way2blogging&quot;' rel='nofollow' title='Tip this to TechMeme'/>
   </li>
   <li class='sexy-tipd'>
   <a class='external' expr:href='&quot;http://tipd.com/submit.php?url=&quot; + data:post.url ' rel='nofollow' title='Share this on Tipd'/>
   </li>
   <li class='sexy-tomuse'>
   <a class='external' expr:href='&quot;mailto:tips@tomuse.com?subject=&quot; + data:post.title + &quot;&amp;body=Link: &quot; + data:post.url ' rel='nofollow' title='Suggest this article to ToMuse'/>
   </li>
   <li class='sexy-twittley'>
   <a class='external' expr:href='&quot;http://twittley.com/submit/?title=&quot; + data:post.title + &quot;&amp;url=&quot; + data:post.url + &quot;&amp;desc=&amp;pcat=Technology&amp;tags=&quot;' rel='nofollow' title='Submit this to Twittley'/>
   </li>
   <li class='sexy-viadeo'>
   <a class='external' expr:href='&quot;http://www.viadeo.com/shareit/share/?url=&quot; + data:post.url + &quot;&amp;title=&quot; + data:post.title + &quot;&amp;urlaffiliate=31138&quot;' rel='nofollow' title='Share this on Viadeo'/>
   </li>
   <li class='sexy-virb'>
   <a class='external' expr:href='&quot;http://virb.com/share?external&amp;v=2&amp;url=&quot; + data:post.url + &quot;&amp;title=&quot; + data:post.title ' rel='nofollow' title='Share this on Virb'/>
   </li>
   <li class='sexy-wikio'>
   <a class='external' expr:href='&quot;http://www.wikio.com/sharethis?url=&quot; + data:post.url + &quot;&amp;title=&quot; + data:post.title ' rel='nofollow' title='Share this on Wikio'/>
   </li>
   <li class='sexy-wykop'>
   <a class='external' expr:href='&quot;http://www.wykop.pl/dodaj?url=&quot; + data:post.url + &quot;&amp;title=&quot; + data:post.title ' rel='nofollow' title='Add this to Wykop!'/>
   </li>
   <li class='sexy-xerpi'>
   <a class='external' expr:href='&quot;http://www.xerpi.com/block/add_link_from_extension?url=&quot; + data:post.url + &quot;&amp;title=&quot; + data:post.title ' rel='nofollow' title='Save this to Xerpi'/>
   </li>
   <li class='sexy-yandex'>
   <a class='external' expr:href='&quot;http://zakladki.yandex.ru/userarea/links/addfromfav.asp?bAddLink_x=1&amp;lurl=&quot; + data:post.url + &quot;&amp;lname=&quot; + data:post.title ' rel='nofollow' title='Add this to Yandex.Bookmarks'/>
   </li>
   <li class='sexy-bloggertricksandtoolz'>
   </li>
  </ul>
  <div class='sexy-link'>
  </div>
 </div>
</div>
</b:if>

දැන් Template එක Save කරන්න...Save Template 

කොහොමද වැඩේ...

දැන් බලන්න ඔයාලගේ බ්ලොග් එකට මේ Sexy කෙල්ල අවිල්ලා ඇති.....

මතක ඇතුව මේ ගැන ඔයාලගේ අදහස් දිලා යන්න..
ඔබට ජය