I have a simple problem but I can't solve it.
The problem is that I want to diplay two textboxes next to each other. The firstname and lastname should be at the same line.
It will not react at <div style="float: left;">
A link so you would understand my problem better.
If i use only this little peace of code the it works.
The problem is that I want to diplay two textboxes next to each other. The firstname and lastname should be at the same line.
It will not react at <div style="float: left;">
A link so you would understand my problem better.
If i use only this little peace of code the it works.
Code:
<div style="float: left;">
Förnamn<strong>*</strong>
<input type="text" name="signup_username">
</div>
<div style="float: left;">
Efternamn<b>*</b>
<input type="password" name="signup_password">
</div>