View Full Version : Top Left Corner Timer
Londoner
03-30-2007, 12:15 PM
Greetings.
I got the script of top left corner timer and put it on the main page of my site 2thrive.co.uk with a bit of modification to put the timer on the top middle page. The timer works perfectly when I open the back up page on my computer. But the one loaded on the server doesn't show the timer. The timer is on the date counter. On the site it doesn't appear but leaves an empty space on the top of date counter. I appreciate any help.
Regards and best wishes to every one.
jscheuer1
03-30-2007, 12:58 PM
I see the timer:
8:57:38 AM
in FF, Opera and IE. Perhaps you forgot to refresh the live page. In any case, fix these:
Error: Unknown property 'middle'. Declaration dropped.
Source File: http://2thrive.co.uk/
Line: 0
Error: SymRealWinOpen is not defined
Source File: http://2thrive.co.uk/
Line: 297
That 'Line 0' for the first one means that it is in a script somewhere. It should probably be changed to 'center' or not used at all. The second is a call of some sort to SymRealWinOpen. Since that doesn't exist, just remove the whole code:
<script language="JavaScript">
<!--
var SymRealOnLoad;
var SymRealOnUnload;
function SymOnUnload()
{
window.open = SymWinOpen;
if(SymRealOnUnload != null)
SymRealOnUnload();
}
function SymOnLoad()
{
if(SymRealOnLoad != null)
SymRealOnLoad();
window.open = SymRealWinOpen;
SymRealOnUnload = window.onunload;
window.onunload = SymOnUnload;
}
SymRealOnLoad = window.onload;
window.onload = SymOnLoad;
//-->
</script>
Londoner
03-30-2007, 01:50 PM
Many thanks for your kind reply.
I will revise every thing. It is interesting, why the timer doesn't show on my computer!!!
I see the timer:
in FF, Opera and IE. Perhaps you forgot to refresh the live page. In any case, fix these:
That 'Line 0' for the first one means that it is in a script somewhere. It should probably be changed to 'center' or not used at all. The second is a call of some sort to SymRealWinOpen. Since that doesn't exist, just remove the whole code:
<script language="JavaScript">
<!--
var SymRealOnLoad;
var SymRealOnUnload;
function SymOnUnload()
{
window.open = SymWinOpen;
if(SymRealOnUnload != null)
SymRealOnUnload();
}
function SymOnLoad()
{
if(SymRealOnLoad != null)
SymRealOnLoad();
window.open = SymRealWinOpen;
SymRealOnUnload = window.onunload;
window.onunload = SymOnUnload;
}
SymRealOnLoad = window.onload;
window.onload = SymOnLoad;
//-->
</script>
Powered by vBulletin® Version 4.2.2 Copyright © 2021 vBulletin Solutions, Inc. All rights reserved.