PC Review


Reply
 
 
=?Utf-8?B?bGhhbGRlbndhbmc=?=
Guest
Posts: n/a
 
      24th Jul 2006
Hi,
How do I get a page to 'jump' to a certain place on the page, eg. when you
scroll to the bottom of a page and there's a link to 'back to top'?
Thanks
Lisl
 
Reply With Quote
 
 
 
 
Steve Easton
Guest
Posts: n/a
 
      24th Jul 2006
Make a hyperlink to Top
<a href="Top">Top</a>


--
Steve Easton
Microsoft MVP FrontPage
FP Cleaner
http://www.95isalive.com/fixes/fpclean.htm
Hit Me FP
http://www.95isalive.com/fixes/HitMeFP.htm

"lhaldenwang" <(E-Mail Removed)> wrote in message
news:405C6969-42F4-45FF-9C5F-(E-Mail Removed)...
> Hi,
> How do I get a page to 'jump' to a certain place on the page, eg. when you
> scroll to the bottom of a page and there's a link to 'back to top'?
> Thanks
> Lisl



 
Reply With Quote
 
Andrew Murray
Guest
Posts: n/a
 
      24th Jul 2006
If you don't want just the "Top" idea, you create a Bookmark, to jump to any
place in a page. At the place you want to jump to (in FP this is Insert >
Bookmark).

Then, at the place you want the link to the bookmark, highlight the text,
right click , create hyperlink, then in the hyperlinks screen go to
"Bookmarks" button, and it will list all for that page. Choose the one you
want. Click OK out of the screens.

To add a link to a book mark in another page and link to it from a different
page, create the bookmark in the "destination" page (as per above) then from
the "source" page, create the link in the Hyperlinks box, put the web
address in the field, then click the "Bookmarks" button, and you'll find the
bookmark listed on the page you're linking to. CHose it and OK out of the
windows.

In both cases, test/preview in browser(s) as this may not work in FP Preview
mode.


"Steve Easton" <(E-Mail Removed)> wrote in message
news:(E-Mail Removed)...
> Make a hyperlink to Top
> <a href="Top">Top</a>
>
>
> --
> Steve Easton
> Microsoft MVP FrontPage
> FP Cleaner
> http://www.95isalive.com/fixes/fpclean.htm
> Hit Me FP
> http://www.95isalive.com/fixes/HitMeFP.htm
>
> "lhaldenwang" <(E-Mail Removed)> wrote in message
> news:405C6969-42F4-45FF-9C5F-(E-Mail Removed)...
>> Hi,
>> How do I get a page to 'jump' to a certain place on the page, eg. when
>> you
>> scroll to the bottom of a page and there's a link to 'back to top'?
>> Thanks
>> Lisl

>
>



 
Reply With Quote
 
Murray
Guest
Posts: n/a
 
      24th Jul 2006
Actually, you need two parts to that:

