Does not display

B

Bill gold

I worked out the page in design view.
But it does not display in Preview or Display in Browser.
Any idea why?
FP2003 XP
 
M

Murray

Yes. But the universe of possibilities is too large to start guessing. Can
you post a link to the page?
 
M

Murray

The page is deeply horked.

The javscript functions in the head are repeated about eleventy times, and
there is a missing comment closing tag at the bottom of the script - the
redundant code will just make your page heavy and slow to load, but the
missing comment tag will make the page blank, as you see happening.

To solve the latter problem, change this -

</script>
<link rel="stylesheet" type="text/css" href="TW.css">
</head>

to this -

//-->
</script>
<link rel="stylesheet" type="text/css" href="TW.css">
</head>
 
B

Bill gold

--
bill


Murray said:
The page is deeply horked.

The javscript functions in the head are repeated about eleventy times, and
there is a missing comment closing tag at the bottom of the script - the
redundant code will just make your page heavy and slow to load, but the
missing comment tag will make the page blank, as you see happening.

To solve the latter problem, change this -

</script>
<link rel="stylesheet" type="text/css" href="TW.css">
</head>

to this -

//-->
</script>
<link rel="stylesheet" type="text/css" href="TW.css">
</head>


--
Murray
============




Thanksonce again murray.
noy sure why the java script functions repeated eleventy times. It is
disturbing.
It was inserted by FP when I inserted the interactive buttons.

never heard the word horked before.
Thanx again
 
R

Rob Giordano \(Crash\)

Must stem from: "torqued" - which is what I've always used, but it's hard
to spell :)
 
Top