The text within the input field of the text box is currently aligned to the right. This is because in style.css of the theme it is specified:

#search input.form-text, #user-login-form input.form-text {
height: 18px;
width: 95px;
padding: 2px 3px 0 3px;
border: 2px solid #D1DBEC;
border-bottom: 0;
text-align: right;
font-family: Arial, Helvetica, sans-serif;
color: #9CA6B4;
background-color: #FBFCFE;
vertical-align: bottom;

In the above, "text-align: right;" should be changed to "text-align: left;"

Comments

itapplication’s picture

Status: Active » Closed (won't fix)