What content isn't being shown? I looked in the source and I didn't see any content to speak of, besides the links which is showing up fine in Mozilla Firefox.
In the head, you are calling an external js file:
<script type="text/javascript" src="includes/script.js"></script>
This one doesn't exist, so your server "substitutes" it with a 404 page. The source code of this file looks like this:
<!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML 2.0//EN">
<html><head>
<title>404 Not Found</title>
</head><body>
<h1>Not Found</h1>
The requested URL /2004/includes/script.js was not found on this server.<p>
<hr>
<address>Apache/1.3.27 Server at www.visionclient.ca Port 80</address>
</body></html>
This is the resulting error displayed in Mozilla's javascript console:
--------------
Error: syntax error
Source File: http://acces.visionclient.ca/2004/includes/script.js
Line: 1
Source Code:
<!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML 2.0//EN">
--------------
It seems, NS stops loading the page because of that (it tries reading a js file [which isn't one] and finds a tag inside, which is not permitted). In your posts you did not mention that you are missing something on the page itself. So just try deleting or commenting out the above mentioned script tag...
Cheers - Pit
The perfect website, which isn't one: http://www.pit-r.de (completely re-designed)
Bad news for many "important" members here: I am still alive.
Ok so... if i put a overflow: auto; instead of overflow: hidden;, i finally can see my page in NN but the problem is that it's put a scrollbar in my div when i see my page in Moz??
Bookmarks