6 of one, half dozen of another.  Actually, I think he is just forgetting to
open the new table cell after closing the initial one for that row, also, he
is defining the width as 4 but that doesn't make much sense since the
corresponding table cell above this one is 10 pixels and that just won't
work.

Alex

-----Original Message-----
From: Kelly Matthews [mailto:[EMAIL PROTECTED]]
Sent: Monday, September 24, 2001 2:28 PM
To: CF-Talk
Subject: RE: AHHHHHHHH Netscape HTML Question

Acutally he juts had an extra </td>

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



~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
Your ad could be here. Monies from ads go to support these lists and provide more 
resources for the community. http://www.fusionauthority.com/ads.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