Re: HTML / CF issue

2002-03-20 Thread Trevor Boult

I tend to use a two colour gif as a background image in the table to get
round this.

Trevor

- Original Message -
From: Tangorre, Michael T. [EMAIL PROTECTED]
To: CF-Talk [EMAIL PROTECTED]
Sent: Wednesday, March 20, 2002 11:59 AM
Subject: HTML / CF issue


 Hi everyone.
 This should be an easy fix but I have not run into this in a long time. I
 have a table in which I put a border around it using a top row with a
height
 of 1 pixel and a bottom row of a 1 pixel and two side columns with a width
 of  pixel.. Is there a way to get this to work in netscape 4+? It seems
that
 no matter what kind of content that fills the main cells, it pulls the
 border wider than 1 pixel. It works fine in IE of course. Would it help
to
 put a layer inside the table cell?

 Thanks,

 Michael T. Tangorre

 ==
 Alfred University
 Webteam Manager
 AIM: CrazyFlash4
 Phone: 607-426-9277
 ==
 
__
Get the mailserver that powers this list at http://www.coolfusion.com
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



Re: HTML / CF issue

2002-03-20 Thread Owen Munton

Make sure you are using cellpadding=0 cellspacing=0 in
your table tag.

Thanks,

Owen
--- Trevor Boult [EMAIL PROTECTED] wrote:
 I tend to use a two colour gif as a background image
 in the table to get
 round this.
 
 Trevor
 
 - Original Message -
 From: Tangorre, Michael T. [EMAIL PROTECTED]
 To: CF-Talk [EMAIL PROTECTED]
 Sent: Wednesday, March 20, 2002 11:59 AM
 Subject: HTML / CF issue
 
 
  Hi everyone.
  This should be an easy fix but I have not run into
 this in a long time. I
  have a table in which I put a border around it
 using a top row with a
 height
  of 1 pixel and a bottom row of a 1 pixel and two
 side columns with a width
  of  pixel.. Is there a way to get this to work in
 netscape 4+? It seems
 that
  no matter what kind of content that fills the main
 cells, it pulls the
  border wider than 1 pixel. It works fine in IE
 of course. Would it help
 to
  put a layer inside the table cell?
 
  Thanks,
 
  Michael T. Tangorre
 
  ==
  Alfred University
  Webteam Manager
  AIM: CrazyFlash4
  Phone: 607-426-9277
  ==
  


__
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



RE: HTML / CF issue

2002-03-20 Thread Albrechtas, Adam

Have you tried making the body of the table (ie the td between the left
and right border) at width=100%?

Adam.

-Original Message-
From: Tangorre, Michael T. [mailto:[EMAIL PROTECTED]] 
Sent: Wednesday, March 20, 2002 6:59 AM
To: CF-Talk
Subject: HTML / CF issue


Hi everyone.
This should be an easy fix but I have not run into this in a long time. I
have a table in which I put a border around it using a top row with a height
of 1 pixel and a bottom row of a 1 pixel and two side columns with a width
of  pixel.. Is there a way to get this to work in netscape 4+? It seems that
no matter what kind of content that fills the main cells, it pulls the
border wider than 1 pixel. It works fine in IE of course. Would it help to
put a layer inside the table cell?

Thanks,

Michael T. Tangorre

==
Alfred University
Webteam Manager 
AIM: CrazyFlash4
Phone: 607-426-9277
==

__
Get the mailserver that powers this list at http://www.coolfusion.com
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



Re: HTML / CF issue

2002-03-20 Thread Douglas Brown

Michael,


Why not just nest a table?

Table with just an outside border

TABLE BORDER=0 CELLSPACING=1 CELLPADDING=1 ALIGN=center
 TR BGCOLOR=navy
  TD
   TABLE BORDER=0 CELLPADDING=5 CELLSPACING=0
TR
 TD BGCOLOR=#FF/TD
 /TD
