Text wrap in form results

  • Thread starter Thread starter just me
  • Start date Start date
J

just me

Greetings,
I have built a web, a part of which includes a feedback form for site
visitors to fill, the results of which are displayed on a page.
This works fine, but the results - which are set to appear inside a fixed
width cell within a fixed width table, push the page out as wide as each
paragraph. There is no word wrap in the results, ruining the page's layout.
The page is at http://www.clairemooney.co.uk/comments.htm
If you look at any other page on the site you will see the layout as it
should be.
Can anyone advise why this might be?
I've tried putting the results into its own fixed-width table within the
cell, but the same problem.
Cheers.
 
Don't use the "Formatted" style on this page. "Formatted"
never word wraps unless you add a physical line ending.

If you want a typewriter-like font, jsut add this to your
<head> section.

<style>
body { font-family: Courier New, Courier, monospace }
</style>

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

Jim Buyens said:
Don't use the "Formatted" style on this page. "Formatted"
never word wraps unless you add a physical line ending.

If you want a typewriter-like font, jsut add this to your
<head> section.

<style>
body { font-family: Courier New, Courier, monospace }
</style>

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