in reply to content of an email

You may want to display it in three lines, but you're telling the HTML you want it displayed in one line:
<tr><td >My Information</td><td width=100><fontcolor=blue> DIV_BORY__V10.30.0__AR LIV_BORY_1696_V10.30.0__HD LIV_BORY_162X_V10.30.0__CL </font></td>
Maybe you should change that table so that each BORY line has a <tr> pair of it's own - or at the very least, you should force newlines with <br>.

Replies are listed 'Best First'.
Re: Re: content of an email
by mpolo (Chaplain) on Apr 16, 2004 at 07:43 UTC
    In other words, HTML considers any amount of white space (including carriage returns) to be equivalent to a single space. Hence writing
    <tr><td >My Information</td><td width=100><fontcolor=blue> DIV_BORY__V10.30.0__AR LIV_BORY_1696_V10.30.0__HD LIV_BORY_162X_V10.30.0__CL </font></td>
    is the same as writing
    <tr><td >My Information</td><td width=100><fontcolor=blue> DIV_BORY__V10.30.0__AR LIV_BORY_1696_V10.30.0__HD LIV_BORY_162X_V10.30 +.0__CL </font></td>
    As matija says, the solution is to use <tr> pairs around each line -- this creates new lines for your table. If you put 'border="1"' in the table definition, you would see that each row is in a different cell of the table. The other solution, also mentioned above, using <br> would put all the information into one single row, but still separated on different lines.
      Thank you very much for your solution!I have corected the code and now it displayes properly. Thanks again for you time