Cell Border Problem

S

Susan

I have FP 2003 but I have also experienced this with FP
2002. I add a cell border to the cell. But later I decide
that I do not want the border and I try to set the width
back to 0. But no matter how many times I try and the
border appears to be 0 but the cell border is still there
when I look at preview and I have saved the changes.

Any suggestions please.

Susan
 
S

Susan

Please forgive me for posting several times. Ever since Hurricane Ivan came
through I have had difficulty with the Internet. Guess the phone lines
aren't the same.

The page is:
http://esill.net/speakers1.htm
I cannot delete the borders using the Cell Properties

<table border="0" cellpadding="0" cellspacing="0" width="100%"
height="100%">
<!-- MSTableType="layout" -->
<tr>
<td valign="top" colspan="3" height="25" bgcolor="#3333FF">
<!-- MSCellType="ContentHead" -->
<img border="0" src="Esillbanner2.jpg" width="468" height="60"></td>
</tr>
<tr>
<td bgcolor="#3333FF">&nbsp;</td>
The problem code must be the style="border-style:solid; etc.,,,," which you
think I would be able to change with the Cell properties but I cannot!
<td valign="top" style="border-style: solid; border-width: 10px"
height="3033">
<!-- MSCellType="ContentBody" -->

<table cellpadding="0" cellspacing="0" border="0" width="100%"
height="100%">
<!-- MSCellFormattingTableID="1" -->
<tr>
<td height="100%" width="100%">
<!-- MSCellFormattingType="content" -->
<table border="0" width="100%" height="100%" cellpadding="10"
cellspacing="0">
<tr>
<td width="100%" height="100%" valign="top">

..
 
A

Aravinth

Do try this for specific cell in tables

Right click on the cell
Select Cell Properties...
Click Style... button in the bottom on the Cell Properties dialog window
Click Format button on the Modify Style window
Select border from the menu in Format
Try changing the width

For complete tables

Right click on any of the cell from the table
Select Table Properties...
Click Style... button in the bottom on the Cell Properties window
Click Format button on the Modify Style window
Select border from the menu in Format
Try changing the width
or
Do find Borders and change the Size in Table Properties... widow

I have checked this in FP 2002

Aravinth
 
S

Susan

Please forgive me for posting the same thing so many
times. Ever since Ivan came through I have had problems
with the Internet. Must be the phone lines.

The page is:
http://esill.net/speakers1.htm

The code is:
<tr>
<td bgcolor="#3333FF">&nbsp;</td>
<td valign="top" style="border-style: solid; border-
width: 10px" height="3033">
<!-- MSCellType="ContentBody" -->
I cannot reset that border with the cell properties but I
will do it within the code.

Thanks everyone.
Susan
 
M

Murray

Susan:

<tr>
<td bgcolor="#3333FF">&nbsp;</td>
<td valign="top" style="border-style: solid; border-width: 10px"
height="3033">

You could eliminate the border by changing that code to this -

<tr>
<td bgcolor="#3333FF">&nbsp;</td>
<td valign="top" style="border-style: none; border-width: 10px"
height="3033">

But you would have to do that in the code, as far as I know (although you
could try the styles editor to get at that inline style).

Also, be aware that heights in <td> tags are deprecated and usually
ineffective. In addition, a 3000 pixel height is a bit much, no?
 
A

Aravinth

Please Find for the below code in your page...

<td valign="top" style="border-style: solid; border-width: 10px"
height="3033">

Note that the border is set "border-width: 10px"
Change 10px to 0px or your prefered width.

This must work

Aravinth
 
Top