/TR
   /TABLE
  /TD
 /TR
/TABLE

Table with each cell bordered

TABLE WIDTH=90% BORDER=0 CELLPADDING=0 CELLSPACING=1 ALIGN=CENTER
 TR
  TD BGCOLOR=navy
  TABLE WIDTH=100% CELLPADDING=2 CELLSPACING=1 BORDER=0 ALIGN=CENTER
   TR
TD BGCOLOR=#FF/TD
   /TR
  /TABLE
  /TD
 /TR
/TABLE

Success is a journey, not a destination!!



Doug Brown
- Original Message - 
From: Tangorre, Michael T. [EMAIL PROTECTED]
To: CF-Talk [EMAIL PROTECTED]
Sent: Wednesday, March 20, 2002 3:59 AM
Subject: HTML / CF issue


 Hi everyone.
 This should be an easy fix but I have not run into this in a long time. I
 have a table in which I put a border around it using a top row with a height
 of 1 pixel and a bottom row of a 1 pixel and two side columns with a width
 of  pixel.. Is there a way to get this to work in netscape 4+? It seems that
 no matter what kind of content that fills the main cells, it pulls the
 border wider than 1 pixel. It works fine in IE of course. Would it help to
 put a layer inside the table cell?
 
 Thanks,
 
 Michael T. Tangorre
 
 ==
 Alfred University
 Webteam Manager 
 AIM: CrazyFlash4
 Phone: 607-426-9277
 ==
 
__
Get the mailserver that powers this list at http://www.coolfusion.com
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



Re: HTML / CF issue

2002-03-20 Thread Scott Van Vliet

I have had simliar issues in NN, and here's what I found:

First, Netscape will not allow a nested table to have a background color if
its parent table has a backgroun color (or image for that matter).

Second, when drawing nested tables, NN will choke (and actually crash your
browser) if there is too much white space.

Here's what I have done to create this 1 pixel border with a spacer graphic
(and can be seen in use at http://www.h2owinterclassic.com/):

table width=300 border=0 cellpadding=0 cellspacing=0
tr valign=top
td height=1 colspan=3 valign=top bgcolor=#ccimg
src=images/spacer_clear.gif width=750 height=1/td
/tr
tr height=1 valign=top
td width=1 valign=top bgcolor=#ccimg
src=images/spacer_clear.gif width=1 height=1/td
td width=298 valign=top!--- Your Content Goes Here ---/td
td width=1 valign=top bgcolor=#ccimg
src=images/spacer_clear.gif width=1 height=1/td
/tr

tr valign=top
td height=1 colspan=3 valign=top bgcolor=#ccimg
src=images/spacer_clear.gif width=750 height=1/td
/tr
/table

FYI, here' show I have been nesting tables, and had great success in NN:

table border=0 cellpadding=0 cellspacing=0
tr
tdtable border=0 cellpadding=0 cellspacing=0
tr
td!--- Nest Away! ---/td
/tr
/table/td
/tr
/table

Hope this sheds some light ^_^

- Original Message -
From: Tangorre, Michael T. [EMAIL PROTECTED]
To: CF-Talk [EMAIL PROTECTED]
Sent: Wednesday, March 20, 2002 3:59 AM
Subject: HTML / CF issue


 Hi everyone.
 This should be an easy fix but I have not run into this in a long time. I
 have a table in which I put a border around it using a top row with a
height
 of 1 pixel and a bottom row of a 1 pixel and two side columns with a width
 of  pixel.. Is there a way to get this to work in netscape 4+? It seems
that
 no matter what kind of content that fills the main cells, it pulls the
 border wider than 1 pixel. It works fine in IE of course. Would it help
to
 put a layer inside the table cell?

 Thanks,

 Michael T. Tangorre

 ==
 Alfred University
 Webteam Manager
 AIM: CrazyFlash4
 Phone: 607-426-9277
 ==
 
__
This list and all House of Fusion resources hosted by CFHosting.com. The place for 
dependable ColdFusion Hosting.
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



RE: HTML / CF issue

2002-03-20 Thread Tangorre, Michael T.

Scott..
Thanks for the info. Im not sure if this link would be any more useful to
you, but here it is...

http:149.84.162.227/xfuze/display/new.cfm

I have nested tables like no tomorrow  :-)
If you could take a look, id appreciate it... no content yet, the table are
empty except for the header.
Is there a web resource online with tid bits about the little annoyances of
NN?

