I'm trying to use the jquery Spinner, which by default has 8 fields, and is too large for my purpose, which in this case would be 2 fields. I have already looked at your documentation, but the most I could do was to decrease its font, as shown below:
<input readonly id="spinner" name="value">
<style>
.ui-widget input,
.ui-widget select,
.ui-widget textarea,
.ui-widget button {
font-size: small;
maxlength: 3;
outline: 1px; /* add this bit */
border: 1px inset;
}
</style>
Is it possible to do this customization?