New please help

S

snccoulter

I created my web page and it work nicely when I have it open in FrontPage but
when I preview in my browser IE-6 the pages open on top of each other instead
of moving from one page to another what did I do wrong?
 
M

Murray

It would be almost impossible to say without seeing this happen. Can you
post a link?
 
S

snccoulter

Sorry i am deployed and i am attempting to have a web page reay to post when
i get home the serverhere will not allow me to upload to any serve. a
discription is when you click on the link the page builds ontop of each other
is the only discription i can come up with i could send it if there ia a way
to send the info
 
L

lord arse

If you put <base target="_blank"> somewhere in the <head></head>
section, all of the links on that page will open in the same window,
unless specified directly in the href.
 
A

Andrew Murray

I believe (I hope) you mean that each link opens a new (browser) window?

In that case, you have to change the "target" to be the *same* window as the
page that its linking from. The options are in the Hyperlinks dialogue -
click the "Target" button.

If this is not the case, can you explain a little more clearly? A link to
the page concerned would help us 110%!
 
R

Ronx

No.
With <base target="_blank"> in the <head> section, every link on the page
will open in a new window. If the browser is Netscape, or open to full
screen, then the effect will be that the linked pages open one on top of
the previous page.

The solution to sncoulter's problem (if this is the problem) is to remove
the <base target=..> tag, and/or as Andrew remarked, check that each link
opens in the same window by removing any target from the links.
 
Top