Friday 27 June 2003 3:29:51 am
Just make some css classes like the following: For example:
<td class="newbox1">
{attribute_edit_gui attribute=$node.data_map.information} </td>
<td class="newbox2">
{attribute_edit_gui attribute=$node.data_map.otherinformation} </td> In your css file have:
.newbox1 input
{
width:100px; }
.newbox2 input
{
width:200px; } If you are displaying a text-field then use something like:
.newbox1 textarea, .newbox2 textarea
{
width:500px; }
|