Showing posts with label Design. Show all posts
Showing posts with label Design. Show all posts
Thursday, February 2, 2012

How To Make Blog Page Number Navigation

0 comments
How to make a blog page number navigation easily

Actually sometime hard to find working number navigation
 gadget for blogger.So this post will help you to add page
number navigation easily. it will helpful to your visitors to
keep watching your other post.so you can increase page-views.
Its just  blogger widget . try it.

1.  Log in to blogger account > Go to Design >> Page Element

2. Click Add Gadget and select 'HTML/Javascript'

3. Paste below code.
How To Make Blog Page Number Navigation
<style type='text/css'>

.showpageArea a {
text-decoration:underline;
}
.showpageNum a {
border:1px solid #aeaeae;
margin:0 3px;
padding:3px 7px;
text-decoration:none;
}
.showpageNum a:hover {
background-color:#0a8be5;
border:1px solid #000000;

}
.showpagePoint {
-moz-background-clip:border;
-moz-background-inline-policy:continuous;
-moz-background-origin:padding;
background:#aeaeae none repeat scroll 0 0;
border:1px solid #aeaeae;
color:#333333;
margin:0 3px;
padding:3px 7px;
text-decoration:none;
}
.showpageOf {
margin:0 3px 0 0;
padding:3px 7px;
text-decoration:none;
}
.showpage a {
border:1px solid #aeaeae;
padding:3px 7px;
text-decoration:none;
}
.showpage a:hover {
text-decoration:none;
}
.showpageNum a:link, .showpage a:link {
color:#333333;
text-decoration:none;
}

</style>


<script type='text/javascript'>

var home_page_url = location.href;

var pageCount=1;
var displayPageNum=3;
var upPageWord ='Previous';
var downPageWord ='Next';

function showpageCount(json) {
var thisUrl = home_page_url;
var htmlMap = new Array();
var thisNum = 1;
var postNum=1;
var itemCount = 0;
var fFlag = 0;
var eFlag = 0;
var html= '';
var upPageHtml ='';
var downPageHtml ='';

for(var i=0, post; post = json.feed.entry[i]; i++) {

var timestamp1 = post.published.$t.substring(0,19)+post.published.$t.substring(23,29);
timestamp = encodeURIComponent(timestamp1);

var title = post.title.$t;

if(title!=''){
if(itemCount==0 || (itemCount % pageCount ==(pageCount-1))){
if(thisUrl.indexOf(timestamp)!=-1 ){
thisNum = postNum;
}

if(title!='') postNum++;
htmlMap[htmlMap.length] = '/search?updated-max='+timestamp+'&max-results='+pageCount;
}
}
itemCount++;

}

for(var p =0;p< htmlMap.length;p++){
if(p>=(thisNum-displayPageNum-1) && p<(thisNum+displayPageNum)){
if(fFlag ==0 && p == thisNum-2){
if(thisNum==2){
upPageHtml = '<span class="showpage"><a href="/">'+ upPageWord +'</a></span>';
}else{
upPageHtml = '<span class="showpage"><a href="'+htmlMap[p]+'">'+ upPageWord +'</a></span>';
}

fFlag++;
}

if(p==(thisNum-1)){
html += '<span class="showpagePoint">'+thisNum+'</span>';
}else{
if(p==0){
html += '<span class="showpageNum"><a href="/">1</a></span>';

}else{
html += '<span class="showpageNum"><a href="'+htmlMap[p]+'">'+ (p+1) +'</a></span>';
}
}

if(eFlag ==0 && p == thisNum){
downPageHtml = '<span class="showpage"> <a href="'+htmlMap[p]+'">'+ downPageWord +'</a></span>';
eFlag++;
}
}
}

if(thisNum>1){
html = ''+upPageHtml+' '+html +' ';
}

html = '<div class="showpageArea"><span class="showpageOf"> Pages ('+(postNum-1)+')</span>'+html;

if(thisNum<(postNum-1)){
html += downPageHtml;
}

if(postNum==1) postNum++;
html += '</div>';

var pageArea = document.getElementsByName("pageArea");
var blogPager = document.getElementById("blog-pager");

if(postNum <= 2){
html ='';
}

for(var p =0;p< pageArea.length;p++){
pageArea[p].innerHTML = html;
}

if(pageArea&&pageArea.length>0){
html ='';
}

if(blogPager){
blogPager.innerHTML = html;
}

}

