View Full Version : how do i get


afirefly
03-26-2006, 09:53 PM
email box to line up with the first name and last name boxes

this is link

http://www.zladdersupport.com/zlgame.html

allie
03-27-2006, 01:56 PM
You could try a few spaces with  


<div>E-mail:&nbsp;&nbsp;<input type="text" name="email.address" id="email" size="50" maxlength="50" ></div>

You could cheat and put a spacer.gif in there:

<div>E-mail:<img src="spacer.gif" width="20" height="1" alt="spacer" border="0"><input type="text" name="email.address" id="email" size="50" maxlength="50" ></div>

You can google spacer.gif to find one, it's just an invisible gif image. Adjust the width to make it fit.

J to the izzosh
03-28-2006, 03:06 AM
Your best bet would be to put those form elements in a table.


<table>
<tr>
<td>First Name:</td>
<td><input type="...." /></td>
</tr>

<tr>
<td>Last Name:</td>
<td><input type="...." /></td>
</tr>

<tr>
<td>E-mail:</td>
<td><input type="...." /></td>
</tr>
</table>

Bootilicious
03-28-2006, 04:13 AM
I'd just put space too, but thats just me.

Bootilicious
03-28-2006, 04:13 AM
I'd just put space too, but thats just me.