Back to top icon

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

I have a page with a lot of bookmarks. What's the easiest way to add a 'back
to top' icon for each bookmark line.
 
Create a bokkmark at the top and link to it whereever you want.

Regards Jens Peter Karlsen. Microsoft MVP - Frontpage.
 
Create a snippet (in FP2003) like this -

<a href="#pagetop">Back to top</a>

Create a named anchor point at the top of the page like this -

<body>
<a name="pagetop" style="line-height:1px; height:1px;
font-size:1px;">&nbsp;</a>

At each point where you want the back to top link to appear, just insert
your snippet.
 
Back
Top