I am trying to tab the text to look like the first s/s, text position in textinput,
it currently displays as second s/s/
the textinput is populated from data base,
how do I tab the text
Are you trying to add a space before the value, inside the input field?
Hi Michael,
Output is set in your custom "ios" theme. To edit Input component you would need to change lines 503-511 in your theme:
code
input.ui-input-text, .ui-input-search {
height: 29px;
line-height: 29px;
padding-top: 0;
padding-bottom: 0;
border-radius: 100px;
box-shadow: 0 1px 3px rgba(0,0,0,0.6) inset;
font-size: 14px;
}/code
Hi, try the following code instead the code Katya suggested above:
codechange lines 503-511 in your theme
input.ui-input-text, .ui-input-search {
height: 29px;
line-height: 29px;
padding: 0 15px !important;
box-sizing: border-box;
border-radius: 100px;
box-shadow: 0 1px 3px rgba(0,0,0,0.6) inset;
font-size: 14px;
}/code
Looks like you have old browser version. Please replace the code Katya and I suggested with the following:
codeinput.ui-input-text, .ui-input-search {
height: 29px;
line-height: 29px;
padding: 0 5px !important;
-webkit-box-sizing: border-box;
-moz-box-sizing: border-box;
box-sizing: border-box;
border-radius: 100px;
box-shadow: 0 1px 3px rgba(0,0,0,0.6) inset;
font-size: 14px;
}/code