NovaArgon Posted November 26, 2007 Share Posted November 26, 2007 I am trying to figure out a way to line up all the white text boxes Do you have any idea how? http://www.drysnot.com/guestbook.html Link to comment https://forums.phpfreaks.com/topic/78999-solved-how-to-line-up-text-boxes/ Share on other sites More sharing options...
spawnark Posted November 26, 2007 Share Posted November 26, 2007 Use tab spacing . it should line up Link to comment https://forums.phpfreaks.com/topic/78999-solved-how-to-line-up-text-boxes/#findComment-399778 Share on other sites More sharing options...
NovaArgon Posted November 26, 2007 Author Share Posted November 26, 2007 Thanks for the reply I don't think it did anything any thing else i could try? Link to comment https://forums.phpfreaks.com/topic/78999-solved-how-to-line-up-text-boxes/#findComment-399781 Share on other sites More sharing options...
danlindley Posted November 26, 2007 Share Posted November 26, 2007 i would be inclined to use a table; <table> <tr><td>Description</td><td>Text Box</td></tr> <tr><td>Describe it</td><td>Text box</td></tr> </table> things line upbetter thisway, dan Link to comment https://forums.phpfreaks.com/topic/78999-solved-how-to-line-up-text-boxes/#findComment-399791 Share on other sites More sharing options...
NovaArgon Posted November 26, 2007 Author Share Posted November 26, 2007 wow that deffently did something is there any way you can take a look and see what I missed? <form action="/cgi-sys/guestbook.cgi" target=guestwindow> <input type="hidden" name="user" value="e0120590"> <input type="hidden" name="action" value="addguest"> <input type="hidden" name="basehref" value="http://drysnot.com"> <input type="hidden" name="template" value="default"> <tr><td>Name</td><td><input type="text" name="name"></td></tr> <tr><td>Email</td><td><input type="text" name="email"></td></tr> <tr><td>Url</td><td><input type="text" name="url"></td></tr> <tr><td>Comments</td><td><textarea name="comments"></textarea></td></tr> <input type="submit" value="Sign Guestbook"> </form> Link to comment https://forums.phpfreaks.com/topic/78999-solved-how-to-line-up-text-boxes/#findComment-399795 Share on other sites More sharing options...
danlindley Posted November 26, 2007 Share Posted November 26, 2007 <TABLE><tr><td>Name</td><td><input type="text" name="name"></td></tr> <tr><td>Email</td><td><input type="text" name="email"></td></tr> <tr><td>Url</td><td><input type="text" name="url"></td></tr> <tr><td>Comments</td><td><textarea name="comments"></textarea></td></tr></table> <input type="submit" value="Sign Guestbook"> </form> try this with the tabletags in... dan Link to comment https://forums.phpfreaks.com/topic/78999-solved-how-to-line-up-text-boxes/#findComment-399799 Share on other sites More sharing options...
NovaArgon Posted November 26, 2007 Author Share Posted November 26, 2007 Sweet thanks so much that worked great!!! Link to comment https://forums.phpfreaks.com/topic/78999-solved-how-to-line-up-text-boxes/#findComment-399804 Share on other sites More sharing options...
danlindley Posted November 26, 2007 Share Posted November 26, 2007 No problemo! Link to comment https://forums.phpfreaks.com/topic/78999-solved-how-to-line-up-text-boxes/#findComment-399806 Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.