How do you get rid of the "3d effect" netscape puts on table borders, at the moment I have this
<table width="100%" border="4" cellspacing="0" cellpadding="0" bordercolor="#FF0000">'
Thanks
JLS (Joshua Lee Simpson)
How do you get rid of the "3d effect" netscape puts on table borders, at the moment I have this
<table width="100%" border="4" cellspacing="0" cellpadding="0" bordercolor="#FF0000">'
Thanks
JLS (Joshua Lee Simpson)
Mark Hensler posted this at 07:44 — 10th February 2001.
He has: 4,044 posts
Joined: Aug 2000
you can't do it with that table....
you have to nest...
<table bgcolor="ff0000" border=0 cellspacing=0 cellpadding=0><tr>
<td>
<table border=0 cellspacing=1 cellpadding=0>
<tr>
<td bgcolor="0000ff">
blah blah
</td>
</tr>
</td>
</tr>
</table>
'
This will make a one cell blue table with a one pixel red border. Modify to suit.
Mark Hensler ["Max Albert"] [Email]
If there is no answer on Google, then there is no question.
Josh Simpson posted this at 22:27 — 10th February 2001.
They have: 147 posts
Joined: Dec 1999
Hey thanks
But what a anoying way of doing it
Mark Hensler posted this at 23:05 — 11th February 2001.
He has: 4,044 posts
Joined: Aug 2000
Yes, I agree. But I've found no other way of doing it.
Just another browser incompatability we have to put up with.
Mark Hensler ["Max Albert"] [Email]
If there is no answer on Google, then there is no question.