Unwanted hyperlinks

A

Alan

http://www.lpcob.org/oc/oc-ordinances.htm

I use the the above as a reference for the situation now explained: Done in
FP 2003

After uploading the pages to my server, I checked to see "if everything was
all right."

Using IE6, I went through the site. I came to the above page. Notice a link
in the "There Am In The Midst Of Them" section that I didn't create. I
believe "love" is shown to be "linked" somewhere.

Then I opened the Lovefeast, Feetwashing and annointing section, and I
discovered there are a whole bunch of words that show there are linked to go
"somewhere."

I tried to rid these phantom hyperlinks, but not successful.

So, I decided to view the site and links in Mozilla Firefox. None of those
things appeared in that browser.

What gives?!

I don't want unwarranted hyperlinks showing because guests to the site may
go to places not intended. And, after experiencing false goes, they may
ultimately think, "I don't want to go back there.

I need an explanation on what is taking place.

Thank-you.
 
M

Murray

I don't see any of these links in IE6. Furthermore, I don't see the links
on your bottom section since you have applied the event handler for the open
browser window behavior directly to the image tag -

<img border="0" src="../images/info.gif" width="40" height="20"
onclick="FP_openNewWindow('480', '300', true, true, true, true, true, true,
'bapt', /*href*/'ordinances/ord-baptism.htm')"></td>

That's not a good idea.

You should change each of those bottom links as follows -

<a href="ordinances/ord-baptism.htm" target="_blank"
onclick="FP_openNewWindow('480', '300', true, true, true, true, true, true,
'bapt', /*href*/'ordinances/ord-baptism.htm');return false"><img border="0"
src="../images/info.gif" width="40" height="20"></a></td>

This will allow a) your cursor to change to the "pointer", a more familiar
indicator of a live link, and b) your page to still be functional, even with
javacsript disabled.
 
A

Alan

Thank-you. You wonder at times.

Murray said:
I don't see any of these links in IE6. Furthermore, I don't see the links
on your bottom section since you have applied the event handler for the open
browser window behavior directly to the image tag -

<img border="0" src="../images/info.gif" width="40" height="20"
onclick="FP_openNewWindow('480', '300', true, true, true, true, true, true,
'bapt', /*href*/'ordinances/ord-baptism.htm')"></td>

That's not a good idea.

You should change each of those bottom links as follows -

<a href="ordinances/ord-baptism.htm" target="_blank"
onclick="FP_openNewWindow('480', '300', true, true, true, true, true, true,
'bapt', /*href*/'ordinances/ord-baptism.htm');return false"><img border="0"
src="../images/info.gif" width="40" height="20"></a></td>

This will allow a) your cursor to change to the "pointer", a more familiar
indicator of a live link, and b) your page to still be functional, even with
javacsript disabled.
 
T

Thomas A. Rowe

Do you have any toolbar app installed in your browser?

--
==============================================
Thomas A. Rowe (Microsoft MVP - FrontPage)
WEBMASTER Resources(tm)

FrontPage Resources, WebCircle, MS KB Quick Links, etc.
==============================================
 
J

Jens Peter Karlsen[FP MVP]

Try using Ad-Aware and Spybot. See what they find.

Regards Jens Peter Karlsen. Microsoft MVP - Frontpage.
 
Top