- jumping from highlighted title to the related text further down...
- Posted by Suzanne on November 18th, 2004
I'm trying to find out how, in Publisher, I can build my webpage so that a
user can select a highlighted topic and be automatically sent to the
appropriate text further down the page. I also want to know how "return to
top" would work, which I'm sure is similar. Thanks for your help!
- Posted by Don Schmidt on November 18th, 2004
Below is some great stuff David Bartosik provided in days of past. I
suggest you copy it and save it for those times of need.
--
Don
Vancouver, USA
====================
Publisher has no built in support for "bookmarking". To add bookmarking
requires coding it yourself with an HTML code fragment. Since TOP is a
standard bookmark it takes only a small snippet of code to add Top Of Page
functionality to your page. Just draw an HTML code fragment at the bottom of
the page and paste the following code snippet:
<a href="#top">back to top</a>
To create other anchor links within your web page, here is an example of how
I do it. Say I have sections on a page about David Bartosik, JoAnn, and Don.
At the top of my page I would use the HTML code fragment to insert:
<A HREF="#READ HERE">David Bartosik</A>
<A HREF="#READ HERE1">JoAnn</A>
<A HREF="#READ HERE2">/Don</A>
Then beside each section in the page I would insert:
<A NAME="READ HERE"></A>
<A NAME="READ HERE1"></A>
<A NAME="READ HERE2"></A>
When you click on the link David Bartosik, etc at the top of the page, you
will directed to the individual sections.
To create a "back button".
<INPUT TYPE="button" VALUE="Go back" ONCLICK="history.back(3)"NAME="button">
"Suzanne" <Suzanne@discussions.microsoft.com> wrote in message
news:217B76BD-65B8-436D-9C6F-DDE2AEEFBD36@microsoft.com...


