Re: [PHP] HTMLnetscape issue

2002-03-20 Thread heinisch

At 20.03.2002  13:11, you wrote:

Hi,

Sorry for repeating myself, but am lost and still can't find a solution
to the following problem, I need to specify a background image for td
like the code below:

tr
   td background=images/bottomcell_bg.gif/td
/tr

This code works EVERYWHERE (in all browsers) but Netscape Navigator 4.xx
versions.
UNTESTED
Try an $nbsp; insidetd/td as:
trtd background=images/bottomcell_bg.gifnbsp;/td/tr
HTH Oliver


-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php




RE: [PHP] HTMLnetscape issue

2002-03-20 Thread Vlad Kulchitski

STILL DOESN'T WORK :(

-Original Message-
From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]] 
Sent: 20 ÂÅÒÅÚÎÑ 2002 Ò. 13:29
To: [EMAIL PROTECTED]
Subject: Re: [PHP] HTMLnetscape issue

At 20.03.2002  13:11, you wrote:

Hi,

Sorry for repeating myself, but am lost and still can't find a solution
to the following problem, I need to specify a background image for td
like the code below:

tr
   td background=images/bottomcell_bg.gif/td
/tr

This code works EVERYWHERE (in all browsers) but Netscape Navigator 4.xx
versions.
UNTESTED
Try an $nbsp; insidetd/td as:
trtd background=images/bottomcell_bg.gifnbsp;/td/tr
HTH Oliver


-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php


--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php




Re: [PHP] HTMLnetscape issue

2002-03-20 Thread James Arthur

On Wednesday 20 Mar 2002 18:11, Vlad Kulchitski wrote:
 Hi,

 Sorry for repeating myself, but am lost and still can't find a solution
 to the following problem, I need to specify a background image for td
 like the code below:

 tr
   td background=images/bottomcell_bg.gif/td
 /tr

 This code works EVERYWHERE (in all browsers) but Netscape Navigator 4.xx
 versions.

Yes, Netscape 4.x doesn't do table backgrounds according to HTML spec. There 
is no solution for it, and you'll have to work your way around it, either by 
changing the design for your page, or by giving an alternative layout which 
is displayed when netscape users pay a visit.

The second way I mentioned is really surprisingly easy using CSS.

--jaa

-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php




Re: [PHP] HTMLnetscape issue

2002-03-20 Thread Erik Price


On Wednesday, March 20, 2002, at 01:11  PM, Vlad Kulchitski wrote:

 Sorry for repeating myself, but am lost and still can't find a solution
 to the following problem, I need to specify a background image for td
 like the code below:

 tr
   td background=images/bottomcell_bg.gif/td
 /tr

 This code works EVERYWHERE (in all browsers) but Netscape Navigator 4.xx
 versions.

You're fighting an unwinnable battle.  Give up on Crapscape 4.x, it is 
full of bugs.

Erik






Erik Price
Web Developer Temp
Media Lab, H.H. Brown
[EMAIL PROTECTED]


-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php




RE: [PHP] HTMLnetscape issue

2002-03-20 Thread Nathan Cassano


Yes here is a solution to this problem and I am surprised no one on this
list pointed it out.

Simply put a transparent dot within a cell table that you wish to have
the background image display.
Netscape 4 in retarded in the fact that it will not display a cell
background image unless it has cell content.


tr
td background=images/bottomcell_bg.gifimg
src=images/transparent_1x1_dot.gif/td
/tr

-Original Message-
From: Vlad Kulchitski [mailto:[EMAIL PROTECTED]] 
Sent: Wednesday, March 20, 2002 10:12 AM
To: [EMAIL PROTECTED]
Subject: [PHP] HTMLnetscape issue


Hi,

Sorry for repeating myself, but am lost and still can't find a solution
to the following problem, I need to specify a background image for td
like the code below:

tr
  td background=images/bottomcell_bg.gif/td
/tr

This code works EVERYWHERE (in all browsers) but Netscape Navigator 4.xx
versions.




-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php




RE: [PHP] HTMLnetscape issue

2002-03-20 Thread Vlad Kulchitski

The problem is it doesn't show the picture background, even if I type text in that 
cell...

-Original Message-
From: Nathan Cassano [mailto:[EMAIL PROTECTED]] 
Sent: 20 ÂÅÒÅÚÎÑ 2002 Ò. 14:43
To: [EMAIL PROTECTED]; Vlad Kulchitski
Subject: RE: [PHP] HTMLnetscape issue


Yes here is a solution to this problem and I am surprised no one on this
list pointed it out.

