Click to See Complete Forum and Search --> : html website not working on Netscape
MOsman
02-08-2005, 07:02 AM
My team has built a website using HTML and XML. It works perfectly on IE, Mozilla and Netscape on the Windows Platform.
When we use the Linux platform the website works on Mozilla, but not on Netscape.
help!
Robert Wellock
02-08-2005, 07:10 AM
Netscape what? 4.xx. A code sample or URI would help.
MOsman
02-09-2005, 06:43 AM
Hi, this is the code. The exact same code works fine in Netscape 7.2 (as well as IE) on the Windows platform, bt does not work on Netscape (Netscape Communicator browser) on Linux. Only 3 lines of text appear (from the last 8 lines of the code). Would appreciate any help.
<html>
<head>
<title>Group 01 Management</title>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
<link rel="stylesheet" type="text/css" href="external.css" />
</head>
<body>
<div id="links">
<div id="tabledesign">
<table>
<tr>
<td bgcolor="#0066FF" align="center" colspan='6'>HOME </td>
</tr>
<tr>
<td bgcolor="#0033FF" align="center"><a href="req.html">REQUIREMENTS</a> </td>
<td bgcolor="#0033FF" align="center"><a href="cons.html">CONSTRAINTS</a> </td>
<td bgcolor="#0033FF" align="center"><a href="plan.html">PLAN</a> </td>
<td bgcolor="#0033FF" align="center"><a href="issues.html">ISSUES</a> </td>
<td bgcolor="#0033FF" align="center"><a href="risks.html">RISKS</a> </td>
</tr>
<tr>
<td bgcolor="#0000FF" align="center"><a href="reports.html">REPORTS</a> </td>
<td bgcolor="#0000FF" align="center"><a href="contact.html">CONTACT US</a> </td>
<td bgcolor="#0000FF" align="center" colspan='2'><a href="meetings.html">MEETINGS</a> </td>
<td bgcolor="#0000FF" align="center"><a href="members.html">MEMBERS</a> </td>
</tr>
<tr>
<td bgcolor="#0033CC" align="center" colspan='2'><a href="sitemap.html">SITE MAP</a></td>
<td bgcolor="#0033CC" align="center" colspan='3'><a href="tsw.html">TIMETABLE SYSTEM</a></td>
</tr>
</table>
</div>
</div>
<div id="mission">
<p>"Our aim is to harness information technology, for the benefit of the Loughborough Timetablers"</p>
</div>
<div id="y">
<p> - Group 01 Management -</p>
</div>
</body>
</html>
phpnovice
02-09-2005, 08:33 AM
Since I don't see a DOCTYPE, perhaps the Linux version of Netscape is more picky about requiring you to provide one?
also mismatch of colspan, 5 and 6 columns
phpnovice
02-09-2005, 09:43 AM
Good catch -- without a WYSIWYG editor, I tend to miss such things. ;)