Eliminating ??

P

Pat Curran

Hi;

If I use the return key to move down the web page before pasting an object
in design, when I view my finished page I get "??" whereever a Charactor
Return was. How can I move down the page without getting the "??" in my
finished page? Is there another way to move down the page without pressing
return? Thanks for any help.

Pat.
 
J

Jim Buyens

-----Original Message-----
Hi;
Howdy.

If I use the return key to move down the web page before
pasting an object in design, when I view my finished page
I get "??" whereever a Charactor Return was. How can I
move down the page without getting the "??" in my
finished page? Is there another way to move down the
page without pressing return? Thanks for any help.

Most designers use HTML tables or transparent GIF files
(spacers) to mark out white space. These approaches offer
finer control, and they work horizontally as well as
vertically.

Nevertheless, empty paragraphs (which you create by
pressing the return key) shouldn't appear in the browser
with qustion marks. Something else is going on. Can you
provide a URL?

Jim Buyens
Microsoft FrontPage MVP
http://www.interlacken.com
Author of:
*----------------------------------------------------
|\---------------------------------------------------
|| Microsoft Office FrontPage 2003 Inside Out
||---------------------------------------------------
|| Web Database Development Step by Step .NET Edition
|| Microsoft FrontPage Version 2002 Inside Out
|| Faster Smarter Beginning Programming
|| (All from Microsoft Press)
|/---------------------------------------------------
*----------------------------------------------------
 
P

Pat Curran

Thanks for your time Jim. I am designing instructions for a software
application I wrote. Here is my code:
************************Snip
<HTML>

<head>
<TITLE> Personal Data Manager Instructions </TITLE>
<meta name="Microsoft Theme" content="sumipntg 011">
</head>

<body>

<font size="5"> Export Data</font>

<p> ? </p>

<hr align="center">
<p> ? </p>
<table border="1" width="97%">
<tr>
<td width="57%" valign="top">
<p style="text-indent: 15; margin-left: 10; margin-right: 10"><font
size="4"><span style="font-family: Times New Roman; mso-fareast-font-family:
??; mso-ansi-language: EN-US; mso-fareast-language: KO; mso-bidi-language:
AR-SA">Here
you can back up Selected Records or All Records
to a Floppy Disk. You can also Export your Data
to a Palm Device or export it to Excel or
Outlook. After you send your taskings to
Outlook, You can then email out notifications of
the taskings automatically. You can also send
out Bulk Emails to the Unit, or groups in the
unit, like Plts, Enlisted, etc etc.
Click on one of the buttons for more
information.</span></font></p>
</td>
<td width="43%">?</td>
</tr>
</table>
<P align="left" style="margin-right: 500">&nbsp;&nbsp;&nbsp;
<P align="left">&nbsp;&nbsp;&nbsp;
<hr align="center">
<Font>
<hr align="center">
<font size="6"><a HREF="persdata.htm">Return Home</a></font>
</font>
</HTML>
*****************************Snip
Have a great New Year.
Pat
 
S

Stefan B Rusynko

See response below




| Thanks for your time Jim. I am designing instructions for a software
| application I wrote. Here is my code:
| ************************Snip
| <HTML>
|
| <head>
| <TITLE> Personal Data Manager Instructions </TITLE>
| <meta name="Microsoft Theme" content="sumipntg 011">
| </head>
|
| <body>
|
| <font size="5"> Export Data</font>
|
| <p> ? </p>
|
| <hr align="center">
| <p> ? </p>
| <table border="1" width="97%">
| <tr>
| <td width="57%" valign="top">
| <p style="text-indent: 15; margin-left: 10; margin-right: 10"><font
| size="4"><span style="font-family: Times New Roman; mso-fareast-font-family:
| ??; mso-ansi-language: EN-US; mso-fareast-language: KO; mso-bidi-language:
| AR-SA">Here
| you can back up Selected Records or All Records
| to a Floppy Disk. You can also Export your Data
| to a Palm Device or export it to Excel or
| Outlook. After you send your taskings to
| Outlook, You can then email out notifications of
| the taskings automatically. You can also send
| out Bulk Emails to the Unit, or groups in the
| unit, like Plts, Enlisted, etc etc.
| Click on one of the buttons for more
| information.</span></font></p>
| </td>
| <td width="43%">?</td>
| </tr>
| </table>
| <P align="left" style="margin-right: 500">&nbsp;&nbsp;&nbsp;
| <P align="left">&nbsp;&nbsp;&nbsp;
| <hr align="center">
| <Font>
| <hr align="center">
| <font size="6"><a HREF="persdata.htm">Return Home</a></font>
| </font>
| </HTML>
| *****************************Snip
| Have a great New Year.
| Pat
|
|
 
S

Stefan B Rusynko

Normally I would recommend you do not post attachments to the newsgroup
- you should have posted your snippet from View Source in IE

The attachment shows you probably have a corrupt font, or theme (or bad font applied to a theme)
In your above posted snippet

<font size="5"> Export Data</font>
<p> ? </p>
<hr align="center">
<p> ? </p>

And in your attachment

<font face="±¼¸²">
<font size="5"> Export Data</font>
<p> ¡¡ </p>
<!--msthemeseparator--><p align="center"><img src="sumhorsa.gif"></p>
<p> ¡¡ </p>

Recommend running a repair on FP and also modifying your theme to use a different font (or different theme)

PS
Your page is missing a </body> tag before </html>

_____________________________________________
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.net-sites.com/sitebuilder/newsgroups.asp
_____________________________________________


| Thanks Jim...Here is the File:
|
|
|
 
P

Pat Curran

Thanks Stefan...I'll check out the fonts and theme. Also thaks for the
pointer on just adding the code. I'll ensure I do it that way next time.

Happy New Year
Pat
 
Top