August 13, 2011

How To Add Dancing Category Link to Blogger / Using Jquery

How To Add Dancing Category Link to Blogger / Using Jquery



1.Log in to your dashboard--> Desing- -> 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

<!--  Dancing Category Link For Blogger by bloggertricksandtoolz.com-->
<script src='http://ajax.googleapis.com/ajax/libs/jquery/1.5.1/jquery.min.js' type='text/javascript'>
</script>
<script type='text/javascript'>
    var dur = 400; // Duration Of Animation in Milli Seconds
    $(document).ready(function() {
        $('a.linknudge, .Label ul li a').hover(function() {
            $(this).animate({
                paddingLeft: '25px'
            }, dur);
        }, function() {
            $(this).animate({
                paddingLeft: 0
            }, dur);
        });
    }); // end of Jquery Script</script>
<!--  Dancing Category Link For Blogger bloggertricksandtoolz.com-->

5. Now click on ''Save template''. you are done.

Cheers.!

No comments:

Post a Comment