Results 1 to 2 of 2

Thread: Beginners question

  1. #1
    Join Date
    Nov 2013
    Posts
    2
    Thanks
    0
    Thanked 0 Times in 0 Posts

    Default Beginners question

    Hey there, I created part of a page and when I view it in chrome I see the correct version, this:
    But when I open the same thing in seamonkey or firefox I see this:

    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 :/

  2. #2
    Join Date
    Mar 2005
    Location
    SE PA USA
    Posts
    30,495
    Thanks
    82
    Thanked 3,449 Times in 3,410 Posts
    Blog Entries
    12

    Default

    On zanezeroqwe.com/whatsnewpage/index.html, add/change the highlighted as shown:

    Code:
    <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:

    Code:
    <!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:

    Code:
    // 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.
    Last edited by jscheuer1; 12-28-2013 at 04:18 PM. Reason: Think I found the page
    - John
    ________________________

    Show Additional Thanks: International Rescue Committee - Donate or: The Ocean Conservancy - Donate or: PayPal - Donate

Similar Threads

  1. Beginners Question- Pixelating Slideshow Script
    By citizen5 in forum Dynamic Drive scripts help
    Replies: 2
    Last Post: 04-30-2011, 09:29 PM
  2. css beginners first question
    By linux1880 in forum CSS
    Replies: 8
    Last Post: 11-06-2008, 09:25 AM
  3. beginners java questions[3chapters first]
    By leonidassavvides in forum Java
    Replies: 1
    Last Post: 09-14-2008, 09:31 PM
  4. Beginners question - Quicklink?
    By trana in forum JavaScript
    Replies: 2
    Last Post: 02-06-2006, 11:10 PM
  5. Beginners question - Quicklink?
    By trana in forum Dynamic Drive scripts help
    Replies: 0
    Last Post: 02-06-2006, 06:10 PM

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •