Remove Cell Borders

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

Problem: FrontPage allows you to collase table borders (reduce width of
borders between cells), but doesn't allow you to eliminate them.

Solution: add the following code after the <td> command in cells where you
don't want borders: bordercolor="#X" bordercolorlight="#X"
bordercolordark="#X", where X is the hex color code. I can't understand why
FrontPage doesn't allow you to do this from the menus/dialogs, but the
workaround works. Thanks, Dreamweaver, for that one...
 
Sure it does.
Simply set the borders to 0 (zero)

--
Steve Easton
Microsoft MVP FrontPage
95isalive
This site is best viewed............
........................with a computer
 
Except that I do want a border around the table, just not between cells. The
manual code addition does do the job. Thanks anyway.
 
It's invalid code in both Dreamweaver and FP. And I have to say that the
only way to get DW to do that is the same as the way you get FP to do it -
manually hack it.

The correct way to do such things is to use CSS to add the borders.
 
Or, you could save time and invalid bytes of html by just applying a style
to the table.

I prefer style sheets, but....


<table style="border-style:solid;border-width:1px;border-color:#000000;"
width="200" cellpadding="0" cellspacing="0" border="0">
<tr>
<td>&nbsp;</td>
</tr>
</table>


Bob Lehmann
 
Back
Top