function showpageCount2(json) {

var thisUrl = home_page_url;
var htmlMap = new Array();
var isLablePage = thisUrl.indexOf("/search/label/")!=-1;
var thisLable = isLablePage ? thisUrl.substr(thisUrl.indexOf("/search/label/")+14,thisUrl.length) : "";
thisLable = thisLable.indexOf("?")!=-1 ? thisLable.substr(0,thisLable.indexOf("?")) : thisLable;
var thisNum = 1;
var postNum=1;
var itemCount = 0;
var fFlag = 0;
var eFlag = 0;
var html= '';
var upPageHtml ='';
var downPageHtml ='';

var labelHtml = '<span class="showpageNum"><a href="/search/label/'+thisLable+'?&max-results='+pageCount+'">';
var thisUrl = home_page_url;

for(var i=0, post; post = json.feed.entry[i]; i++) {

var timestamp1 = post.published.$t.substring(0,19)+post.published.$t.substring(23,29);
timestamp = encodeURIComponent(timestamp1);

var title = post.title.$t;

if(title!=''){
if(itemCount==0 || (itemCount % pageCount ==(pageCount-1))){
if(thisUrl.indexOf(timestamp)!=-1 ){
thisNum = postNum;
}

if(title!='') postNum++;
htmlMap[htmlMap.length] = '/search/label/'+thisLable+'?updated-max='+timestamp+'&max-results='+pageCount;

}
}
itemCount++;
}

for(var p =0;p< htmlMap.length;p++){
if(p>=(thisNum-displayPageNum-1) && p<(thisNum+displayPageNum)){
if(fFlag ==0 && p == thisNum-2){
if(thisNum==2){
upPageHtml = labelHtml + upPageWord +'</a></span>';
}else{
upPageHtml = '<span class="showpage"><a href="'+htmlMap[p]+'">'+ upPageWord +'</a></span>';
}

fFlag++;
}

if(p==(thisNum-1)){
html += '<span class="showpagePoint">'+thisNum+'</span>';
}else{
if(p==0){
html = labelHtml+'1</a></span>';
}else{
html += '<span class="showpageNum"><a href="'+htmlMap[p]+'">'+ (p+1) +'</a></span>';
}
}

if(eFlag ==0 && p == thisNum){
downPageHtml = '<span class="showpage"> <a href="'+htmlMap[p]+'">'+ downPageWord +'</a></span>';
eFlag++;
}
}
}

if(thisNum>1){
if(!isLablePage){
html = ''+upPageHtml+' '+html +' ';
}else{
html = ''+upPageHtml+' '+html +' ';
}
}

html = '<div class="showpageArea"><span class="showpageOf"> Pages ('+(postNum-1)+')</span>'+html;

if(thisNum<(postNum-1)){
html += downPageHtml;
}

if(postNum==1) postNum++;
html += '</div>';

var pageArea = document.getElementsByName("pageArea");
var blogPager = document.getElementById("blog-pager");

if(postNum <= 2){
html ='';
}

for(var p =0;p< pageArea.length;p++){
pageArea[p].innerHTML = html;
}

if(pageArea&&pageArea.length>0){
html ='';
}

if(blogPager){
blogPager.innerHTML = html;
}

}

</script>
<script type='text/javascript'>

var thisUrl = home_page_url;
if (thisUrl.indexOf("/search/label/")!=-1){
if (thisUrl.indexOf("?updated-max")!=-1){
var lblname1 = thisUrl.substring(thisUrl.indexOf("/search/label/")+14,thisUrl.indexOf("?updated-max"));
}else{
var lblname1 = thisUrl.substring(thisUrl.indexOf("/search/label/")+14,thisUrl.indexOf("?&max"));
}
}

var home_page = "/";
if (thisUrl.indexOf("?q=")==-1){
if (thisUrl.indexOf("/search/label/")==-1){
document.write('<script src="'+home_page+'feeds/posts/summary?alt=json-in-script&callback=showpageCount&max-results=99999" ><\/script>')
}else{document.write('<script src="'+home_page+'feeds/posts/full/-/'+lblname1+'?alt=json-in-script&callback=showpageCount2&max-results=99999" ><\/script>')
}
}
</script>

You can change 1 and 3 and color code as your like.get your color code here

4. Save HTML/Javascript. you are done.
Continue reading →
Saturday, January 14, 2012

Cool Hone Hone Clock For Blogger

0 comments
This is cool digital clock for your blog. try it.


1.  Log in to blogger account and Go to Design > Page Element

2. Click Add Gadget and select 'HTML/Javascript'

3. Paste one of below code.



<script charset="Shift_JIS" src="http://chabudai.sakura.ne.jp/blogparts/honehoneclock/honehone_clock_tr.js"></script> 



<script charset="Shift_JIS" src="http://chabudai.sakura.ne.jp/blogparts/honehoneclock/honehone_clock_wh.js"></script> 

4. Save HTML/Javascript. you are done.

It will LookLike This



Continue reading →
Monday, December 19, 2011

How To Show Current Date On Blogger

0 comments
In this Tutorial talking about showing date by using java script.
Using this script, you can show current date on your blogger.
Its easy,you can try it.

