Dear all,
I am trying to place an image and an input text and password field on one line but the two input fields are not on line with my images.
As you can see on my screen shot I have 3 images in line and the input fields in between are placed to low.
Do you have any idea on how I can fix this?
here is the code for the form:
<form method="post" action="talent/talent_login.php">
<div id="logintalent">
<img src="images/logintalent.gif" >
<input type="text" name="talentemailaddress" value ="" size ="34"></input>
<img src="images/passworttalent.gif" >
<input type="password" name="talentpassword" size ="33"></input>
<input type="image" SRC="images/login.gif" ALT="Submit Form" />
</div>
</form>
and here for my used css definitions:
#logintalent {
clear: both;
width: 755px;
height: 30px;
position:relative;
left: 30px;
border: 1px solid;
border-color: #70237b;
}
many thanks!
Robert