Size of text box

I’m using a series of text boxes for numerical inputs. The text input boxes are very wide - is there some way of adjusting the text box size?

image

Hi Bruce,

You can use CSS to control the display of things like the text boxes. For example, include this in the file index.html, just after <head>

<style>
    input[type=text].form-control {
        width:100px;
    }
</style>

That will shrunk it to be much smaller.

image

WILL