1. Log in to blogger account and Go to Design >> Edit HTML

2. Make sure you put check mark to “Expand Widget Templates

3. Find this tag by using Ctrl+F    </head>

4. Paste  below code Before  </head> tag

<script src='http://4444444444r.googlepages.com/current-date.js' type='text/javascript'/>

5. Now Go to Design >> Page Element

6. Click Add Gadget and select 'HTML/Javascript'

7. Paste  below code.

<script>showCurrentDate();</script>

Save it. you are done.

It will look like this
Continue reading →
Wednesday, November 23, 2011

How To Add Floating Effect For Blogger Courser

0 comments
How To Add Floating Effect For Blogger Courser
This is a cool trick for your blog. try it.


1. Log in to blogger and Go to Design >> Edit HTML

2. Put checked marked in Expand Widget Templates

3. Find this tag by using Ctrl+F </head>  tag

4. Paste  below code before </head>  tag








<script type="text/javascript">
// <![CDATA[
var colour="#666666";
var sparkles=40;

var x=ox=400;
var y=oy=300;
var swide=800;
var shigh=600;
var sleft=sdown=0;
var tiny=new Array();
var star=new Array();
var starv=new Array();
var starx=new Array();
var stary=new Array();
var tinyx=new Array();
var tinyy=new Array();
var tinyv=new Array();
window.onload=function() { if (document.getElementById) {
var i, rats, rlef, rdow;
for (var i=0; i<sparkles; i++) {
var rats=createDiv(3, 3);
rats.style.visibility="hidden";
document.body.appendChild(tiny[i]=rats);
starv[i]=0;
tinyv[i]=0;
var rats=createDiv(5, 5);
rats.style.backgroundColor="transparent";
rats.style.visibility="hidden";
var rlef=createDiv(1, 5);
var rdow=createDiv(5, 1);
rats.appendChild(rlef);
rats.appendChild(rdow);
rlef.style.top="2px";
rlef.style.left="0px";
rdow.style.top="0px";
rdow.style.left="2px";
document.body.appendChild(star[i]=rats);
}
set_width();
sparkle();
}}
function sparkle() {
var c;
if (x!=ox || y!=oy) {
ox=x;
oy=y;
for (c=0; c<sparkles; c++) if (!starv[c]) {
star[c].style.left=(starx[c]=x)+"px";
star[c].style.top=(stary[c]=y)+"px";
star[c].style.clip="rect(0px, 5px, 5px, 0px)";
star[c].style.visibility="visible";
starv[c]=50;
break;
}
}
for (c=0; c<sparkles; c++) {
if (starv[c]) update_star(c);
if (tinyv[c]) update_tiny(c);
}
setTimeout("sparkle()", 40);
}
function update_star(i) {
if (--starv[i]==25) star[i].style.clip="rect(1px, 4px, 4px, 1px)";
if (starv[i]) {
stary[i]+=1+Math.random()*3;
if (stary[i]<shigh+sdown) {
star[i].style.top=stary[i]+"px";
starx[i]+=(i%5-2)/5;
star[i].style.left=starx[i]+"px";
}
else {
star[i].style.visibility="hidden";
starv[i]=0;
return;
}
}
else {
tinyv[i]=50;
tiny[i].style.top=(tinyy[i]=stary[i])+"px";
tiny[i].style.left=(tinyx[i]=starx[i])+"px";
tiny[i].style.width="2px";
tiny[i].style.height="2px";
star[i].style.visibility="hidden";
tiny[i].style.visibility="visible"
}
}
function update_tiny(i) {
if (--tinyv[i]==25) {
tiny[i].style.width="1px";
tiny[i].style.height="1px";
}
if (tinyv[i]) {
tinyy[i]+=1+Math.random()*3;
if (tinyy[i]<shigh+sdown) {
tiny[i].style.top=tinyy[i]+"px";
tinyx[i]+=(i%5-2)/5;
tiny[i].style.left=tinyx[i]+"px";
}
else {
tiny[i].style.visibility="hidden";
tinyv[i]=0;
return;
}
}
else tiny[i].style.visibility="hidden";
}
document.onmousemove=mouse;
function mouse(e) {
set_scroll();
y=(e)?e.pageY:event.y+sdown;
x=(e)?e.pageX:event.x+sleft;
}
function set_scroll() {
if (typeof(self.pageYOffset)=="number") {
sdown=self.pageYOffset;
sleft=self.pageXOffset;
}
else if (document.body.scrollTop || document.body.scrollLeft) {
sdown=document.body.scrollTop;
sleft=document.body.scrollLeft;
}
else if (document.documentElement && (document.documentElement.scrollTop || document.documentElement.scrollLeft)) {
sleft=document.documentElement.scrollLeft;
sdown=document.documentElement.scrollTop;
}
else {
sdown=0;
sleft=0;
}
}
window.onresize=set_width;
function set_width() {
if (typeof(self.innerWidth)=="number") {
swide=self.innerWidth;
shigh=self.innerHeight;
}
else if (document.documentElement && document.documentElement.clientWidth) {
swide=document.documentElement.clientWidth;
shigh=document.documentElement.clientHeight;
}
else if (document.body.clientWidth) {
swide=document.body.clientWidth;
shigh=document.body.clientHeight;
}
}
function createDiv(height, width) {
var div=document.createElement("div");
div.style.position="absolute";
div.style.height=height+"px";
div.style.width=width+"px";
div.style.overflow="hidden";
div.style.backgroundColor=colour;
return (div);
}
// ]]>
</script>

