I cannot do the same with my bottom border. I set up the
tables fine but I cannot get my table and cell borders to
dissapear. It borders are erratic looking-- some I got to
dissapear others are a visible yellow. I fooled with this
last night for maybe an hour. It looks like a rat's maze.
It is just the borders that are problems, text and links
work fine.
Do I need to apply fixes or patches? I go to the Office
updates and run the scan and no updates are found.
I am posting this new post because I cannot find my
original post to reply to which was this week. Can't
figure that one out. For web-based post the Search does
not work and no posts of mine show up, but using Outlook I
cannot find my original post anymore but only the reply.
Thanks for any information.
Susan
Susan
volunteer for www.easternshoreartcenter.com
>.
>
--
==============================================
Thomas A. Rowe (Microsoft MVP - FrontPage)
WEBMASTER Resources(tm)
http://www.ycoln-resources.com
FrontPage Resources, Forums, WebCircle,
MS KB Quick Links, etc.
==============================================
To assist you in getting the best answers for FrontPage support see:
http://www.net-sites.com/sitebuilder/newsgroups.asp
"Susan" <dsns...@aol.com> wrote in message
news:2dc101c2f0c9$29f21960$2f01...@phx.gbl...
--
==============================================
Thomas A. Rowe (Microsoft MVP - FrontPage)
WEBMASTER Resources(tm)
http://www.ycoln-resources.com
FrontPage Resources, Forums, WebCircle,
MS KB Quick Links, etc.
==============================================
To assist you in getting the best answers for FrontPage support see:
http://www.net-sites.com/sitebuilder/newsgroups.asp
"Susan" <dsns...@aol.com> wrote in message
news:294801c2f0e3$f864e740$a401...@phx.gbl...
You have 2 problem that I can see right away looking at your source:
1. All of your hyperlink point to file location on your HD, this is
generally a indication that you do not have a web open when working on your
pages.
2. Your table has inline style tags applied which is controlling the border
colors. You need to remove all of the inline style tag, in HTML view.
Example:
This is what you have:
<table border="1" cellspacing="0"
style="border-collapse: collapse; border-style: solid; border-color:
#FFFFFF"
width="789" id="AutoNumber1" bordercolor="#FFFFFF" height="111"
cellpadding="0">
<tr>
<td width="127" bordercolor="#FFFFFF" height="31" style="border-color:
#FFFFFF"><a href="index.htm">Home</a></td>
<td width="185" bordercolor="#FFFFFF" height="31" style="border-color:
#FFFFFF"><a href="Academy.htm">Academy</a> </td>
<td width="139" bordercolor="#FFFFFF" height="31" style="border-color:
#FFFFFF"><a href="exhibits.htm">Exhibits</a></td>
<td width="188" bordercolor="#FFFFFF" height="31" style="border-color:
#FFFFFF"><a href="publicart.htm">Committee For Public Art</a></td>
<td width="144" bordercolor="#FFFFFF" height="31" style="border-color:
#FFFFFF"> <a
href="esac_spring_studio_schedule_2003.htm">Classes</a></td>
</tr>
.
.
.
</table>
This is what you want to have:
<table border="0" cellpadding="0" cellspacing="0" width="100%">
<tr>
<td width="127" height="30"><a href="index.htm">Home</a></td>
<td width="185" height="30"><a href="Academy.htm">Academy</a></td>
<td width="139" height="30"><a href="exhibits.htm">Exhibits</a></td>
<td width="188" height="30"><a href="publicart.htm">Committee For Public
Art</a></td>
<td width="144" height="30"><a
href="esac_spring_studio_schedule_2003.htm">Classes</a></td>
</tr>
.
.
.
</table>
--
==============================================
Thomas A. Rowe (Microsoft MVP - FrontPage)
WEBMASTER Resources(tm)
http://www.ycoln-resources.com
FrontPage Resources, Forums, WebCircle,
MS KB Quick Links, etc.
==============================================
To assist you in getting the best answers for FrontPage support see:
http://www.net-sites.com/sitebuilder/newsgroups.asp
"Susan" <dsns...@aol.com> wrote in message
news:2aff01c2f13c$00a68500$a301...@phx.gbl...
I will remove the tags but I am not sure about how to avoid doing this
again. Where did I go wrong to get these tags in there to begin with? I
realize that you may not be able to answer this one because sometimes I do
not remember what steps I went through trying to get from point A to to
point F and how can I expect someone else to know what I did?
Thanks very much,
Susan
"Thomas A. Rowe" <tar...@mvps.org> wrote in message
news:OvBIF5V8...@TK2MSFTNGP11.phx.gbl...
However FP does give you the ability to work directly on your web at your
host, if the host has the FP extensions installed.
Usually the tag are generated when you select any of the options to change
how the border of a table or cell appears.
--
==============================================
Thomas A. Rowe (Microsoft MVP - FrontPage)
WEBMASTER Resources(tm)
http://www.ycoln-resources.com
FrontPage Resources, Forums, WebCircle,
MS KB Quick Links, etc.
==============================================
To assist you in getting the best answers for FrontPage support see:
http://www.net-sites.com/sitebuilder/newsgroups.asp
"Susan" <dsns...@msn.com> wrote in message
news:#WnXA3X8...@TK2MSFTNGP11.phx.gbl...
Please tell me how you detected the pointing to my HD so
fast. I did not see it of course. You found it in the HTML
code. Were there apparent errors to someone else viewing
the website? I mean if it is pointing to my HD, what
happens? Thanks again for all your help!
Susan
>> > #FFFFFF"><a href="Academy.htm">Academy</a> </td>
>> > <td width="139" bordercolor="#FFFFFF" height="31"
>> > style="border-color:
>> > #FFFFFF"><a href="exhibits.htm">Exhibits</a></td>
>> > <td width="188" bordercolor="#FFFFFF" height="31"
>> > style="border-color:
>> > #FFFFFF"><a href="publicart.htm">Committee For Public
Art</a></td>
>> > <td width="144" bordercolor="#FFFFFF" height="31"
>> > style="border-color:
>> > #FFFFFF"> <a
>.
>
I just spotted "file://" when I first opened your source. A user would see a
page not found or if a image, the box with a red X, however you would see
everything as being correct.
--
==============================================
Thomas A. Rowe (Microsoft MVP - FrontPage)
WEBMASTER Resources(tm)
http://www.ycoln-resources.com
FrontPage Resources, Forums, WebCircle,
MS KB Quick Links, etc.
==============================================
To assist you in getting the best answers for FrontPage support see:
http://www.net-sites.com/sitebuilder/newsgroups.asp
"Susan" <dsns...@aol.com> wrote in message
news:30aa01c2f193$4c1730f0$2f01...@phx.gbl...