Hi I have the following in my html form: Unfortunately, the "maxlength" isn't working. It is showing up a long text box. How do I fix this? thanks Tintu
You need to change the width of the text box. The maxlength is for the number of characters allowed but separate from the width.
I recommend to use CSS for set width of any element. So in your case would be: #product_staisfication { width: 100px; }