Sorry maye if you are still there, i have 1 more question....
This works perfect (and will align text to the left):
"<td><input type=""text"" name=""product1"" class=""text"" maxlength=""3"" style=""text-align: left; vertical-align: middle;""></td>"
as you can see the maxlenght is 3 (which will be a three digit number). So as it is it will look something like this (for 3 rows)
|100______|
|20_______|
|7________|
do you know how I can align, the 3 digit area of the text box where you can write, to the right. So the above input will look something like:
|100______|
|_20______|
|__7______|
do you know what I mean?
should I post this in another question?
Thanks for the help
Main Topics
Browse All Topics





by: DarthSonicPosted on 2004-02-12 at 01:27:26ID: 10340725
use stylesheets (CSS):
"<td><input type=""text"" name=""product1"" class=""text"" maxlength=""3"" style=""text-align: right; vertical-align: middle;""></td>"