Hi,
I have a login form at 1TM.com and I need a space before the words when they type there login information into the input feilds.
Thanks!
Hi,
I have a login form at 1TM.com and I need a space before the words when they type there login information into the input feilds.
Thanks!
<input onfocus=“this.value=’ '+this.value;” … />
that’s the most straight forward way without knowing much about your current setup.
when they click on the box to type in it ( onFocus ) it will add a space before the value.
Crap, i didn’t realize it was a CSS thing. my bad.
Padding should do it.
Just adding some padding to the input field.
yes that worked Thanks allot guys
You’re welcome