New Design

Recent Post

Showing posts with label Blogger Tricks. Show all posts
Showing posts with label Blogger Tricks. Show all posts
Monday, May 2, 2011
Adding QueryLoader Script For Blogger

Adding QueryLoader Script For Blogger



QueryLoader is a blank black ( can be changed ) screen that covers your blog till all content loaded, which means that your visitors won’t see the actual loading of your blog, instead of that, they will see a loading page with a bar and percentage of the overall blog loading, it’s build using j-query and css. easy to apply to your blogger blog, and customize able.

  •  In this step we will add a scripts files to your blogger template.
    Please navigate to your dashboard >> Design >> edit html , and please find the following code,
  •  
    </head>
     
  •  And exactly before it add the following code
  •  
    <script src='http://code.jquery.com/jquery-1.5.min.js' 
    type='text/javascript'/>
    <script src='http://blogger-loader.googlecode.com/files/queryLoaderpre.js'
    type='text/javascript'/> 
  • And on the same page, please find the following code, 
            
 </body> 
  •  And before it add the next code,(Adding Java Codes)
  •  
    <script>
     QueryLoader.selectorPreload = &quot;body&quot;;
     QueryLoader.init();
    </script>
     
  •  now on the same page too, find this code, (adding CSS CODES)


    ]]></b:skin>

    
    And before it , add this code, 
     
     
     .QOverlay {
     background-color: #000000;
     z-index: 9999;
    }
    
    .QLoader {
     background-color: #CCCCCC;
     height: 1px;
    }
    
    .QAmt {
     color:#FF530D;
     font-size:50px;
     font-weight:bold;
     line-height:50px;
     height:50px;
     width:100px;
     margin:-60px 0 0 -50px;
    }
     
     
     
     
     
    now Click Save Template  
    THATS ALL
     
    >>>>>Click Here TO SEE THE DEMO >>>>>
     
      

     
  •  
     
    Read more:  of Blogger Tricks..
Thursday, April 28, 2011
How to add a Paypal donation button to your blogger

How to add a Paypal donation button to your blogger

Most of the bloggers use Paypal donation button to their blog, so that if any one likes their work and wants to donate money than they can us this button to donate.

First of all to add this button you need a paypal account. If you dont have, create one.Now follow the following steps to create Paypal donation button for blogger -
1. Login to your paypal account.
2. Click the merchant services tab.
3. Scroll down and on the right sidebar and find the link named Donations and click it.
4. After clicking that link, you will taken to Create paypal payment button page.
5. Select Donations in the Accept Payments for dropdown box. You can type a name/id for this button, but its optional.
6. Choose your button style and click on create button.
7. From next page, copy the entire code from the textbox.
8. Go to blogger Dashboard >> add gadget >> add HTML/JavaScript and paste it, that’s all.
Saturday, April 23, 2011
no image

Remove or Hide Post Atom, Home, and Older Post

                                                      Blogger Tricks

This  links can be easily removed by adding following small css  codes . You can even choose which links you want to remove with the codes below.


Go to Design--> Template Designer--> Advanced--> Add CSS--> Input The Codes Below. 

  • Remove Post Atom:


    .feed-links, .blog-feeds {
    display: none;
    }
  • Remove Home Link:

     
    .home-link {
    display: none;
    }

  • Remove Older Post Link:


    .blog-pager-older-link {
    display: none;
    }
  • Remove Home & Older Post Link: 

    .blog-pager {
    display: none;
    }

    after entering this code into the Add CSS box, with the cursor still in the box hit the space bar for it to take effect. 


    SEE all    Blogger Tricks

         
no image

How To Add Google Adsense to the Header

Adsense to the Header (Above the Title)

If you want to add Google Adsense to your header for instance above the title you can by adjusting your template to give you the option of adding more than one widget to the header area.

1. Login to Blogger and navigate to Layout > Edit HTML
2. Back up your template as a precaution by downloading the full template to your computer
3. Check the Expand Widgets Template box
4. Find the following code. (use CTRL + F to bring up the toolbar). Then enter 

<div id='outer-wrapper'>

into the find box: (Or Search for <b:section class='header')

 </head>
<body>
<div id='outer-wrapper'>
<div id='header-wrapper'>
<b:section class='header' id='header' maxwidgets='1'>
<b:widget id='Header1' locked='true' title='Blog Know How (Header)' type='Header'>



5. Replace maxwidgets='1' with maxwidgets='3'
6. Save Template
7. Navigate to Layout > Page Elements and view the new option to add a gadget to the header area

8. Click on Add a Gadget and select Google Adsense.
9. Choose the type of ad unit you want. For this example I chose a new linked 728x15 ad unit from the dropdown format menu for an ad that would sit above the title. Configure colors if necessary. Color blending is usually done automatically by Blogger according to the color schema of your template.
10. Click Save

