Layout menu no longer exists. Try Format | Position... instead. If you want to center button in the form, absolute positioning is not the best approach. You can center button in, say, 800x600 form, but what if browser window or text size is bigger? Visually impaired users may decide to set any text size and ignore specified fonts, so what did fit into 800x600 on your screen will overlap in user's browser. Try using tables or CSS/Div instead. Try place form elements in table cells, for example and place button in the center cell. Trivial example:
<table width="100%">
<tr>
<td>
Some text
</td>
</tr>
<tr>
<td align="center" valign="middle">
<input type="button" value="Click" />
</td>
</tr>
<tr>
<td>
Some text
</td>
</tr>
</table>
Thanks
------------------------------------------------------------
This posting is provided "AS IS" with no warranties, and confers no rights.