mike


-Original Message-
From: Scott Van Vliet [mailto:[EMAIL PROTECTED]]
Sent: Wednesday, March 20, 2002 10:41 AM
To: CF-Talk
Subject: Re: HTML / CF issue


I have had simliar issues in NN, and here's what I found:

First, Netscape will not allow a nested table to have a background color if
its parent table has a backgroun color (or image for that matter).

Second, when drawing nested tables, NN will choke (and actually crash your
browser) if there is too much white space.

Here's what I have done to create this 1 pixel border with a spacer graphic
(and can be seen in use at http://www.h2owinterclassic.com/):

table width=300 border=0 cellpadding=0 cellspacing=0
tr valign=top
td height=1 colspan=3 valign=top bgcolor=#ccimg
src=images/spacer_clear.gif width=750 height=1/td
/tr
tr height=1 valign=top
td width=1 valign=top bgcolor=#ccimg
src=images/spacer_clear.gif width=1 height=1/td
td width=298 valign=top!--- Your Content Goes Here ---/td
td width=1 valign=top bgcolor=#ccimg
src=images/spacer_clear.gif width=1 height=1/td
/tr

tr valign=top
td height=1 colspan=3 valign=top bgcolor=#ccimg
src=images/spacer_clear.gif width=750 height=1/td
/tr
/table

FYI, here' show I have been nesting tables, and had great success in NN:

table border=0 cellpadding=0 cellspacing=0
tr
tdtable border=0 cellpadding=0 cellspacing=0
tr
td!--- Nest Away! ---/td
/tr
/table/td
/tr
/table

Hope this sheds some light ^_^

- Original Message -
From: Tangorre, Michael T. [EMAIL PROTECTED]
To: CF-Talk [EMAIL PROTECTED]
Sent: Wednesday, March 20, 2002 3:59 AM
Subject: HTML / CF issue


 Hi everyone.
 This should be an easy fix but I have not run into this in a long time. I
 have a table in which I put a border around it using a top row with a
height
 of 1 pixel and a bottom row of a 1 pixel and two side columns with a width
 of  pixel.. Is there a way to get this to work in netscape 4+? It seems
that
 no matter what kind of content that fills the main cells, it pulls the
 border wider than 1 pixel. It works fine in IE of course. Would it help
to
 put a layer inside the table cell?

 Thanks,

 Michael T. Tangorre

 ==
 Alfred University
 Webteam Manager
 AIM: CrazyFlash4
 Phone: 607-426-9277
 ==
 

__
Get the mailserver that powers this list at http://www.coolfusion.com
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



RE: HTML / CF issue

2002-03-20 Thread Owen Munton

Your problem is the width=100% in your td tag.  Your
table should look more like this:

table width=100% cellpadding=0
cellspacing=0 border=0 height=500
tr
td  width=1 bgcolor=33 img
src=http://149.84.162.227/xfuze/display/color_33.gif;
width=1/td
td  width=145NAV/td
td  width=1 bgcolor=33 img
src=http://149.84.162.227/xfuze/display/color_33.gif;
width=1/td
td  width=900CONTENT/td
td  width=1 bgcolor=33 img
src=http://149.84.162.227/xfuze/display/color_33.gif;
width=1/td
/tr
/table

Thanks,

Owen
--- Tangorre, Michael T. [EMAIL PROTECTED]
wrote:
 Scott..
 Thanks for the info. Im not sure if this link would
 be any more useful to
 you, but here it is...
 
 http:149.84.162.227/xfuze/display/new.cfm
 
 I have nested tables like no tomorrow  :-)
 If you could take a look, id appreciate it... no
 content yet, the table are
 empty except for the header.
 Is there a web resource online with tid bits about
 the little annoyances of
 NN?
 
 mike
 
 
 -Original Message-
 From: Scott Van Vliet
 [mailto:[EMAIL PROTECTED]]
 Sent: Wednesday, March 20, 2002 10:41 AM
 To: CF-Talk
 Subject: Re: HTML / CF issue
 
 
 I have had simliar issues in NN, and here's what I
 found:
 
 First, Netscape will not allow a nested table to
 have a background color if
 its parent table has a backgroun color (or image for
 that matter).
 
 Second, when drawing nested tables, NN will choke
 (and actually crash your
 browser) if there is too much white space.
 
 Here's what I have done to create this 1 pixel
 border with a spacer graphic
 (and can be seen in use at
 http://www.h2owinterclassic.com/):
 
 table width=300 border=0 cellpadding=0
 cellspacing=0
 tr valign=top
 td height=1 colspan=3 valign=top
 bgcolor=#ccimg
 src=images/spacer_clear.gif width=750
 height=1/td
 /tr
 tr height=1 valign=top
 td width=1 valign=top
 bgcolor=#ccimg
 src=images/spacer_clear.gif width=1
 height=1/td
 td width=298 valign=top!--- Your
 Content Goes Here ---/td
 td width=1 valign=top
 bgcolor=#ccimg
 src=images/spacer_clear.gif width=1
 height=1/td
 /tr
 
 tr valign=top
 td height=1 colspan=3 valign=top
 bgcolor=#ccimg
 src=images/spacer_clear.gif width=750
 height=1/td
 /tr
 /table
 
 FYI, here' show I have been nesting tables, and had
 great success in NN:
 
 table border=0 cellpadding=0 cellspacing=0
 tr
 tdtable border=0 cellpadding=0
 cellspacing=0
 tr
 td!--- Nest Away! ---/td
 /tr
 /table/td
 /tr
 /table
 
 Hope this sheds some light ^_^
 
 - Original Message -
 From: Tangorre, Michael T. [EMAIL PROTECTED]
 To: CF-Talk [EMAIL PROTECTED]
 Sent: Wednesday, March 20, 2002 3:59 AM
 Subject: HTML / CF issue
 
 
  Hi everyone.
  This should be an easy fix but I have not run into
 this in a long time. I
  have a table in which I put a border around it
 using a top row with a
 height
  of 1 pixel and a bottom row of a 1 pixel and two
 side columns with a width
  of  pixel.. Is there a way to get this to work in
 netscape 4+? It seems
 that
  no matter what kind of content that fills the main
 cells, it pulls the
  border wider than 1 pixel. It works fine in IE
 of course. Would it help
 to
  put a layer inside the table cell?
 
  Thanks,
 
  Michael T. Tangorre
 
  ==
  Alfred University
  Webteam Manager
  AIM: CrazyFlash4
  Phone: 607-426-9277
  ==
  
 


__
This list and all House of Fusion resources hosted by CFHosting.com. The place for 
dependable ColdFusion Hosting.
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



RE: HTML / CF issue

2002-03-20 Thread Tangorre, Michael T.

Thanks Owen and everyone else who responded.
Owen I tried what you suggested and it worked great.. Thanks! One of those
HTML problems I haven't encountered before...

TA.

Mike


-Original Message-
From: Owen Munton [mailto:[EMAIL PROTECTED]]
Sent: Wednesday, March 20, 2002 12:10 PM
To: CF-Talk
Subject: RE: HTML / CF issue


Your problem is the width=100% in your td tag.  Your
table should look more like this:

table width=100% cellpadding=0
cellspacing=0 border=0 height=500
tr
td  width=1 bgcolor=33 img
src=http://149.84.162.227/xfuze/display/color_33.gif;
width=1/td
td  width=145NAV/td
td  width=1 bgcolor=33 img
src=http://149.84.162.227/xfuze/display/color_33.gif;
width=1/td
td  width=900CONTENT/td
td  width=1 bgcolor=33 img
src=http://149.84.162.227/xfuze/display/color_33.gif;
width=1/td
/tr
/table

Thanks,

Owen
--- Tangorre, Michael T. [EMAIL PROTECTED]
wrote:
 Scott..
 Thanks for the info. Im not sure if this link would
 be any more useful to
 you, but here it is...
 
 http:149.84.162.227/xfuze/display/new.cfm
 
 I have nested tables like no tomorrow  :-)
 If you could take a look, id appreciate it... no
 content yet, the table are
 empty except for the header.
 Is there a web resource online with tid bits about
 the little annoyances of
 NN?
 
 mike
 
 
 -Original Message-
 From: Scott Van Vliet
 [mailto:[EMAIL PROTECTED]]
 Sent: Wednesday, March 20, 2002 10:41 AM
 To: CF-Talk
 Subject: Re: HTML / CF issue
 
 
 I have had simliar issues in NN, and here's what I
 found:
 
 First, Netscape will not allow a nested table to
 have a background color if
 its parent table has a backgroun color (or image for
 that matter).
 
 Second, when drawing nested tables, NN will choke
 (and actually crash your
 browser) if there is too much white space.
 
 Here's what I have done to create this 1 pixel
 border with a spacer graphic
 (and can be seen in use at
 http://www.h2owinterclassic.com/):
 
 table width=300 border=0 cellpadding=0
 cellspacing=0
 tr valign=top
 td height=1 colspan=3 valign=top
 bgcolor=#ccimg
 src=images/spacer_clear.gif width=750
 height=1/td
 /tr
 tr height=1 valign=top
 td width=1 valign=top
 bgcolor=#ccimg
 src=images/spacer_clear.gif width=1
 height=1/td
 td width=298 valign=top!--- Your
 Content Goes Here ---/td
 td width=1 valign=top
 bgcolor=#ccimg
 src=images/spacer_clear.gif width=1
 height=1/td
 /tr
 
 tr valign=top
 td height=1 colspan=3 valign=top
 bgcolor=#ccimg
 src=images/spacer_clear.gif width=750
 height=1/td
 /tr
 /table
 
 FYI, here' show I have been nesting tables, and had
 great success in NN:
 
 table border=0 cellpadding=0 cellspacing=0
 tr
 tdtable border=0 cellpadding=0
 cellspacing=0
 tr
 td!--- Nest Away! ---/td
 /tr
 /table/td
 /tr
 /table
 
 Hope this sheds some light ^_^
 
 - Original Message -
 From: Tangorre, Michael T. [EMAIL PROTECTED]
 To: CF-Talk [EMAIL PROTECTED]
 Sent: Wednesday, March 20, 2002 3:59 AM
 Subject: HTML / CF issue
 
 
  Hi everyone.
  This should be an easy fix but I have not run into
 this in a long time. I
  have a table in which I put a border around it
 using a top row with a
 height
  of 1 pixel and a bottom row of a 1 pixel and two
 side columns with a width
  of  pixel.. Is there a way to get this to work in
 netscape 4+? It seems
 that
  no matter what kind of content that fills the main
 cells, it pulls the
  border wider than 1 pixel. It works fine in IE
 of course. Would it help
 to
  put a layer inside the table cell?
 
  Thanks,
 
  Michael T. Tangorre
 
  ==
  Alfred University
  Webteam Manager
  AIM: CrazyFlash4
  Phone: 607-426-9277
  ==
  
 



__
This list and all House of Fusion resources hosted by CFHosting.com. The place for 
dependable ColdFusion Hosting.
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