11. Click View Blog to see your new Google Adsense unit in place.

Adsense to the Header (Below Title)

To have your new Google Adsense linked unit appear below the title the steps are the same as above. The difference is that you will need to shift the ad unit into position by using the drag and drop feature to move the widget below the header title in the Layout > Page Elements page.

By default Blogger will left align these ads so if you want to center the Adsense unit then use the

<div align='center'>


<b:section class='header' id='header' maxwidgets='3'>
<b:widget id='AdSense2' locked='false' title='' type='AdSense'>
<b:includable id='main'>
<div class='widget-content'>
<div align='center'><data:adCode/></div>
</div>


 
Friday, April 15, 2011
Numbered page navigation for blogger

Numbered page navigation for blogger

Here is a completely new and working script for Numbered Page Navigation (i.e. Panigation) for Blogger. The pagination widget for blogger make it simple for your visitor. Its a must have widget for any blogspot blogs.This new script allows you to add numbered page navigation to blogger/ blogspot blog with page numbers starting(1, 2, 3, 4 ….) like those of a book.


Instructions To Follow:
STEP 1
Log in to Blogger >go to>Design -> Edit HTML
and mark the tick box "Expand Widget Templates"

Now find  this code in the template:

</body>

And before it, paste this code:  



<script type='text/javascript'>
var home_page="/";
var urlactivepage=location.href;
var postperpage=7;
var numshowpage=4;
var upPageWord ='Prev';
var downPageWord ='Next';
</script>
<script src='http://sites.google.com/site/testsajasite/pagenav.js' type='text/javascript'></script>




Here you can change Prev and Next Text.



var postperpage=7;
var numshowpage=4;

Postperpage : How many Posts you want to show on one Page of blog.
Numshowpage : how Many number will show in Your page Navigation

Now find (CTRL+F) this code in the template
]]></b:skin>

paste this CSS Style Code to Your template Before It.


.showpageArea {
font-family:verdana,arial,helvetica;
color: #000;
font-size:11px;
margin:10px;
}

.showpageArea a {
color: #000;
text-shadow:0 1px 2px #fff;
font-weight: 700;
}

.showpageNum a {
padding: 3px 8px;
margin:0 4px;
text-decoration: none;
border:1px solid #919106;
-webkit-border-radius:3px;-moz-border-radius:3px;
background: #ddd url(https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEgogx4aDUy-FEQIpyAxwOF7Se6GpjzDscMTJKc4jSoO_JICuU3NgictYCN-pa5FiB_9J0eChOk0yLjOiKQZ8L0IFDA-PJ3gW8JMtBg8f6VIIkYXR98ljEgTtDW6gX7kVv8-Ksm-QPvpZ9EX/s1600/01.jpg) 0 -50px repeat-x;
}

.showpageNum a:hover {
border:1px solid #aeae0a;
background: #ccc url(https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEgogx4aDUy-FEQIpyAxwOF7Se6GpjzDscMTJKc4jSoO_JICuU3NgictYCN-pa5FiB_9J0eChOk0yLjOiKQZ8L0IFDA-PJ3gW8JMtBg8f6VIIkYXR98ljEgTtDW6gX7kVv8-Ksm-QPvpZ9EX/s1600/01.jpg) 0 -25px repeat-x;
}

.showpageOf{
margin:0 8px 0 0;
}

.showpagePoint {
color:#fff;
text-shadow:0 1px 2px #333;
padding: 3px 8px;
margin: 2px;
font-weight: 700;
-webkit-border-radius:3px;-moz-border-radius:3px;
border:1px solid #919106;
background: #666 url(https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEgogx4aDUy-FEQIpyAxwOF7Se6GpjzDscMTJKc4jSoO_JICuU3NgictYCN-pa5FiB_9J0eChOk0yLjOiKQZ8L0IFDA-PJ3gW8JMtBg8f6VIIkYXR98ljEgTtDW6gX7kVv8-Ksm-QPvpZ9EX/s1600/01.jpg) 0 0 repeat-x;
text-decoration: none;
} 



TO change the CSS Style of Navigation just replace the above code with anyone of the bellow codes




.showpageArea {
font-family:verdana,arial,helvetica;
color: #fff;
font-size:11px;
margin:10px;
padding:8px 20px;
background: #333;
}
.showpageArea a {
color: #fff;
}
.showpageNum a {
padding: 3px 8px;
margin:0 4px;
text-decoration: none;
background: #666;
}
.showpageNum a:hover {
background: #888;
}

.showpagePoint {
color:#fff;
padding: 3px 8px;
margin: 2px;
font-weight: 700;
background: #da6100;
text-decoration: none;
}

.showpageOf{
margin:0 8px 0 0;
}










