Anchors in FP

  • Thread starter Thread starter Josh
  • Start date Start date
J

Josh

IS it possible to set an anchor on one page and place a link to it on
another in FP? I would like users to be able to click on a product page and
jump to the info that resides on another page about half way down.

TIA
Josh
 
Yes, use Insert | Bookmark

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

FrontPage Resources, WebCircle, MS KB Quick Links, etc.
==============================================
 
What wouldl the link look like?

Thomas A. Rowe said:
Yes, use Insert | Bookmark

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

FrontPage Resources, WebCircle, MS KB Quick Links, etc.
==============================================
 
Select the text on the page, that you want to make a bookmark, then click Insert | Bookmark, then
save page, but do not close page, then open the page that you want to create a link to this
bookmark, select your text, right click, hyperlink, then select the page with the bookmark, then in
the bookmark dropdown, select the bookmark name your created.

The link will look like:

pagename.htm#bookmark (limit the bookmark to 8 characters and no spaces, etc.)

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

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

like so, just put the name of the page like a normal hyperlink, then tack on
the anchor name to the end of the a href.

In a page called for example "Page1.htm"

<a href="page2.htm#anchor1>This links to page 2, anchor 1</a>

then in page2.htm put the anchor

<a name="anchor2">This is anchor 2</a>
 
Back
Top