Help Us To Improve, We Need Your COMMENTS

    read more
    Showing posts with label Blogger Tricks. Show all posts
    Showing posts with label Blogger Tricks. Show all posts
    This will help other bloggers to follow your blogspot blog easily.To add it under your blog post, follow the steps below.

    1.Log in to your dashboard--> layout- -> Edit HTML

    2.Click on "Expand Widget Templates"

    3.Scroll down to where you see this:

    Follow-This-Blog
    <data:post.body/>


    4.Copy below code and paste it just after the line <data:post.body/> .

    <p><a href="http://www.blogger.com/follow-blog.g?blogID=YOUR-BLOG-ID" target="_blank">Follow This Blog !!!</a></p>


    NOTE:Replace YOUR-BLOG-ID with your real blogger blog ID.

    Your-Blog-ID

    NOTE - You can Find Your Blog ID on Dashboard

    Look at the example below.

    <p><a href="http://www.blogger.com/follow-blog.g?blogID=662688741973415715" target="_blank">Follow This Blog !!!</a></p>

    Your final result will look like this:

    Follow This Blog !!!


    5.Click on "Save Templates" and now you are done.

    Posted on : | By : Er. Ankita Dhiman | In : ,

    0

    If your Blog has lot of long posts, adding a cool flying 'Scroll to Top' link makes it easier for your visitors to quickly navigate your pages.
    Most of you have already known about how to add 'scroll to top' by adding simple '#top' to your links. But, this one uses Jquery which makes it really smooth ( you really like it for sure).
    So, lets learn how to add it to your Blogger blog..

    1. Go to Layout » Edit html
    Find

    </body>
      Add before
    <a href="#" id="backtotop">^ Scroll to Top</a>

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

    <script type='text/javascript'>

    /*-----------------------

    *Scroll to top


    -----------------------*/



    $(function(){$.fn.scrollToTop=function(){$(this).hide().removeAttr("href");if($(window).scrollTop()!="0"){$(this).fadeIn("slow")}var scrollDiv=$(this);$(window).scroll(function(){if($(window).scrollTop()=="0"){$(scrollDiv).fadeOut("slow")}else{$(scrollDiv).fadeIn("slow")}});$(this).click(function(){$("html, body").animate({scrollTop:0},"slow")})}});



    $(function() {

    $("#toTop").scrollToTop();

    });

    </script>
    <!-- www.RapidGadgets.blogspot.com -->

    2. Find
    ]]></b:skin> 
     Add before
     #backtotop { width:100px;background:#F4FFBF;border:1px solid #ccc;text-align:center;padding:5px;position:fixed;bottom:10px;right:10px;cursor:pointer;color:#666;text-decoration:none; }

    3. Save the changes!

    Posted on : | By : Er. Ankita Dhiman | In : ,

    0

    Adding the "Email me" link to your blog/webpage is very helpful for the visitors who want to contact you.It increases the interactivity between the visitors and your site and make them come regularly.

    Hi Kranthi! I will write the email address directly like abc@gmail.com and ask visitors to contact me.So,why to add these clickable links like"Email me" ?
    There are plenty of problems if you show your email address directly on your site as SPAMMERS find your email address easily via search engines,and other sources.
    So,by adding this type of links will hide your email address and If your visitors want to contact you,they will click on it.If the visior want to sent to you via another source like yahoo,google,etc they will simply copy the email address(in the outlook express) and email you.
    On clicking the links,WINDOWS OUTLOOK EXPRESS will be open by default.
    So,how to add the "Email me" link?
    There are two types of ways to do it.One is text link and another one is image link.

    Text Link:
    Suppose,your email id is abc@gmail.com ,here is the code you have to add

    Email me


    Don't forget to change the email address in the above code to your's.If you want another anchor text(not "Email me"),you can change it.
    Image link:
    Suppose,if you want the visitors to email you by clicking on an image like the below one

    Email me
    First you have to upload your picture to some image hosting services.They will give a direct link for the uploaded image.Take a note of it.
    In this example, the direct link for the uploaded image is http://i219.photobucket.com/albums/cc286/7kranthiswaroop/thenvelope.gif and your email address is some abc@gmail.com ,the code you have to add is
    Email me


    Where to paste this code in your blogger(blogspot) blog?
    Sign into your blogger dashboard>layout>add a page element>html/javascript and Paste the code and save the changes.
    That's it!

    Posted on : | By : Er. Ankita Dhiman | In :

    0

    One way backlinks are very critical to any website success. The more one way backlinks pointing to your site, the more your Google Pagerank and the more amount of traffic you will get. This should also increase your sales,etc.
    But the thing is.. getting the right and quality one way backlinks from high pagerank sites is not an easy task, and in this article, we'll find out some of the best ways to get free one way backlinks:

    1. Try to write as much quality content as you can... that will encourage the readers to link to your site. The more useful, informative content you post, the more likely people are to link it. But, this method can take a while to really pay off because like all the new websites, you don't get much traffic.

    2. Write quality articles and submit them to top article directories like ezinearticles and goarticles. The advantage in this is, you'll not only get a backlink from high pagerank directories, but also you'll find that your articles are used on other people's sites with a backlink to your site.

    3. Participate in forums,discussion boards that are related to your website's niche and add a link to your site in the signature. Make sure that you write quality posts, don't spam. This will also help you get some decent traffic to your site.

    4. There is absolutely nothing wrong to get a backlink from a related blog post you decide to comment on. This is one of the effective way of one way link building especially if you comment often on blogs. Comment on blogs related to your niche with a link back to your site as your signature.. and Again, make sure you never spam.

    5. Submit your site link to major, well known web directories. Getting listed in directories related to your site not only bring you tons of targetted traffic, but will also improve your search engine rankings. Some of the popular directories to get listed in are DMOZ directory and Yahoo directory. You can submit your link to both paid and free directories and they worth your time.

    Posted on : | By : Er. Ankita Dhiman | In :

    0

    This post explains how to disable right click on blogger(blogspot) or any other webpage using a html(javascript) code.
    It is so annoying if someone copies(thefts) your blog posts,articles,images and another kind of information owned by you saying that they are the original owners of the content.
    But,I think 'disabling right click' is not the right solution for that.
    Most people come to your site to read information and very small percentage of people come to your site to steal your work,images,etc.So,most people feel it insulting and I think it's very unprofessional thing to do

    If you want to protect your images,my suggestion is to add a Watermark(logo) of your sitename,or your name on the images,pictures,etc.
    Note:Using this javascript code,you only disable the right click by warning the visitors that the content is copyrighted.
    <SCRIPT language=JavaScript>
    <!-- www.RapidGadgets.blogspot.com -->
        var message = "function disabled";
        function rtclickcheck(keyp){ if (navigator.appName == "Netscape" && keyp.which == 3){     alert(message); return false; }
        if (navigator.appVersion.indexOf("MSIE") != -1 && event.button == 2) {     alert(message);     return false; } }
        document.onmousedown = rtclickcheck;
    </SCRIPT>
    Where to paste it in blogger ?
    Sign in to your blogger dashboad>layout>Add a Pageelement>html/javascript(look at the screenshot below)
    and paste the below javascript code and Save the changes.

    How it works?
    If you right click on the webpage,a message will pop up on screen saying "function disabled".If you want to change the message to you own one like "sorry....the work is copyrighted" or something like that,replace the "funtion disabled" text with your own message in the Javascript code.

    Posted on : | By : Er. Ankita Dhiman | In :

    0

    Followers