PC Review


Reply
Thread Tools Rate Thread

Cell Border Problem

 
 
Susan
Guest
Posts: n/a
 
      4th Oct 2004
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
 
Reply With Quote
 
 
 
 
Murray
Guest
Posts: n/a
 
      4th Oct 2004
Show me such a page, please.

--
Murray

"Susan" <(E-Mail Removed)> wrote in message
news:215b01c4aa5d$f2c7d740$(E-Mail Removed)...
>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



 
Reply With Quote
 
Susan
Guest
Posts: n/a
 
      5th Oct 2004
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">

..





"Murray" <(E-Mail Removed)> wrote in message
news:(E-Mail Removed)...
> Show me such a page, please.
>
> --
> Murray
>
> "Susan" <(E-Mail Removed)> wrote in message
> news:215b01c4aa5d$f2c7d740$(E-Mail Removed)...
>>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

>
>



 
Reply With Quote
 
=?Utf-8?B?QXJhdmludGg=?=
Guest
Posts: n/a
 
      5th Oct 2004
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

"Susan" wrote:

> 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
>

 
Reply With Quote
 
Susan
Guest
Posts: n/a
 
      5th Oct 2004
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

>-----Original Message-----
>Show me such a page, please.
>
>--
>Murray
>
>"Susan" <(E-Mail Removed)> wrote in

message
>news:215b01c4aa5d$f2c7d740$(E-Mail Removed)...
>>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

>
>
>.
>

 
Reply With Quote
 
Murray
Guest
Posts: n/a
 
      5th Oct 2004
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?

--
Murray

"Susan" <(E-Mail Removed)> wrote in message
news:259701c4aac7$ae64ec40$(E-Mail Removed)...
> 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
>
>>-----Original Message-----
>>Show me such a page, please.
>>
>>--
>>Murray
>>
>>"Susan" <(E-Mail Removed)> wrote in

> message
>>news:215b01c4aa5d$f2c7d740$(E-Mail Removed)...
>>>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

>>
>>
>>.
>>



 
Reply With Quote
 
=?Utf-8?B?QXJhdmludGg=?=
Guest
Posts: n/a
 
      6th Oct 2004
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

"Susan" wrote:

> 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"> </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">
>
> ..
>
>
>
>
>
> "Murray" <(E-Mail Removed)> wrote in message
> news:(E-Mail Removed)...
> > Show me such a page, please.
> >
> > --
> > Murray
> >
> > "Susan" <(E-Mail Removed)> wrote in message
> > news:215b01c4aa5d$f2c7d740$(E-Mail Removed)...
> >>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

> >
> >

>
>
>

 
Reply With Quote
 
 
 
Reply

Thread Tools
Rate This Thread
Rate This Thread:

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are Off


Similar Threads
Thread Thread Starter Forum Replies Last Post
border on last cell of page effects border on beginning cell of ne GaryE Microsoft Excel Misc 0 23rd Mar 2009 05:47 AM
Cell border problem =?Utf-8?B?QnJpYW4=?= Microsoft Excel Misc 2 31st Jul 2007 07:44 PM
Cell Border Problem Susan Microsoft Frontpage 2 5th Oct 2004 12:26 PM
Cell Border Problem Susan Microsoft Frontpage 0 4th Oct 2004 11:03 PM
Cell border formatting problem kate Microsoft Excel Misc 0 23rd Oct 2003 06:32 PM


Features
 

Advertising
 

Newsgroups
 


All times are GMT +1. The time now is 11:05 PM.