RE: AHHHHHHHH Netscape HTML Question

2001-09-25 Thread Peter Tilbrook
Netscape is VERY fussy about tables - which is good (and a reason why you should test sites under different browsers wherever possible). Of course it has (NS) other features that frustrate also. ~~ Your ad could be here. Monies from ads go to

RE: AHHHHHHHH Netscape HTML Question

2001-09-24 Thread Steven Dworman
Works for me in netscape 4.7. what version of 4 are you using? Steven D Dworman - Web Consultant Systems Administrator ComSpec International - http://www.comspec-intnl.com phone: 248.647.8841 cell: 734.972.9676

RE: AHHHHHHHH Netscape HTML Question

2001-09-24 Thread Alex Santantonio
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

RE: AHHHHHHHH Netscape HTML Question

2001-09-24 Thread Robert Everland
4.77 Robert Everland III Dixon Ticonderoga Web Developer Extraordinaire -Original Message- From: Steven Dworman [mailto:[EMAIL PROTECTED]] Sent: Monday, September 24, 2001 2:16 PM To: CF-Talk Subject: RE: A Netscape HTML Question Works for me in netscape 4.7. what version

Re: AHHHHHHHH Netscape HTML Question

2001-09-24 Thread Todd Ashworth
/tr tr td width=4nbsp;/td table width=616 tr td width=616 colspan=2 nowrap --- snip --- Right here, you are opening a new table in the middle of nothing. If I remember, Netscape has issues with malformed tables. Todd - Original Message - From: Robert Everland [EMAIL PROTECTED] To:

Re: AHHHHHHHH Netscape HTML Question

2001-09-24 Thread Kamie Curfman
In this section of code: tr td width=4nbsp;/td table width=616 tr td width=616 colspan=2 nowrap Test /td /tr /table /td /tr you're closing your td at the top and then closing another td that

RE: AHHHHHHHH Netscape HTML Question

2001-09-24 Thread Kelly Matthews
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: A Netscape HTML Question You are missing a TD COLSPAN=2 on line 31 just before you are opening your 3rd

RE: AHHHHHHHH Netscape HTML Question

2001-09-24 Thread Steven Dworman
, 2001 2:18 PM To: CF-Talk Subject: RE: A 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

Re: AHHHHHHHH Netscape HTML Question

2001-09-24 Thread John Paitel
Your first Bob line and the third blank line in the nested table are missing colspan=3 in the TD tags. What works for me is to set each table to a different width and border color. That way you can see what cells are in each table, where they are laid out, and any missing columns, etc. John

RE: AHHHHHHHH Netscape HTML Question

2001-09-24 Thread Alex Santantonio
work. Alex -Original Message- From: Kelly Matthews [mailto:[EMAIL PROTECTED]] Sent: Monday, September 24, 2001 2:28 PM To: CF-Talk Subject: RE: A Netscape HTML Question Acutally he juts had an extra /td -Original Message- From: Alex Santantonio [mailto:[EMAIL PROTECTED

Re: AHHHHHHHH Netscape HTML Question

2001-09-24 Thread Bud
I commented the mistakes I see and got rid of the tab formatting so it doesn't all wrap. table border=1 cellpadding=0 cellspacing=0 tr valign=top td width=145nbsp;/td td table width=620 border=1 cellspacing=0 cellpadding=0 tr valign=top tdBob/td --- Make this colspan=3 or add 2 more cells to