5. Now click preview for checking everything fine to save template
   After click save template. you are done.
Continue reading →
Sunday, November 6, 2011

How To Add Reply Option To blogger Comment

0 comments
This is cool option for your blogger. You can add reply button
to your every blogger comment. so it will help you to reply
to questions easily.

How To Add Reply Option To blogger Comment

1. Log in to your blogger account and Go to Design >> Edit HTML

2. Make sure you put check mark to “Expand Widget Templates

3. Find this tag by using Ctrl+F  <data:commentPostedByMsg/> 

4. Paste  below code After  <data:commentPostedByMsg/> code

<span><a expr:href='&quot;https://www.blogger.com/comment.g?blogID=YOUR-BLOG-ID&amp;postID=&quot; + data:post.id + &quot;&amp;
isPopup=true&amp;postBody=%40%3C%61%20%68%72%65%66%3D%22%23&quot; + data:comment.anchorName + &quot;%22%3E&quot; + data:comment.author + &quot;%3C%2F%61%3E#form&quot;'
onclick='javascript:window.open(this.href, &quot;bloggerPopup&quot;, &quot;toolbar=0,location=0,statusbar=1,menubar=0,scrollbars=yes,width=450,height=450&quot;); return false;'>
<img alt='Reply To This Comment' src='https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEiinqMg78D28JLa9x2hgEYHoyvpqLeXIktdipAEwhLHwNwuwO6Rh7NUZmKuHiPdzrxPjOAOewmaG__8BbYGlVE6Jqd42ZYyfHw3bGwn-lvSpNSdKG6L0ouatEsdDbfujN3rgROybSIvP0r1/s1600/reply.png'/></a></span>

You can replace YOUR-BLOG-ID with your ID

Go to dashboard and click design, then you can get your blog ID on Address bar.
It looks like below.


You can replace Pink color URL with other image URL if you want.

5. After you did it, you can click Save Template
   You are done.
Continue reading →
Thursday, September 1, 2011

Rainbow Color Link Hover Effect For Blogger

0 comments
This is a cool effect for your blog, you can add
it to your blog easily.

rainbbow,rainbowlink
Demo here
(move courser to link)

1. Log in to your blogger account and Go to Design >> Edit HTML

3. Find this tag by using Ctrl+F   </head>

4. Paste  below code , before </head>tag