1. Something at the top of the page with a NAME/ID of 'pageTop' (I don't
use "top" since it is sometimes treated as a reserved word -

<a name="pageTop"><img src="whatever.jpg"...></a>

or

<h1 id="pageTop">This is the top of the page</h1>

2. A link to that named anchor where you want the jump link -

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

--
Murray
--------------
MVP FrontPage


"Steve Easton" <(E-Mail Removed)> wrote in message
news:(E-Mail Removed)...
> Make a hyperlink to Top
> <a href="Top">Top</a>
>
>
> --
> Steve Easton
> Microsoft MVP FrontPage
> FP Cleaner
> http://www.95isalive.com/fixes/fpclean.htm
> Hit Me FP
> http://www.95isalive.com/fixes/HitMeFP.htm
>
> "lhaldenwang" <(E-Mail Removed)> wrote in message
> news:405C6969-42F4-45FF-9C5F-(E-Mail Removed)...
>> Hi,
>> How do I get a page to 'jump' to a certain place on the page, eg. when
>> you
>> scroll to the bottom of a page and there's a link to 'back to top'?
>> Thanks
>> Lisl

>
>



 
Reply With Quote
 
Trevor L.
Guest
Posts: n/a
 
      25th Jul 2006
lhaldenwang wrote:
> Hi,
> How do I get a page to 'jump' to a certain place on the page, eg.
> when you scroll to the bottom of a page and there's a link to 'back
> to top'? Thanks
> Lisl


Wan't this just answered?

At the point to jump to
<a name= "at_the_top"></a>

At the point to jump from
<a href= "at_the_top">Go to Top</a>

--
Cheers,
Trevor L.
Website: http://tandcl.homemail.com.au


 
Reply With Quote
 
Murray
Guest
Posts: n/a
 
      25th Jul 2006
Point is this -

1. The named element works best when it has content.
2. The named element needn't be <a name="whatever>, it can be any element
with an ID value, too, e.g.,

<h1 id="pageTop">Top of page</h1>

--
Murray
--------------
MVP FrontPage


"Trevor L." <Trevor_L.@Canberra> wrote in message
news:utR%(E-Mail Removed)...
> lhaldenwang wrote:
>> Hi,
>> How do I get a page to 'jump' to a certain place on the page, eg.
>> when you scroll to the bottom of a page and there's a link to 'back
>> to top'? Thanks
>> Lisl

>
> Wan't this just answered?
>
> At the point to jump to
> <a name= "at_the_top"></a>
>
> At the point to jump from
> <a href= "at_the_top">Go to Top</a>
>
> --
> Cheers,
> Trevor L.
> Website: http://tandcl.homemail.com.au
>



 
Reply With Quote
 
Thomas A. Rowe
Guest
Posts: n/a
 
      25th Jul 2006
I also ways use:
<a href="#top">Top</a>
--
==============================================
Thomas A. Rowe
Microsoft MVP - FrontPage
==============================================
Agents Real Estate Listing Network
http://www.NReal.com
==============================================


"Steve Easton" <(E-Mail Removed)> wrote in message news:(E-Mail Removed)...
> Make a hyperlink to Top
> <a href="Top">Top</a>
>
>
> --
> Steve Easton
> Microsoft MVP FrontPage
> FP Cleaner
> http://www.95isalive.com/fixes/fpclean.htm
> Hit Me FP
> http://www.95isalive.com/fixes/HitMeFP.htm
>
> "lhaldenwang" <(E-Mail Removed)> wrote in message
> news:405C6969-42F4-45FF-9C5F-(E-Mail Removed)...
>> Hi,
>> How do I get a page to 'jump' to a certain place on the page, eg. when you
>> scroll to the bottom of a page and there's a link to 'back to top'?
>> Thanks
>> Lisl

>
>



 
Reply With Quote
 
Murray
Guest
Posts: n/a
 
      25th Jul 2006
I never use "top" since it can be treated as a reserved word - don't ask me
who or when....

--
Murray
--------------
MVP FrontPage


"Thomas A. Rowe" <(E-Mail Removed)> wrote in message
news:uKtj3P%(E-Mail Removed)...
>I also ways use:
> <a href="#top">Top</a>
> --
> ==============================================
> Thomas A. Rowe
> Microsoft MVP - FrontPage
> ==============================================
> Agents Real Estate Listing Network
> http://www.NReal.com
> ==============================================
>
>
> "Steve Easton" <(E-Mail Removed)> wrote in message
> news:(E-Mail Removed)...
>> Make a hyperlink to Top
>> <a href="Top">Top</a>
>>
>>
>> --
>> Steve Easton
>> Microsoft MVP FrontPage
>> FP Cleaner
>> http://www.95isalive.com/fixes/fpclean.htm
>> Hit Me FP
>> http://www.95isalive.com/fixes/HitMeFP.htm
>>
>> "lhaldenwang" <(E-Mail Removed)> wrote in message
>> news:405C6969-42F4-45FF-9C5F-(E-Mail Removed)...
>>> Hi,
>>> How do I get a page to 'jump' to a certain place on the page, eg. when
>>> you
>>> scroll to the bottom of a page and there's a link to 'back to top'?
>>> Thanks
>>> Lisl

>>
>>

>
>



 
Reply With Quote
 
Steve Easton
Guest
Posts: n/a
 
      25th Jul 2006
<a href="Top">Top</a>
Will work all by itself.


--
Steve Easton
Microsoft MVP FrontPage
FP Cleaner
http://www.95isalive.com/fixes/fpclean.htm
Hit Me FP
http://www.95isalive.com/fixes/HitMeFP.htm

"Murray" <(E-Mail Removed)> wrote in message
news:(E-Mail Removed)...
> Actually, you need two parts to that:
>
> 1. Something at the top of the page with a NAME/ID of 'pageTop' (I don't use "top"
> since it is sometimes treated as a reserved word -
>
> <a name="pageTop"><img src="whatever.jpg"...></a>
>
> or
>
> <h1 id="pageTop">This is the top of the page</h1>
>
> 2. A link to that named anchor where you want the jump link -
>
> <a href="#pageTop">Back to top</a>
>
> --
> Murray
> --------------
> MVP FrontPage
>
>
> "Steve Easton" <(E-Mail Removed)> wrote in message
> news:(E-Mail Removed)...
>> Make a hyperlink to Top
>> <a href="Top">Top</a>
>>
>>
>> --
>> Steve Easton
>> Microsoft MVP FrontPage
>> FP Cleaner
>> http://www.95isalive.com/fixes/fpclean.htm
>> Hit Me FP
>> http://www.95isalive.com/fixes/HitMeFP.htm
>>
>> "lhaldenwang" <(E-Mail Removed)> wrote in message
>> news:405C6969-42F4-45FF-9C5F-(E-Mail Removed)...
>>> Hi,
>>> How do I get a page to 'jump' to a certain place on the page, eg. when you
>>> scroll to the bottom of a page and there's a link to 'back to top'?
>>> Thanks
>>> Lisl

>>
>>

>
>



 
Reply With Quote
 
Murray
Guest
Posts: n/a
 
      25th Jul 2006
Sometimes. In some browsers.

--
Murray
--------------
MVP FrontPage


"Steve Easton" <(E-Mail Removed)> wrote in message
news:uzAaWU%(E-Mail Removed)...
> <a href="Top">Top</a>
> Will work all by itself.
>
>
> --
> Steve Easton
> Microsoft MVP FrontPage
> FP Cleaner
> http://www.95isalive.com/fixes/fpclean.htm
> Hit Me FP
> http://www.95isalive.com/fixes/HitMeFP.htm
>
> "Murray" <(E-Mail Removed)> wrote in message
> news:(E-Mail Removed)...
>> Actually, you need two parts to that:
>>
>> 1. Something at the top of the page with a NAME/ID of 'pageTop' (I don't
>> use "top" since it is sometimes treated as a reserved word -
>>
>> <a name="pageTop"><img src="whatever.jpg"...></a>
>>
>> or
>>
>> <h1 id="pageTop">This is the top of the page</h1>
>>
>> 2. A link to that named anchor where you want the jump link -
>>
>> <a href="#pageTop">Back to top</a>
>>
>> --
>> Murray
>> --------------
>> MVP FrontPage
>>
>>
>> "Steve Easton" <(E-Mail Removed)> wrote in message
>> news:(E-Mail Removed)...
>>> Make a hyperlink to Top
>>> <a href="Top">Top</a>
>>>
>>>
>>> --
>>> Steve Easton
>>> Microsoft MVP FrontPage
>>> FP Cleaner
>>> http://www.95isalive.com/fixes/fpclean.htm
>>> Hit Me FP
>>> http://www.95isalive.com/fixes/HitMeFP.htm
>>>
>>> "lhaldenwang" <(E-Mail Removed)> wrote in message
>>> news:405C6969-42F4-45FF-9C5F-(E-Mail Removed)...
>>>> Hi,
>>>> How do I get a page to 'jump' to a certain place on the page, eg. when
>>>> you
>>>> scroll to the bottom of a page and there's a link to 'back to top'?
>>>> Thanks
>>>> Lisl
>>>
>>>

>>
>>

>
>



 
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
Back-to-Back DoCmd.OpenReport fails if Printer Offline Help with Multi Catalog Microsoft Access VBA Modules 1 21st Nov 2009 02:45 PM
Rolling back a vista upgrade, back to the original version of vist =?Utf-8?B?SmFjaw==?= Windows Vista Installation 2 23rd Aug 2007 04:10 AM
Printing back-to-back on European standard size paper =?Utf-8?B?SHVnaCBI?= Microsoft Outlook Printing 0 29th May 2007 07:53 PM
IE7 Beta 2 click back button brings back to home page Tony Lisanti Windows XP General 4 4th May 2006 06:29 AM
IE 6 navigates back to previous page by itself (as if I had clicked the 'back' button) Nelson Windows XP Internet Explorer 0 26th Jul 2004 06:34 PM


Features
 

Advertising
 

Newsgroups
 


All times are GMT +1. The time now is 05:09 AM.