#searchform input[type = text] {
border: 0;
padding: 8px 0;
width: 100%;
max-width: 640px;
top: 0;
margin:0;
position: relative;
}
I have the view port setup correctly and every else works fine, but there is white space on the right side of the text box. After tinkering with the css properties in Chrome to get live updates using Chrome Developer Tools I stumbled across a very strange partial solution. If i disable the width: 100%; property and re-enable it the white space disappears. I reload the page and its back again.
How can I fix this issue?