<script type='text/javascript'>
//<![CDATA[
var rate = 20;
if (document.getElementById)
window.onerror=new Function("return true")
var objActive; // The object which event occured in
var act = 0; // Flag during the action
var elmH = 0; // Hue
var elmS = 128; // Saturation
var elmV = 255; // Value
var clrOrg; // A color before the change
var TimerID; // Timer ID
if (document.all) {
document.onmouseover = doRainbowAnchor;
document.onmouseout = stopRainbowAnchor;
}
else if (document.getElementById) {
document.captureEvents(Event.MOUSEOVER | Event.MOUSEOUT);
document.onmouseover = Mozilla_doRainbowAnchor;
document.onmouseout = Mozilla_stopRainbowAnchor;
}
function doRainbow(obj)
{
if (act == 0) {
act = 1;
if (obj)
objActive = obj;
else
objActive = event.srcElement;
clrOrg = objActive.style.color;
TimerID = setInterval("ChangeColor()",100);
}
}
function stopRainbow()
{
if (act) {
objActive.style.color = clrOrg;
clearInterval(TimerID);
act = 0;
}
}
function doRainbowAnchor()
{
if (act == 0) {
var obj = event.srcElement;
while (obj.tagName != 'A' && obj.tagName != 'BODY') {
obj = obj.parentElement;
if (obj.tagName == 'A' || obj.tagName == 'BODY')
break;
}
if (obj.tagName == 'A' && obj.href != '') {
objActive = obj;
act = 1;
clrOrg = objActive.style.color;
TimerID = setInterval("ChangeColor()",100);
}
}
}
function stopRainbowAnchor()
{
if (act) {
if (objActive.tagName == 'A') {
objActive.style.color = clrOrg;
clearInterval(TimerID);
act = 0;
}
}
}
function Mozilla_doRainbowAnchor(e)
{
if (act == 0) {
obj = e.target;
while (obj.nodeName != 'A' && obj.nodeName != 'BODY') {
obj = obj.parentNode;
if (obj.nodeName == 'A' || obj.nodeName == 'BODY')
break;
}
if (obj.nodeName == 'A' && obj.href != '') {
objActive = obj;
act = 1;
clrOrg = obj.style.color;
TimerID = setInterval("ChangeColor()",100);
}
}
}
function Mozilla_stopRainbowAnchor(e)
{
if (act) {
if (objActive.nodeName == 'A') {
objActive.style.color = clrOrg;
clearInterval(TimerID);
act = 0;
}
}
}
function ChangeColor()
{
objActive.style.color = makeColor();
}
function makeColor()
{
// Don't you think Color Gamut to look like Rainbow?
// HSVtoRGB
if (elmS == 0) {
elmR = elmV; elmG = elmV; elmB = elmV;
}
else {
t1 = elmV;
t2 = (255 - elmS) * elmV / 255;
t3 = elmH % 60;
t3 = (t1 - t2) * t3 / 60;
if (elmH < 60) {
elmR = t1; elmB = t2; elmG = t2 + t3;
}
else if (elmH < 120) {
elmG = t1; elmB = t2; elmR = t1 - t3;
}
else if (elmH < 180) {
elmG = t1; elmR = t2; elmB = t2 + t3;
}
else if (elmH < 240) {
elmB = t1; elmR = t2; elmG = t1 - t3;
}
else if (elmH < 300) {
elmB = t1; elmG = t2; elmR = t2 + t3;
}
else if (elmH < 360) {
elmR = t1; elmG = t2; elmB = t1 - t3;
}
else {
elmR = 0; elmG = 0; elmB = 0;
}
}
elmR = Math.floor(elmR).toString(16);
elmG = Math.floor(elmG).toString(16);
elmB = Math.floor(elmB).toString(16);
if (elmR.length == 1) elmR = "0" + elmR;
if (elmG.length == 1) elmG = "0" + elmG;
if (elmB.length == 1) elmB = "0" + elmB;
elmH = elmH + rate;
if (elmH >= 360)
elmH = 0;
return '#' + elmR + elmG + elmB;
}
//]]>
</script>

7. Now click Save template and save your template.

cheers you are done.
Continue reading →
Tuesday, July 26, 2011

How To Add CSS Shadow Box Effect For Blogger

0 comments
This is a about CSS trick, This post will explain
how to add CSS shadow box to blogger.


1. Log in to your blogger account and Go to Design >> Edit HTML

3. Find this tag by using Ctrl+F    ]]></b:skin>

4. Paste one of  below code Before ]]></b:skin> tag

Outside shadow
#Shadow-Outside{
-moz-box-shadow: 0 0 5px 5px #222;
-webkit-box-shadow: 0 0 5px 5px #222;
box-shadow: 0 0 5px 5px #222;
}

Inside shadow
#Shadow-inside {
-moz-box-shadow: inset 0 0 5px 5px #222;
-webkit-box-shadow: inset 0 0 5px 5px #222;
box-shadow: inset 0 0 5px 5px #222;
}

You can change color, with changing #222
Get your color code here

5. Now When you make the post, paste below code for get CSS shadow box
   
For Outside shadow
<div id="Shadow-Outside">
your text here....
</div>

For Inside shadow
<div id="Shadow-inside">
your text here....
</div>

Replace Blue color words with your text

8. You are done.
Continue reading →
Friday, July 22, 2011

How to Add Peel Effect For Blogger

0 comments
This is cool effect to your blog.
I used Peel effect for RSS.click below link for Demo.













DEMO
(Top right Corner)

1. Log in to your blogger account and Go to Design >> Edit HTML

2. Find this tag by using Ctrl+F    </head>

3. Paste below code Before   </head> tag

