Actually...look at line 29.  you're trying to put a table inside a <td> but
you closed the <td> before created the table.


Steven D Dworman
-------------------------------------------------------------------------
Web Consultant
Systems Administrator

ComSpec International - http://www.comspec-intnl.com
phone: 248.647.8841
cell:  734.972.9676
-------------------------------------------------------------------------
EMPOWER-XL ***Software for Higher Education***
http://www.empower-xl.com
-----Original Message-----
From: Alex Santantonio [mailto:[EMAIL PROTECTED]]
Sent: Monday, September 24, 2001 2:18 PM
To: CF-Talk
Subject: RE: AHHHHHHHH Netscape HTML Question

You are missing a <TD COLSPAN=2> on line 31 just before you are opening
your 3rd nested table.  You have a lot of nested tables that are
unnecessary, and I don't think with your current layout it will do quite
what you are intending.  Try this instead.

<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">

<html>
<head>
        <title>Untitled</title>
</head>

<body marginheight="0" marginwidth="0" topmargin="0" leftmargin="0"
bgcolor="#FFFFFF" text="#000000">


<table border="1" cellpadding="0" cellspacing="0">
        <tr valign="top">
                <td width="145">&nbsp;</td>
                <td>
                        <table width="620" border="1" cellspacing="0"
cellpadding="0">
                                <tr>
                                        <td colspan="4">Bob</td>
                                </tr>
                                <tr>
                                        <td width="4">&nbsp;</td>
                                        <td width="6">&nbsp;</td>
                                        <td width="400"
valign="bottom">Bob</td>
                                        <td width="210"
align="right">&nbsp;</td>
                                </tr>
                                <tr>
                                        <td>&nbsp;</td>
                                        <td colspan="3">Test</td>
                                </tr>
                        </table>
                </td>
        </tr>
</table>


</body>
</html>

-----Original Message-----
From: Robert Everland [mailto:[EMAIL PROTECTED]]
Sent: Monday, September 24, 2001 2:02 PM
To: CF-Talk
Subject: AHHHHHHHH Netscape HTML Question

This @#$^@ HTML will work in everything but Netscape 4 and my eyes hurt from
going over and over and over and over again trying to see something.
Hopefully a new set of eyes will find it.

<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">

<html>
<head>
        <title>Untitled</title>
</head>

<body marginheight="0" marginwidth="0" topmargin="0" leftmargin="0"
bgcolor="#FFFFFF" text="#000000">


<table border="1" cellpadding="0" cellspacing="0">
        <tr valign="top">
                <td width="145">&nbsp;</td>
                <td>
                        <table width="620" border="1" cellspacing="0"
cellpadding="0">
                                <tr valign="top">
                                        <td>
                                                Bob
                                        </td>
                                </tr>
                                <tr valign="bottom">
                                        <td width="10">&nbsp;</td>
                                        <td width="400">
                                                Bob
                                        </td>
                                        <td width="210"
align="right">&nbsp;</td>
                                </tr>
                                <tr>
                                        <td width="4">&nbsp;</td>
                                                <table width="616">
                                                        <tr>
                                                                <td
width="616" colspan="2" nowrap>
                                                                        Test
                                                                </td>
                                                        </tr>
                                                </table>
                                        </td>
                                </tr>
                        </table>
                </td>
        </tr>
</table>


</body>
</html>


Robert Everland III
Dixon Ticonderoga


~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists

Reply via email to