The line you are looking for is called a border in HTML-ese. There are
multiple ways of determining what type (if any) of line to draw.
First of all, you can try going at it through FrontPage's UI. This is what
Wes was trying to tell you how to do.
First you want to get rid of borders on the table itself. Select the entire
table. Right click on it. Select Table Properties. Click on the Style
button. When Modify Style dialog shows, click on its Format button and then
select border. That gets you into how to specify what the outline on the
outside of the table looks like. In your case, I bet you only want the top
line of the table to show. By the time you get to this dialog, it will most
likely be self evident how to add and remove lines from the various sides of
your table.
Now, you need to specify how the cells themselves display. You want the
cells to have a solid line at the bottom of each cell. With the table still
completely selected, you can right click and select Cell Properties. Follow
the same sequence to get at the dialog that controls the cell borders.
The other method is to edit the HTML code itself. Look for your table in the
code. You'll see things like
..... border-left: 1.0pt ....
Where ever you see these, change the number to a 0 and then the associated
line becomes 0 points wide, effectively making it invisible.
====
Richard Lewis Haggard