Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations Chris Miller on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Forms and CSS style sheets

Status
Not open for further replies.
If you mean having the "Name", "URL" and "E-Mail" lining up, that's easy, you have an extra
Code:
 
for the "Name" tag...
I have not failed; I merely found 100,000 different ways of not succeding...
 
What you could do is just put it in a table. Have Name, E.Mail, URL and Message in one table cell and have the input fields in the other. This would also make the "message" text align with the message box, seeing as it's way on the bottom right now. If you don't know what do to still just say so and I'll type up the code. ~PeloGFX
 
well it's not the best looking table in the world but it's align'd
<form method=&quot;post&quot; action=&quot;resubmit.asp&quot;>
<font face=&quot;verdana&quot; color=&quot;white&quot; size=&quot;1&quot;><b>Topic: </b></font>&nbsp;&nbsp;&nbsp;<font face=&quot;verdana&quot; color=&quot;white&quot; size=&quot;1&quot;><b> aaaaaaaa <br><br></b></font><br>
<input type=&quot;hidden&quot; name=&quot;topic&quot; aaaaaaaa &quot;>
<input type=&quot;hidden&quot; name=&quot;msgID&quot; value=&quot;5&quot;>

<table>
<tr><td valign=top>
<p>
<font face=&quot;verdana&quot; color=&quot;white&quot; size=&quot;1&quot;><b>Name:<br><br> </b></font>
<font face=&quot;verdana&quot; color=&quot;white&quot; size=&quot;1&quot;><b>E.mail:<br><br> </b></font>
<font face=&quot;verdana&quot; color=&quot;white&quot; size=&quot;1&quot;><b>URL:<br><br> </b></font>
</td><td>
<input type=&quot;text&quot; name=&quot;http&quot; size=20><br>
<input type=&quot;text&quot; name=&quot;email&quot; size=20><br>
<input type=&quot;text&quot; name=&quot;name&quot; maxlength=&quot;20&quot;><br>
</td></tr>
<tr><td valign=top>
<font face=&quot;verdana&quot; color=&quot;white&quot; size=&quot;1&quot;><b>Message:<br> </b></font>
</td><td>
<textarea style=&quot;font-family:verdana;&quot; name=&quot;body&quot; rows=&quot;9&quot; cols=&quot;40&quot;></textarea></p><br>
</td></tr>
</table>
<center>
<input type=&quot;submit&quot; name=&quot;submit&quot; class=&quot;searchbox&quot; value=&quot;Submit&quot; size=&quot;1&quot;></input>
<input type=&quot;reset&quot; name=&quot;clear&quot; class=&quot;searchbox&quot; value=&quot;Reset&quot; size=&quot;1&quot;></input></p>
</table>

</form>


hope that helps You cannot mandate productivity, you must provide the tools to let people become their best.
-Steve Jobs
admin@onpntwebdesigns.com
 
is this what you meant also to do have done???

<input type=&quot;text&quot; name=&quot;http&quot; size=20 style=&quot;width:300;&quot;><br>
<input type=&quot;text&quot; name=&quot;email&quot; size=20 style=&quot;width:300;&quot;><br>
<input type=&quot;text&quot; name=&quot;name&quot; maxlength=&quot;20&quot; style=&quot;width:300;&quot;><br>
<font face=&quot;verdana&quot; color=&quot;white&quot; size=&quot;1&quot;><b>Message:<br> </b></font>
<textarea style=&quot;font-family:verdana;&quot; name=&quot;body&quot; rows=&quot;9&quot; cols=&quot;40&quot;></textarea></p><br> You cannot mandate productivity, you must provide the tools to let people become their best.
-Steve Jobs
admin@onpntwebdesigns.com
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top