| Author |
hyperlink to a same page location
|
|
|
| I want to put a hyperlink on a web page I designed in publisher and have it
link to another location on the same page. Similar to a Q & A page where all
the questions are at the top and someone would click the question and be
brought to the answer at the bottom of the page.
I believe I've been told beforethat this is impossible with Publisher but
thought I'd try this group to see if there is another work around. I hate to
develop another page with the subsequent information because of the load time
of another page.
Any suggestions?
| |
| JoAnn Paules 2004-10-10, 7:17 pm |
| Which version of Publisher are you using?
--
JoAnn Paules
MVP Microsoft [Publisher]
"Donna" <Donna@discussions.microsoft.com> wrote in message
news:62B5C798-D2E4-4353-9EF9-769BB3ACA29D@microsoft.com...
>I want to put a hyperlink on a web page I designed in publisher and have it
> link to another location on the same page. Similar to a Q & A page where
> all
> the questions are at the top and someone would click the question and be
> brought to the answer at the bottom of the page.
>
> I believe I've been told beforethat this is impossible with Publisher but
> thought I'd try this group to see if there is another work around. I hate
> to
> develop another page with the subsequent information because of the load
> time
> of another page.
>
> Any suggestions?
---
Outgoing mail is certified Virus Free.
Checked by AVG anti-virus system (http://www.grisoft.com).
Version: 6.0.774 / Virus Database: 521 - Release Date: 10/7/2004
| |
| DavidF 2004-10-10, 7:17 pm |
| 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.
Hope this helps.
DavidF
"Donna" <Donna@discussions.microsoft.com> wrote in message
news:62B5C798-D2E4-4353-9EF9-769BB3ACA29D@microsoft.com...
> I want to put a hyperlink on a web page I designed in publisher and have
it
> link to another location on the same page. Similar to a Q & A page where
all
> the questions are at the top and someone would click the question and be
> brought to the answer at the bottom of the page.
>
> I believe I've been told beforethat this is impossible with Publisher but
> thought I'd try this group to see if there is another work around. I hate
to
> develop another page with the subsequent information because of the load
time
> of another page.
>
> Any suggestions?
| |
| DavidF 2004-10-10, 7:17 pm |
| It doesn't matter which version. DavidF
"JoAnn Paules" <jl_amerson@hotmail.com> wrote in message
news:OZydnQ5Zsv7VAvTcRVn-qg@suscom.com...
> Which version of Publisher are you using?
>
> --
> JoAnn Paules
> MVP Microsoft [Publisher]
>
>
>
> "Donna" <Donna@discussions.microsoft.com> wrote in message
> news:62B5C798-D2E4-4353-9EF9-769BB3ACA29D@microsoft.com...
it[color=darkred]
where[color=darkred]
but[color=darkred]
hate[color=darkred]
>
>
> ---
> Outgoing mail is certified Virus Free.
> Checked by AVG anti-virus system (http://www.grisoft.com).
> Version: 6.0.774 / Virus Database: 521 - Release Date: 10/7/2004
>
>
| |
| JoAnn Paules 2004-10-10, 7:17 pm |
| Oh - it can be done but not automatically? That's better than not at all.
--
JoAnn Paules
MVP Microsoft [Publisher]
"DavidF" <Nope@nospam.com> wrote in message
news:OXMSNWxrEHA.592@TK2MSFTNGP11.phx.gbl...
> 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.
>
> Hope this helps.
>
> DavidF
> "Donna" <Donna@discussions.microsoft.com> wrote in message
> news:62B5C798-D2E4-4353-9EF9-769BB3ACA29D@microsoft.com...
> it
> all
> to
> time
>
>
---
Outgoing mail is certified Virus Free.
Checked by AVG anti-virus system (http://www.grisoft.com).
Version: 6.0.774 / Virus Database: 521 - Release Date: 10/7/2004
| |
| David Bartosik 2004-10-10, 11:16 pm |
| this example looks oddly familiar ;-)
David Bartosik - [MSFT MVP]
www.publishermvps.com
www.davidbartosik.com
"DavidF" wrote:
> 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.
>
> Hope this helps.
>
> DavidF
> "Donna" <Donna@discussions.microsoft.com> wrote in message
> news:62B5C798-D2E4-4353-9EF9-769BB3ACA29D@microsoft.com...
> it
> all
> to
> time
>
>
>
| |
| DavidF 2004-10-11, 12:16 pm |
| Yeah, sorry, the first paragraph of it is directly from your site and I
forgot to give you credit. I think I also found the method I described in
the rest of it from your site at some time too, but couldn't find it on the
new site so used some notes I had made. I need to get used to your new site
so I can reference it when I try to back you up. Once again, sorry...no
disrespect intended.
DavidF
"David Bartosik" <DavidBartosik@discussions.microsoft.com> wrote in message
news:EC55757D-6B84-4349-BDE8-9B452AAD701A@microsoft.com...[color=darkred]
> this example looks oddly familiar ;-)
>
> David Bartosik - [MSFT MVP]
> www.publishermvps.com
> www.davidbartosik.com
>
>
> "DavidF" wrote:
>
Page[color=darkred]
bottom of[color=darkred]
how[color=darkred]
Don.[color=darkred]
you[color=darkred]
have[color=darkred]
where[color=darkred]
be[color=darkred]
but[color=darkred]
hate[color=darkred]
load[color=darkred]
| |
| David Bartosik 2004-10-11, 7:14 pm |
| there was no problem. btw the article is on the new 2000 section.
David Bartosik - [MSFT MVP]
www.publishermvps.com
www.davidbartosik.com
"DavidF" wrote:
> Yeah, sorry, the first paragraph of it is directly from your site and I
> forgot to give you credit. I think I also found the method I described in
> the rest of it from your site at some time too, but couldn't find it on the
> new site so used some notes I had made. I need to get used to your new site
> so I can reference it when I try to back you up. Once again, sorry...no
> disrespect intended.
>
> DavidF
>
> "David Bartosik" <DavidBartosik@discussions.microsoft.com> wrote in message
> news:EC55757D-6B84-4349-BDE8-9B452AAD701A@microsoft.com...
> Page
> bottom of
> how
> Don.
> you
> have
> where
> be
> but
> hate
> load
>
>
>
| |
| DavidF 2004-10-11, 7:14 pm |
| Thanks. I actually went back and did some exploring this morning and found
the article. Are you planning on cross referencing those articles that apply
to all the versions of Publisher eventually? I noticed that each time I go
back you have added content, and the new site is impressive. I must admit
to missing all the Webmaster Tips and links to other outside articles, etc.
and hope you bring that content back on line eventually either within the
MVP site or your DavidBartosik.com site. I noticed that you had posted a
couple articles since I last went there.
Most everything I've learned about using Publisher to create my website was
from your posts here, your website, those background articles and some trial
and terror. Thanks for all the work you do to provide this assistance.
DavidF
"David Bartosik" <DavidBartosik@discussions.microsoft.com> wrote in message
news:099918EB-85A3-4260-B875-361C66ED4A88@microsoft.com...[color=darkred]
> there was no problem. btw the article is on the new 2000 section.
>
> David Bartosik - [MSFT MVP]
> www.publishermvps.com
> www.davidbartosik.com
>
>
> "DavidF" wrote:
>
in[color=darkred]
the[color=darkred]
site[color=darkred]
message[color=darkred]
bookmarking[color=darkred]
a[color=darkred]
Of[color=darkred]
example of[color=darkred]
and[color=darkred]
page,[color=darkred]
and[color=darkred]
page[color=darkred]
and[color=darkred]
Publisher[color=darkred]
I[color=darkred]
the[color=darkred]
| |
| David Bartosik [MSFT MVP] 2004-10-12, 7:15 pm |
| My master plan (as time allows) is to have non publisher specific tips and
articles (return to) on davidbartosik.com. With some stuff that can be done
with Publisher located in the Advanced section of
http://www.publishermvps.com . As I'm still working out the articles on
version sections it's to early to say on the cross referencing. The plan is
to get all the old stuff back on one site or the other and add much more to
both.
David Bartosik - [MSFT MVP]
www.publishermvps.com
www.davidbartosik.com
"DavidF" <Nope@nospam.com> wrote in message
news:O2ZaZ39rEHA.1816@TK2MSFTNGP15.phx.gbl...
> Thanks. I actually went back and did some exploring this morning and found
> the article. Are you planning on cross referencing those articles that
> apply
> to all the versions of Publisher eventually? I noticed that each time I go
> back you have added content, and the new site is impressive. I must admit
> to missing all the Webmaster Tips and links to other outside articles,
> etc.
> and hope you bring that content back on line eventually either within the
> MVP site or your DavidBartosik.com site. I noticed that you had posted a
> couple articles since I last went there.
>
> Most everything I've learned about using Publisher to create my website
> was
> from your posts here, your website, those background articles and some
> trial
> and terror. Thanks for all the work you do to provide this assistance.
>
> DavidF
>
> "David Bartosik" <DavidBartosik@discussions.microsoft.com> wrote in
> message
> news:099918EB-85A3-4260-B875-361C66ED4A88@microsoft.com...
> in
> the
> site
> message
> bookmarking
> a
> Of
> example of
> and
> page,
> and
> page
> and
> Publisher
> I
> the
>
>
|
|
|
|
| Copyright 2003 - 2008 forum4designers.com Software forum Computer Hardware reviews |