Thanks for pointing me in the right direction
I switched the two <tr> tags around, here is how the code looks now:
<tr>
<td width="160" class="required"> <?php echo ('Full Name'); ?>: </td>
<td>
<span style="display:inline-block;">
<input type="text" size=45 name="name" id="user-name" value="<?php echo $info['name']; ?>" /> </span>
<span class="error"></span>
<div class="error"><?php echo $errors['name']; ?></div>
</td>
</tr>
<tr>
<td width="160" class="required"> <?php echo ('Email Address'); ?>: </td>
<td>
<div class="attached input">
<input type="text" size=45 name="email" id="user-email" class="attached"
autocomplete="off" autocorrect="off" value="<?php echo $info['email']; ?>" /> </span>
<a href="?a=open&uid={id}" data-dialog="ajax.php/users/lookup/form"
class="attached button"><i class="icon-search"></i></a>
</div>
<span class="error"></span>
<div class="error"><?php echo $errors['email']; ?></div>
</td>
</tr>
Its a minor complaint that our agents had, so we wanted to try and change it for them.
This can be marked closed, thank you ntozier