This forum is no longer open and is for reading/searching only.
Please use our new MachForm Community Forum instead.
MachForm Community Forums » MachForm 3
Label text without field
Started 11 years ago by b1awxg77 | 3 posts |
-
Is there a way to add a Label without a field. Example. Assuming I want my name, phone number, address and email as labels to appear on a form with a locked field under it that would show the phone number, address and so on.
I've tried using section break but I cannot have 2 or 3 in a column format but only under each other.
Posted 11 years ago # -
You can use HTML for that. For example this code creates 3 boxes on one row. The center box is to put space between the other two, because Cellspacing and Cellpadding don't seem to work.
<table cellpadding="2" cellspacing="1"><tr> <td>Square1</td> <td width = "5"> </td> <td>Square3</td> </tr>
Posted 11 years ago # -
Oh, I forgot to end it all with
'</table>'
Posted 11 years ago #
Reply
You must log in to post.