Quote:
Originally Posted by germinus
Think I will wait for some proper install instructions!
|
this will help you.
choose the skin you want this showing and,
Insert this bottom of the header template:
Code:
<script type="text/javascript">
<!-- Begin
var startTime=new Date();
function currentTime(){
var a=Math.floor((new Date()-startTime)/100)/10;
if (a%1==0) a+=".0";
document.getElementById("endTime").innerHTML=a;
}
window.onload=function(){
clearTimeout(loopTime);
}
// End -->
</script>
Ive Inserted this bit of code on the next line below the vb time code in footer template as i wanted it to show below the time but you can add it where you chose:
Code:
<div class="smallfont" align="center"><b><script type="text/javascript">
<!-- Begin
document.write('This Page took <span id="endTime">0.0</span> seconds to load.');
var loopTime=setInterval("currentTime()",100);
// End -->
</script>
</b>
<br />