Ezilon.com - Target Your Audience, be Seen in Your Region

Always wondered this?

You are viewing this site as a guest. Join our community to get your questions answered and share knowledge. Active members may advertise and ask for a website critique.
Josh Simpson's picture

They have: 147 posts

Joined: Dec 1999

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's picture

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's picture

They have: 147 posts

Joined: Dec 1999

Hey thanks

But what a anoying way of doing it Sad

Mark Hensler's picture

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.