Ok thanks for that but it doesn't really work, that just gives you the standard login boxes. I want them to lay horizontally. So I've found the code and changed it so its just sitting in columns as below. It works fine except that the text is coloured grey. How do I change it to white like the rest of the theme. Additionally how do I make the bar at the top of the screen a few pixels deeper vertically? Thanks.
<form action="', $scripturl, '?action=login2" method="post" accept-charset="', $context['character_set'], '">
<table border="0" cellspacing="1" cellpadding="0" class="ssi_table">
<tr>
<td align="right">', $txt['vp_welcome_guest'], '</td>
<td align="right">', $txt['vp_login'], ': </td>
<td align="right">', $txt['username'], ': </td>
<td><input type="text" id="user" name="user" size="9" value="', $user_info['username'], '" class="input_text" /></td>
<td align="right">', $txt['password'], ': </td>
<td><input type="password" name="passwrd" id="passwrd" size="9" class="input_password" /></td>
<td><input type="hidden" name="cookielength" value="-1" /></td>
<td><input type="submit" value="', $txt['login'], '" class="button_submit" /></td>
</tr>
</table>
</form>';