jumping from highlighted title to the related text further down...

S

Suzanne

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!
 
D

Don Schmidt

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">
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top