.showpageArea {
font-family:verdana,arial,helvetica;
color: #000;
font-size:11px;
margin:10px;
}
.showpageArea a {
color: #fff;
}
.showpageNum a {
padding: 3px 8px;
margin:0 4px;
text-decoration: none;
background: #333 url(http://i879.photobucket.com/albums/ab351/bloggerblogimage/wp5.jpg) 0 -50px repeat-x;
}
.showpageNum a:hover {
background: #666 url(http://i879.photobucket.com/albums/ab351/bloggerblogimage/wp5.jpg) 0 -25px repeat-x;
}

.showpagePoint {
color:#fff;
padding: 3px 8px;
margin: 2px;
font-weight: 700;
background: #06a2b9 url(http://i879.photobucket.com/albums/ab351/bloggerblogimage/wp5.jpg) 0 0 repeat-x;
text-decoration: none;
}

.showpageOf{
margin:0 8px 0 0;
}





.showpageArea {
font-family:verdana,arial,helvetica;
color: #000;
font-size:11px;
margin:10px;
}
.showpageArea a {
color: #fff;
}
.showpageNum a {
padding: 3px 8px;
margin:0 4px;
text-decoration: none;
background: #363636 url(http://i879.photobucket.com/albums/ab351/bloggerblogimage/wp3.jpg) 0 -25px repeat-x;
}
.showpageNum a:hover {
background: #044697 url(http://i879.photobucket.com/albums/ab351/bloggerblogimage/wp3.jpg) 0 -50px repeat-x;
}

.showpagePoint {
color:#fff;
padding: 3px 8px;
margin: 2px;
font-weight: 700;
background: #e30000 url(whttp://i879.photobucket.com/albums/ab351/bloggerblogimage/wp3.jpg) 0 0 repeat-x;
text-decoration: none;
}

.showpageOf{
margin:0 8px 0 0;
}




Saturday, April 9, 2011
Remove or Hide Blogger Top Navbar in your Blogspot blog

Remove or Hide Blogger Top Navbar in your Blogspot blog

               Remove or Hide Blogger Top Navbar in your Blogspot blog
                                                          


                                                   Blogger Tricks






1.  Log in to your blogger account
2. Go to Layout >> Edit html
3. Then copy the below html -


#navbar {
height: 0px;
visibility: hidden;
display: none;
}



4. Paste the above code as shown in the below Picture -
       
  
Thats IT ,.............

Save the Template....




Read more:  of Blogger Tricks..

no image

Recent posts widget with thumbnails in blogger

                                    Blogger Tricks

  Recent posts widget with thumbnails in blogger



Here is the JavaScript code for recent posts widget with thumbnails in blogger. Many blogspot users want to display their recent posts in their blog with a beautiful thumbnail as it looks good to the visitors. Have a look at the preview of this widget at the right side of the post.
This widget is very flexible where you can change the number of posts, thumbnail photo size, widget width, font size, color of the post heading and more..  This is the simple widget for blogger and easy to install.


  • Sign into your Blogger dashboard
  • Go to Settings > Site Feed > Allow Blog Feeds > select Full and save
  • Go to Layout > Add a gadget > HTML/JavaScript
  • Now Go to BELOW JavaScript CODESelect all text copy and paste in new notpad in your computer
  • JavaScript Code:

    <script language="JavaScript">
    
    imgr = new Array();
    
    
    imgr[0] = "http://Add the Uploaded image URL";
    
    imgr[1] = "http://"Add the image URL;
    
    imgr[2] = "http://Add the image URl";
    
    imgr[3] = "http://Add the Image URL";
    
    imgr[4] = "http://Add the image url";
    showRandomImg = true;
    
    boxwidth = 160;
    
    cellspacing = 8;
    
    borderColor = "#000000";
    
    bgTD = "#000000";
    
    thumbwidth = 40;
    
    thumbheight = 40;
    
    fntsize = 12;
    
    acolor = "#ffffff";
    
    aBold = true;
    
    icon = " ";
    
    text = "comments";
    
    showPostDate = false;
    
    summaryPost = 40;
    
    summaryFontsize = 10;
    
    summaryColor = "#666";
    
    icon2 = " ";
    
    numposts = 5;
    
    home_page = "http://yourblog.blogspot.com/";
    
    </script>
    
    <script src="http://digitalgupshup.110mb.com/DigitalGupshup-blogger-thumbnail-widget.js" type="text/javascript"></script>
     
 Note Also Add the Uploaded image url of  the custom image u created. and Paste in 
 imgr[0] = "http://Add the Uploaded image URL"
 
eg:   imgr[0] = "http://i43.tinypic.com/orpg0m.jpg ";