<style type="text/css">
img { behavior: url(iepngfix.htc) }
#pageflip {
position: relative;
right: 0; top: 0;
float: right;
}
#pageflip img {
width: 50px; height: 52px;
z-index: 99;
position: absolute;
right: 0; top: 0;
-ms-interpolation-mode: bicubic;
}
#pageflip .msg_block {
width: 50px; height: 50px;
overflow: hidden;
position: absolute;
right: 0; top: 0;
background: url(https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEie0AhZT_R1DIef23wtPBqb0XTXIrwsRRRvBeDlu81RKyU1XgCuHKh2cm3emsZxJvjAkarZeHUkQSJGnURxDIskJu9kPOzodlZVfmipjXUiDX916-8fIsOQ_Dg3AM8WllKD3XZ1JTX7-Y0h/s320/Newspaper-Feed-icon.png) no-repeat right top;
}
</style>
<script src="http://code.jquery.com/jquery-latest.js" type="text/javascript"/>
<script type='text/javascript'>
$(document).ready(function(){
//Page Flip on hover
$(&quot;#pageflip&quot;).hover(function() {
$(&quot;#pageflip img , .msg_block&quot;).stop()
.animate({
width: &#39;307px&#39;,
height: &#39;319px&#39;
}, 500);
} , function() {
$(&quot;#pageflip img&quot;).stop()
.animate({
width: &#39;50px&#39;,
height: &#39;52px&#39;
}, 220);
$(&quot;.msg_block&quot;).stop()
.animate({
width: &#39;50px&#39;,
height: &#39;50px&#39;
}, 200);
});
});
</script>


4. Now again Find this tag by using Ctrl+F <body>

5. Paste below code After   <body>  tag

<div id='pageflip'>
<a href='http://feeds2.feedburner.com/Bloggertrix'><img alt='' src='https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEikFwxnToVfo-eitD2YGmjfuDXF_-nbBhtYbNKH9AczoQGm1qD9k5GFmNrDjV1DPglbmcVWRt6zkVAk1lSZQ1u9L_4ZB9W2imtkANKo2i9GM5mUXB9cSpsoa-MtE7dGY8a1eZ8VHsoJllsj/s320/peel-image.png'/></a>
<div class='msg_block'></div>
</div>

* You can change pink URL with your URL
*  You can change RED URL with your Feed URL
6. Now click Save Template.
You are done.
Continue reading →
Saturday, July 9, 2011

How To Add Cool Animated Twitter Bird For Blogger

0 comments
 How To Add Cool Animated Twitter Bird For Blogger

 This is a cool twitter follower gadget to your blog, try it..

online bingo

1. Log in to blogger and Go to  Design >> Page Element.

2. Click Add Gadget and select 'HTML/Javascript'

3. Paste below code.

<object type="application/x-shockwave-flash" data="http://www.buzzbuttons.com/BUTTON8/twitbutton.swf" width="159" height="159"><param name="movie" value="http://www.buzzbuttons.com/BUTTON8/twitbutton.swf"></param><param name="allowscriptaccess" value="always"></param><param name="menu" value="false"></param><param name="wmode" value="transparent"></param><param name="flashvars" value="username=your_id_here"></param><a href="http://www.dreambingo.co.uk/" title="online bingo">online bingo</a><embed src="http://www.buzzbuttons.com/BUTTON8/twitbutton.swf" 
type="application/x-shockwave-flash" allowscriptaccess="always" width="159" height="159" menu="false" wmode="transparent" flashvars="username=Bloggertrix"></embed></object>

*Replace Bloggertrix with your Twitter name

4. Click save 'HTML/Javascript'
   
You are done,
Continue reading →
Monday, July 4, 2011

How To Add Blockquote For Blogger

0 comments
How To Add Blockquote For Blogger



1. Log in to blogger account and Go to Design > Edit HTML

2. Find this tag by using Ctrl+F    ]]></b:skin>

3. Paste below code after ]]></b:skin> tag

blockquote { background:#c5c5c5 url(https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEj56kKePx4rf2tathYWV8u6xggSOoG40Dn6qbeQNSWn7rOfft5SDnSlCDwCbzkkkdoohFBJwpsGvMNsr3q7t7fUaMTusHVjzohXcD_mYXTURW2gF9jZ3-XyNy_bk6atV4AzZZln8wCNabk-/s320/blockquote.png) no-repeat top left;
padding:10px 20px 10px 45px;
font-style:italic;
border:1px solid #000000;}

4. Now save your template

5. when you want to  use blockquote Write your text like below

<blockquote>
Your Text here...
</blockquote>
 Between  blockquote tag
Replace Your Text here with any  words,

6. You can use it when you making post.
Now you are done.
Continue reading →
Thursday, June 30, 2011

How To Add Welcome Message For Blogger

0 comments
Using this post , you can add welcome message to your blog.


1. Log in to blogger account and Go to Design >Edit HTML

2. Put checked marked in Expand Widget Templates

3. Find this tag by using Ctrl+F    ]]></b:skin>

4. Paste below code Before ]]></b:skin> tag

