this is a amazing tool for your blog beauty you use a multiple images to your blog header this trick change your header image every reload amazing
How to Change Your Blog Header Image on reload
Go to blogger account
Go to template>edit HTML
Click inside and Type CTRL+F
]]></b:skin>
And following this code before it
#header {
background: url("your header image url in quotes") no-repeat left bottom;
margin:0;
padding:2px;
}
And Copy this code and paste above </head> Tag
Go to template>edit HTML
Click inside and Type CTRL+F
]]></b:skin>
And following this code before it
#header {
background: url("your header image url in quotes") no-repeat left bottom;
margin:0;
padding:2px;
}
And Copy this code and paste above </head> Tag
<script type="text/javascript"> var banner= new Array(); banner[0]="1st image url"; banner[1]="2nd image url"; banner[2]="3rd image url"; banner[3]="4th image url"; banner[4]="5th image url"; var random=Math.round(4*Math.random()); document.write("<style>"); document.write("#header {"); document.write(' background:url("' + banner[random] + '") no-repeat left TOP;'); document.write(" }"); document.write("</style>"); </script>