C Dolan
|
| Posted: 01/22/2002, 3:45 AM |
|
How can I get fields to justify - I have use the Before Show <p align...code, but this changes the text size to default
What I am trying to acomplish is text at 11px and justified.
|
|
|
 |
gluppi@comune.mo.it
|
| Posted: 02/18/2003, 12:22 AM |
|
In form properties - footer section add this simple Javascript:
<script language="JavaScript1.2" type="text/javascript">
document.myFormName.myInputName.style.textAlign = "right" ;
document.myFormName.myInputName.style.fontSize = "11px" ;
</script>
where myFormName and myInputName are the names of your form and input field.
Byee
Gianni
|
|
|
 |
|