I have a login form, with username and password input fields.
These boxes have shadows, and when you click the box, the cursor blinks in the shadow and you can barely see it.
I want someone to click in the text box and have the cursor blink at a 3px indent from the left of the text box. How do I do this? Thanks!
Does your input have a class on the css file? If yes, you should add the element
padding-left: 3px;to that class.If not, you should add
style="padding-left: 3px;"to the input tag in your html.