I am not great with html/css. But why does the first html have Home and form textbox in the same line (as i want) and the second has the textbox (and other boxes and links) on a separate line?
<div class="login">
<form action="/login?ret=%2f" method="post"><div>
<a href="/" title="Home">Home</a>
<input type="text" name="username"/>
<div class="login">
<a href="/" title="Home">Home</a>
<form action="/login?ret=%2f" method="post"><div>
<input type="text" name="username"/>