.element { position:fixed; bottom:1%; right:1%; padding:10px; font-family:Arial;
background:#98DBF7; border:1px solid #2FBAF6; }

5. Now Go to Design >>page Element

6.Click Add gadget  and Select HTML/JavaScript 

7. Now paste paste below code

<div class="element">... Message Here ...</div>

Replace Blue color sentence with your own message

8.  Now save  HTML/JavaScript.  you are done.
Continue reading →
Sunday, June 26, 2011

How To Add Images For Blogger Page Navigation

0 comments
This is a cool trick for your blog.some Templates don't have
this icons. so you can add this icons as your like.
its easy , follow these steps.


1. Log it to blogger and go to Design > Edit HTML

2.Make sure you put check mark to “Expand Widget Templates

3.Find this code by using Ctrl+F 
(This is for previous page)


title='data:olderPageTitle'><data:olderPageTitle/></a>
      </span>
    </b:if>


In this above code select  <data:olderPageTitle/> code and replace with below code 
<img src='https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEhS2N5EXIvvcO-F4Z6JSn8lofSiRXV3OPsKgYQLBaXucqgHnXfZVBYHf0RRVN3CcoPOkKAzcU0sjFHVC3birnwOioMduY1UMGY662iIR9Vcvj5v3YleGliFMMGyyPlrbOMJd447qX23kIwt/s320/Button-Previous-icon.png'/>


4. Find this code by using Ctrl+F
(This is for Next page)

title='data:newerPageTitle'><data:newerPageTitle/></a>
      </span>
    </b:if>


In this above code select  <data:newerPageTitle/> code and replace with below code 
<img src='https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEgwbbX0SCeD76yr4FhUlyAiq3Qb6kVh7NSQVtBq5UGYS41C0LltwkYXujADU8yeuaStEHeNG2ulpwJ4RdcnSRHvAOGN0OsTW6D769ifphn8BrIIt2Cs4XI5rHtkBh-xniL8o0ypoHdnObUq/s320/Button-Next-icon.png'/>


5. Find this code by using Ctrl+F
(This is for Home page)

<a class='home-link' expr:href='data:blog.homepageUrl'><data:homeMsg/></a>
In this above code select  <data:homeMsg/> code and replace with below code 
 <img src='https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEjBCnR31fr84dOH9_4ruGjLqLwIqb72AeuY9IOj1xB3I2okTdLFpzT0wPeAZnjcpFYNYkzJKEjkqGp2_QHbjB-GD661EuvIOcWdQ5jHZxJCVSoALKBCpct67qglLm5m2rxku_TqOpXSK7uC/s320/Home.png'/>

6. Save your template.

7. Now you are done.
You can change icon URL as your like
Continue reading →

How To Add Wibiya's Web Toolbar For Blogger

0 comments
Wibiya's toolbar is helps to show online visitors, facebook
fan page, twitter, feed and many more.so it  is a good
gadget for blogger.














1. First go to This site  http://www.wibiya.com

2. Click get it now and fill give some information about your site

3. After you can select theme as your like.








4. After select theme you can add your Facebook, twitter feed etc.with user names and links

5. Now you can choose your website (platform) select blog and add it.

6. Now you are done.
Continue reading →
Saturday, June 18, 2011

How to add flying twitter bird widget to blogger

0 comments
 How to add flying twitter bird widget to blogger
This is a cool gadget to your blogger. it will help you to
get more twitter  followers.


twitter,twitter bird, animated bird,flying twitter bird
1. Log in to blogger and Go to  Design >> Page Element.

2. Click Add Gadget and select 'HTML/Javascript'

3.Paste below code.

<script type="text/javascript" 
src="http://bloggerblogwidgets.googlecode.com/files/way2blogging.org-tripleflap.js"></script><script
type="text/javascript">

var twitterAccount = "Twitter User Name";

tripleflapInit();

</script><noscript><span
style="font-size:10px;"><a
href="http://www.bloggertrix.com">Get this</a></span></noscript>

Replace Twitter user name with your twitter user name

4. Now save your HTML/Javascript'.

you are done.
Continue reading →
Sunday, June 12, 2011

How To Show Post Title Only On Home page

0 comments
This trick will help you to show post title only on your
home page.Some blogger like less page height on home
 page.so you can use this trick and  reduce your home
page height size and keep more post on there. hope
this help to you. thanks you.

Show Post Title,bloggerPost Title,Post Title










1. Log in to your blogger account and Go to Design >> Edit HTML

2. Find this tag by using Ctrl+F   </head>

3. Paste below code before </head> tag

<style type='text/css'>

<b:if cond='data:blog.pageType != "item"'>
.post {
margin:.5em 0 1.5em;
border-bottom:0px dotted $bordercolor;
padding-bottom:1.0em;
height:50px;
}
.post h3 {
margin:.25em 0 0;
padding:0 0 4px;
font-size:20px;
font-family:Tahoma,Georgia,Century gothic,Arial,sans-serif;
font-weight:normal;
line-height:1.4em;
color:#cc6600;
}

.post h3 a, .post h3 a:visited, .post h3 strong {
display:block;
text-decoration:none;
color:#cc6600;
font-weight:normal;
}

.post h3 strong, .post h3 a:hover {color:#333333;}

.post-body {display:none;}
.post-footer {display:none;}
.comment-link {display:none;}
.post img {display:none;}
.post blockquote {display:none;}
.post blockquote p {display:none;}
h2.date-header {display:none;}
.post-labels {display:none;}
.post-rating {display:none;}

</b:if>

</style>

4. Now click save template.

5. If you want to change post amount on home page,

6. Go to Design >> Page Element  and  find post body and click Edit as below image.

blog post,blogger body, edit body






7. Now change Number of posts on main page:   as your like.

blogger home page, blogger post amount





8. Now click save. you are done..........
Continue reading →
Saturday, June 11, 2011

Cool Social bookmarks icons part 5

0 comments
 Here also have Cool network icons for you.you can click below link and get  previous icon set

Visit cool icon part 1 click here 
Visit cool icon part 2 click here
Visit cool icon part 3 click here
Visit cool icon part 4 click here



1.

Truck social icon,vehicle social icons

2.
wood social icons


3.
beautiful social bookmark icons



4.
latest social icons,Free cool social icons

5.

best and cool social icons,Bookmark icons
Enjoy with adding cool icons for your blog.
Continue reading →
Monday, May 30, 2011

Cool Social bookmarks icons part 4

0 comments
 Here also have Cool network icons for you.you can click below link and get  previous icon set

Visit cool icon part 1 click here 
Visit cool icon part 2 click here
Visit cool icon part 3 click here

1.





2.
woven icons set


3.

social icon set



4.



5

Download Here
Good luck.

Continue reading →
Thursday, May 19, 2011

How to add cool animated stars to your blog

0 comments
This will give great look to your blog. try to add this
option to your blogger.

star,blogger

1. Log in to blogger and Go to  Design >> Page Element.

2. Click Add Gadget and select 'HTML/Javascript'

3.Paste below code.

Falling Colored Stars

<script type="text/javascript" src="https://sites.google.com/site/bdlab12/bdlab-blogspot-com/ColoredStars.txt" />
</script>


Falling fire Stars
<script type="text/javascript" src="https://sites.google.com/site/bdlab12/bdlab-blogspot-com/fireStars.txt" />
</script>



Falling  Stars


<script type="text/javascript" src="https://sites.google.com/site/bdlab12/bdlab-blogspot-com/Stars.txt" />
</script>


Falling snow

<script type="text/javascript" src="https://sites.google.com/site/bdlab12/bdlab-blogspot-com/snow.txt" />
</script>


Falling Hearts

<script type="text/javascript" src="https://sites.google.com/site/bdlab12/bdlab-blogspot-com/LoveHeart-1-dance.txt" /> </script>


Falling Heart
<script type="text/javascript" src="https://sites.google.com/site/bdlab12/bdlab-blogspot-com/LoveHeart-1-lights.txt" /> </script>


 Falling butterfly
<script type="text/javascript" src="https://sites.google.com/site/bdlab12/bdlab-blogspot-com/butterfly-1-dance.txt" /> </script>


4. Now Click save you are done.
Continue reading →
Tuesday, May 17, 2011

Cool Social bookmarks icons part 3

0 comments
 Here is another cool  social bookmark icon for your blog.Add New icon and make Attractive your blog.

Visit cool icon part 1 click here 
Visit cool icon part 2 click here

1.
social

2. 

social


3.  

social
4.

social

5.
social

Add this icon to your blog.
Continue reading →
Saturday, May 7, 2011

5 cool mouse courser to your blog

0 comments
How to add animate mouse courser to your blogger

This courser will give a great look to your blog,
Visitors will attract.its easy try this.

1. Log in toblogger account and Go to Design >Edit HTML

2. Put checked marked in Expand Widget Templates

3. Find this tag by using Ctrl+F </body>

4. Paste one of below code before </body>


Style 1
<style type="text/css">body, a, a:hover {cursor: url(http://cur.cursors-4u.net/user/use-1/use32.cur), progress;}</style>


Style 2
<style type="text/css">body, a, a:hover {cursor: url(http://cur.cursors-4u.net/people/peo-7/peo845.cur), progress;}</style>


Style 3
<style type="text/css">body, a, a:hover {cursor: url(http://royal-tutor.110mb.com/FRUITY_LIME_HEART-royaltutor.net.cur), progress;}</style>

Style 4

<style type="text/css">body, a, a:hover {cursor: url(http://royal-tutor.110mb.com/FRUITY_LEMON_HEART-royaltutor.net.cur), progress;}</style>

Style 5 

<style type="text/css">body, a, a:hover {cursor: url(http://royal-tutor.110mb.com/TRANSPARENT_HALO_POINTER-royaltutor.net.cur), progress;}</style>


5. Now click preview for checking everything fine to save template
   After click save template. you are done.
Continue reading →
Related Posts Plugin for WordPress, Blogger...