How to add widget Back to Top in blog

How to add widget Back to Top in blog
I am sure you often see blog with this widget, that is Back to Top widget. I think this widget not very important because according me, blog should not need this widget.  Main fungction from this widget is if you click widget back to top so automatically display screen will soon be heading to the top.

How to add widget Back to Top in blog
Here is how to add widget Back to Top
1. Log in to your blogger account > Dashboard > Template > Edit HTML
2. Find this code ]]></b:skin>
3. Add the following code just above the code ]]></b:skin>

<br />
<br />
#backtotop {<br />
padding:5px;<br />
position:fixed;<br />
bottom:10px;right:10px;<br />
cursor:pointer;<br />
}   <br />
<br />
4.  Then find the code </body> then add the following code

<br />
<a href="#" id="backtotop"><img alt="back to top"  src="<span style="color: red;">http://julak-project.googlecode.com/files/back%20to%20top.png</span>"  /></a>
5.  Then find code </head>
6. Add the back to top javascript code below before </head>

<br />
<b><span style="color: red;"><script src='http://ajax.googleapis.com/ajax/libs/jquery/1.3/jquery.min.js'</span></b>
type='text/javascript'></script><br />
<script language="javascript">
$(window).ready(function(){
$('#backtotop').click(function(e){
e.preventDefault();
$('html, body').animate({scrollTop:0}, 'slow');
});
});</script>
7. Click preview, if it's work and not error, save the template.

  • Look at http://julak-project.googlecode.com/files/back%20to%20top.png That is url to store the image "Back to Top". I recommend if you want to use this widget please hosting itself in google code.



How to make archive be scrolled on blogspot

How to make archieve be scroll on blogspot
Archive widget very helpful everyone who visit your blog or websites. I think everyone need have a neat blog, and one of the way is add scroll to archive widget.  I'm sure if you blog archives with scroll it will look good. 
How to make archive be scrolled on blogspot


1. Log in to your blogger account
2. Click CTRL + F and find this word type='BlogArchive'
3. Then look at the code below, it will be look like this
<b:includable id='main'>
<b:if cond='data:title'>
<h2><data:title/></h2>
</b:if>
<div class='widget-content'><div id='ArchiveList'>

4. Then add the following code style = 'overflow: auto; height: 200px' before the green code
then it will be like this
<b:includable id='main'>
<b:if cond='data:title'>
<h2><data:title/></h2>
</b:if>
<div class='widget-content' style='overflow:auto; height:200px'<div id='ArchiveList'>

* Numbers 200 on style='overflow:auto; height:200px' show the height scrolled, you can change it accordance with your wishes.
May be useful.