Abbreviation list in the JavaScript Page (Change as per your requirement, or you can leave it as it default, but change the home_page compulsary):-
boxwidth= Width of the widget
cellspacing = Space between cells (Dont change this, default will be good)
borderColor = Border color of the widget
thumbwidth= Width of the image thumbnail
thumbheight = Height of the image thumbnail
fntsize = Font size of the post title
acolor = Color of the post title
aBold = if you want bold titles true otherwise false
numposts = Number of posts you want to display in widget
home_page = Remove http://yourblog.blogspot.com/ and write your blog address
  • Edit as per your requirement in notepad, then Copy Paste the whole code into HTML/JavaScript window and save it, That’s all..


no image

WAYS TO INCREASE BLOG TRAFFIC IN LESS THAN A WEEK:

WAYS TO DOUBLE  BLOG TRAFFIC IN LESS THAN A WEEK:
                         Blogger Tricks

Everyone want's traffic.So Here Describes A Few Methods To increase Blog Traffic .

1.SEARCH ENGINE:
it brings lots of traffic to your blog.There are millions of people search in the search engines like Google,Yahoo,msn everyday.So,if your blog has so many good posts and is well indexed by google,etc..you will get a good amount of traffic via search engines.There are a few steps to look at if you want a decent amount of traffic from the search engines like "submitting your blog sitemap to google",yahoo to index you blog pages very quickly.And the other important one is adding meta tags to your blog.If you follow these two simple steps,then you will get a decent traffic(massive traffic if your content is good).

2.Submitting your blog to Blog Directories:You may know this before,submitting your blog to blog directories will bring you a good traffic.


3.Participate in forums,groups,etc:Just go to google and enter your [major keyword + fourm] or [keyword+groups] and search.Suppose,your blog is about blogging,then search 'Blogging forum'.You will find some forums,groups related to your site.Register in the forums and post articles,etc with a link back to your blog(as a signature).Answer questions,clarify doubts and provide a link to your blog.But,Dont' SPAM.

4.Social Bookmarking:
Social Bookmarking is another way to build good traffic to your website/blog.If you don't know what Social Bookmarking is
"Social Bookmarking is a practise of saving Bookmarks,tagging the posts with keywords in a website".Bookmarking means saving a specific website url(address) in your browser that you wish to visit later.There are so many Social Bookmarking sites like del.icio.us,
One good thing about these Social bookmarking sites is,you will get instant traffic.Just register with them,store your bookmarks,tags,.. and you are done,See your site meter blasting with traffic.

5.Submit Articles to Article Directories:Submitting articles to article directories is another effective way to build more traffic.By submitting to them,your articles get massive exposure and gain you more traffic.
Some of the popular article directories are goarticles.com,ezinearticles.com,articlecity.com,etc.
There are hundreds of article directories,just google it.

6.Leaving Comments on other blogs:
Leaving comments with a link back to your blog is another good thing to do.Leaving comments in the related blogs is more useful and it also increases your pagerank.Always leave good comments and don't Spam(by placing links like'click here' like that).
Glitter Effect Mouse Pointer to your Blog

Glitter Effect Mouse Pointer to your Blog

                         Glitter Effect Mouse Pointer to your Blog 

                                                      Blogger Tricks


For This add the javascript code to your template but only within the head (<head></head>) tag.

The Head Tag


The head tag begins with this tag: <head> and ends with this tag: </head>. Go to Layout->Edit HTML

Locate for end head tag (</head>) and paste your javascript code above it, then save.


Code:

<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>




Read more: ..
no image

How To Create A Forum to Blogger For Free

                           How To Create A Forum to Blogger For Free

                                                        Blogger Tricks


Login to blogger and create a new static page on your blog, for a forum, for example see below -
http://yourblog.blogspot/p/forum.html
2. Now create a new forum for free at Nabble and copy the HTML code and paste it in a notepad.
3. Now Go to Blogger Dashboard >> Design >> Edit HTML and click Expand Widget Tempaltes.
4. Find (CTRL+F) the following code, in your template HTML code -

<div id=’content-wrapper’>
OR
<div class=’columns fauxcolumns’>


5. Now immediately after one of the above code, copy and paste the following code -
<b:if cond=’data:blog.url == &quot;http://yourblog.blogspot/p/forum.html&quot;’>
PASTE_CODE_FROM_NABBLE_HERE
</b:if>
6. Now replace PASTE_CODE_FROM_NABBLE_HERE with code you copied from Nabble (saved in notepad)
7. Save your template and find the following -
</head>
8. Immediately after above code, paste the following code:
<b:if cond=’data:blog.url == &quot;http://yourblog.blogspot/p/forum.html&quot;’>
<style type=’text/css’>
#content-wrapper {
display:none !important;
}
.columns, .fauxcolumns {
display:none !important;
}
</style>
</b:if>
9. Don’t forget to change http://yourblog.blogspot/p/forum.html to your blog forum address in all above codes.



Breaking News
Loading...
Quick Message
Press Esc to close
Copyright © 2013 Crack o Hack & tweak STORE All Right Reserved