Simply put a transparent dot within a cell table that you wish to have
the background image display.
Netscape 4 in retarded in the fact that it will not display a cell
background image unless it has cell content.


tr
td background=images/bottomcell_bg.gifimg
src=images/transparent_1x1_dot.gif/td
/tr

-Original Message-
From: Vlad Kulchitski [mailto:[EMAIL PROTECTED]] 
Sent: Wednesday, March 20, 2002 10:12 AM
To: [EMAIL PROTECTED]
Subject: [PHP] HTMLnetscape issue


Hi,

Sorry for repeating myself, but am lost and still can't find a solution
to the following problem, I need to specify a background image for td
like the code below:

tr
  td background=images/bottomcell_bg.gif/td
/tr

This code works EVERYWHERE (in all browsers) but Netscape Navigator 4.xx
versions.




--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php




RE: [PHP] HTMLnetscape issue

2002-03-20 Thread Vlad Kulchitski


I agree, but there are sites like heavy GRAPHICS sites that look fine
everywhere you know what I am saying... the only solution I see is to
add more cells, like even 1 pix cells and 100 pix wide if I want a line
of graphic etc... that is the only solution I see

-Original Message-


 Sorry for repeating myself, but am lost and still can't find a
solution
 to the following problem, I need to specify a background image for
td
 like the code below:

 tr
   td background=images/bottomcell_bg.gif/td
 /tr

 This code works EVERYWHERE (in all browsers) but Netscape Navigator
4.xx
 versions.

You're fighting an unwinnable battle.  Give up on Crapscape 4.x, it is 
full of bugs.

Erik






Erik Price
Web Developer Temp
Media Lab, H.H. Brown
[EMAIL PROTECTED]


--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php




Re: [PHP] HTMLnetscape issue

2002-03-20 Thread James Arthur

On Wednesday 20 Mar 2002 19:43, Nathan Cassano wrote:
 Yes here is a solution to this problem and I am surprised no one on this
 list pointed it out.

 Simply put a transparent dot within a cell table that you wish to have
 the background image display.
 Netscape 4 in retarded in the fact that it will not display a cell
 background image unless it has cell content.


 tr
 td background=images/bottomcell_bg.gifimg
 src=images/transparent_1x1_dot.gif/td
 /tr

Not only that, but it doesn't inherit the background image from its parent 
properly. For example,

table background=myimage.gif
trtdSome text/tdtdMore text/td/tr
tr colspan=2tdEven more text/td/tr
/table

You'll find that the background is repeated in each cell, not that the cells 
are transparent and the table area has a background. This is mightily 
annoying.

--jaa

-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php




Re: [PHP] HTMLnetscape issue

2002-03-20 Thread Jason Lotito

Try including a nbsp; in the cell

tr
  td background=images/bottomcell_bg.gifnbsp;/td
/tr
- Original Message - 
From: Vlad Kulchitski [EMAIL PROTECTED]
To: [EMAIL PROTECTED]
Sent: Wednesday, March 20, 2002 1:11 PM
Subject: [PHP] HTMLnetscape issue


Hi,

Sorry for repeating myself, but am lost and still can't find a solution
to the following problem, I need to specify a background image for td
like the code below:

tr
  td background=images/bottomcell_bg.gif/td
/tr

This code works EVERYWHERE (in all browsers) but Netscape Navigator 4.xx
versions.

Please help,
Thanks,
Vlad
http://kulchitski.com

-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php



-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php




RE: [PHP] HTMLnetscape issue

2002-03-20 Thread heinisch

At 20.03.2002  13:38, you wrote:
STILL DOESN'T WORK :(

-Original Message-
From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]]
Sent: 20 ÂÅÒÅÚÎÑ 2002 Ò. 13:29
To: [EMAIL PROTECTED]
Subject: Re: [PHP] HTMLnetscape issue

At 20.03.2002  13:11, you wrote:
 
 Hi,
 
 Sorry for repeating myself, but am lost and still can't find a solution
 to the following problem, I need to specify a background image for td
 like the code below:
 
 tr
td background=images/bottomcell_bg.gif/td
 /tr
 
 This code works EVERYWHERE (in all browsers) but Netscape Navigator 4.xx
 versions.
UNTESTED
Try an $nbsp; insidetd/td as:
trtd background=images/bottomcell_bg.gifnbsp;/td/tr
Look at the code at:
http://www.rudis-motorcycle-store.de/m5.html
there I did what you want to do, I just tested it with NS451 and it works!
Also in NS405. I think you have to have to set height  width and the put
an transparent gif over it, have a look at the code.

James is wrong with his mail, sorry

HTH Oliver


--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php