0
I’m trying to use jquery’s Spinner, which by default has 8 fields, and is too big for my goal, which in case would be 2 fields. I already took a look at your documentation, but the most I could was to decrease your source, as an example 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>
It is possible to make this customization?