 |
|
|
| View previous topic :: View next topic |
| Author |
Message |
Bogeyplay
Joined: 27 Oct 2004 Posts: 1 Location: California
|
Posted: Wed Oct 27, 2004 11:00 am Preformatted text effecting I/E display |
|
|
|
Currently, I have table that displays data extracted from a database with the following code snipet:
****
<align="left"><font face=arial size=2><b>Date Resolved: $(REPLACE,$25,NULL," ")<b><br>
<align="left"><font face=arial size=2><b>Case Status: $10</font></b><br>
<align="left"><font face=arial size=2><b>Product: $(TRIM,$5) $6</font></b><br>
<align="left"><font face=arial size=2><b>Platform: $(TRIM,$12) $13</font></b><br>
<table width="100%">
<tr><td align="left"><font face=arial size="2"><pre width="5">$23</pre></font></td>
</TR>
</table><hr><br>
***
Since I am assigning the font style to be Arial and size to be 2, in the earlier table cells, I want my preformatted text to be Arial and Size 2 also. However, the preformatting works relating to carriage returns and new paragraphs, but shrinks to less than arial-2. I have up'd the fontsize to 2.5 and it still looks bad. However, when copying the text to a mail program or word, the font comes out as Ariel 10.
Is there some other tag of function that I can use that would give me better font display in HTML without every user changing their I/E font assigments ?
Thanks
Bogey |
|
nagasree
Joined: 21 Sep 2004 Posts: 82 Location: Hyderabad, India
|
Posted: Fri Oct 29, 2004 12:54 am |
|
|
|
Have the font tag within pre tag
| Code: |
<align="left"><font face=arial size=2><b>Date Resolved: $(REPLACE,$25,NULL," ")<b><br>
<align="left"><font face=arial size=2><b>Case Status: $10</font></b><br>
<align="left"><font face=arial size=2><b>Product: $(TRIM,$5) $6</font></b><br>
<align="left"><font face=arial size=2><b>Platform: $(TRIM,$12) $13</font></b><br>
<table width="100%">
<tr><td align="left"><pre width="5"><font face=arial size="2">$23</font></pre></td>
</TR>
</table><hr><br>
|
-Nagasree |
|
|
|
You cannot post new topics in this forum You cannot reply to topics in this forum You cannot edit your posts in this forum You cannot delete your posts in this forum You cannot vote in polls in this forum
|
|
|
|
|
 |
|
|
|
|
|
|
|