I have this code (CodeIgniter):
<tr>
<td width="80">Gender*:</td>
<td>
<?php echo form_dropdown('gender', $gender_select, $gender_val); ?>
</td>
<td>
<?php echo priv('gender',$profile_level['gender'])?>
</td>
</tr>
Is it possible to have an inline CSS style inside the 'php line' to make its height or width be adjusted to any size I want?
<td>? Or, in a relevant tag withinform_dropdown, if that's a function you are able to change (say in the<input>or (if any) enclosing<div>tag).