hyperlinks

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

Guest

i found after publishing my site that when you reach the index page and click
on any of the links showing on that page it opens into another browser..

i'm not to sure if maybe it's because of how the leveling is.
i'm not so sure about
parent level, child level......

i do know that there are some links i want to show on all my pages.

kim
 
okay, just one other question.
i'm not really sure about the levels when that screen comes up. all i know
is i have about 13 links that i want to show on the botom of all my pages.
which setting should i use? global?
 
If all 13 pages are Child pages under your Home page insert a Nav Bar and select Children under Home
- otherwise you may need multiple nav bars

Global is for those pages at the same level as the home page in Nav View

--

_____________________________________________
SBR @ ENJOY (-: [ Microsoft MVP - FrontPage ]
"Warning - Using the F1 Key will not break anything!" (-;
To find the best Newsgroup for FrontPage support see:
http://www.frontpagemvps.com/FrontPageNewsGroups/tabid/53/Default.aspx
_____________________________________________


| okay, just one other question.
| i'm not really sure about the levels when that screen comes up. all i know
| is i have about 13 links that i want to show on the botom of all my pages.
| which setting should i use? global?
|
| "Ronx" wrote:
|
| > In code view (or HTML view) look for a tag like <base target="_blank">, and
| > delete it.
| > --
| > Ron Symonds
| > Microsoft MVP (FrontPage)
| > Reply only to group - emails will be deleted unread.
| >
| > | > > i found after publishing my site that when you reach the index page and
| > click
| > > on any of the links showing on that page it opens into another browser..
| > >
| > > i'm not to sure if maybe it's because of how the leveling is.
| > > i'm not so sure about
| > > parent level, child level......
| > >
| > > i do know that there are some links i want to show on all my pages.
| > >
| > > kim
| >
| >
| >
 
There are no levels in shown in that screen. Are you onto a different topic
or trying to delete the <base href from the wrong screen? You should be in
Code view (or HTML view) and the tag is in the <head> section of the code.

If you talking about link bar properties, then choose the properties that
displays your links, according to the layout in Navigation View.

If all your pages are alongside the Home page, then use Global.
If they are all under the home page, use Children under Home
If there is a deeper tree - then experiment until you get the result you
want.
 
okay thank you

Ronx said:
There are no levels in shown in that screen. Are you onto a different topic
or trying to delete the <base href from the wrong screen? You should be in
Code view (or HTML view) and the tag is in the <head> section of the code.

If you talking about link bar properties, then choose the properties that
displays your links, according to the layout in Navigation View.

If all your pages are alongside the Home page, then use Global.
If they are all under the home page, use Children under Home
If there is a deeper tree - then experiment until you get the result you
want.
 
Hi I have a problem with putting hyperlinks to documents located on a server.
it keeps coming up with, "the server cannot find the document" when I have
already uploaded it.

Just to clarify when I right click on the phrase that I want linked to a
document, I put:
javascript:/%20NewWindow('folder/xxxxxxxxx.htm#pageref')

I already uploaded the document and inserted the page reference with the code:
<a name ="para_x"><a/a>

I am not much of a front page user as I was just asked to fill in on the job
as we were short of staff.

But it always gives me the same error. I don't know if its the server (I
checked that the documents were on the server!) or if it was front page.

Any help would be much appreciated!

Thanks
ttlaw
 
%20 is a space, remove it from all links.

--
==============================================
Thomas A. Rowe (Microsoft MVP - FrontPage)
==============================================
If you feel your current issue is a results of installing
a Service Pack or security update, please contact
Microsoft Product Support Services:
http://support.microsoft.com
If the problem can be shown to have been caused by a
security update, then there is usually no charge for the call.
==============================================
 
javascript:/%20NewWindow('folder/xxxxxxxxx.htm#pageref')

should be
javascript:NewWindow('folder/xxxxxxxxx.htm#pageref')

and for the above link:
<a name ="para_x"><a/a>
should be
<a name ="pageref"></a>

You must have a JavaScript function declared in the page named
NewWindow, to open the pop-up window.
 
Back
Top