/* This CSS changes the JQM text input and select widths */ .ui-input-text { width: 85px; display: inline-block; } .ui-select { width: 100px; display: inline-block; }
The following things are happening..... the input "box" is hard coded and is no longer adjustable by an individual Style= parameter. If I use and ID="my-page" identifier, then the text portion grows, but the "box" stays the same (as above 85px).
Any help on how to set individual input field widths would be greatly apprciated.