Log in

View Full Version : Beginners question



Zanezeroqwe
12-28-2013, 02:01 AM
Hey there, I created part of a page and when I view it in chrome I see the correct version, this: http://zanezeroqwe.com/images/help/localtimework.png
But when I open the same thing in seamonkey or firefox I see this: http://zanezeroqwe.com/images/help/localtimenotwork.png

The "Your Local Time" is an image, the time is javascript, and the area the time is in is another image. Does anyone know a fix for this? Really annoyin me :/

jscheuer1
12-28-2013, 02:26 AM
On zanezeroqwe.com/whatsnewpage/index.html, add/change the highlighted as shown:


<div style="background-image: url(http://www.zanezeroqwe.com/whatsnewpage/bgz.png); height: 43px;" id="content"><!-- After AJAX loads the stuff that goes here -->
<div style="height: 20px;">&nbsp;</div>
<script language="javascript" src="http://www.zanezeroqwe.com/whatsnewpage/liveclock.js">

Start the page with a standards invoking DOCTYPE:


<!DOCTYPE html>
<head>
<link rel="stylesheet" type="text/css" href="news.css">
<base href="http://zanezeroqwe.com/news/websitestyle/" target="_parent">
</head>


<body onLoad="show_clock()">
<center>
<img src="http://www.

And in the script (zanezeroqwe.com/whatsnewpage/liveclock.js), add the highlighted:


// Both "Advanced" and "Lite" versions are available free
// of charge, see the website for more information on the
// two scripts.
///////////////////////////////////////////////////////////

var myfont_face = "Arial";
var myfont_size = "9";
var myfont_color = "#868686";
var myback_color = "";
var mywidth = 80;
var my12_hour = 1;

var dn = ""; var old = "";

if (document.all||document.getElementById) { document.w

The browser cache may need to be cleared and/or the page refreshed to see changes.