How to fix the search bar bug on iPad
There is a skin bug of the search bar on iPad - it is shifted. does someone know how to fix the css ?
This is a well-known problem with iOS devices: they tend to override the defaults for all sorts of form elements, including buttons, checkboxes, radio buttons, etc. To fix this particular problem, try adding this custom CSS:
input[type="text"] {
-webkit-appearance: none;
}
That's worked for me. I'm putting together a highly hacked theme for Askbot for my site and this problem was vexing me.
Sure, but please be gentle. I am still working on it heavily. http://ask.cvxr.com
I added it right into the skin's CSS file. Make sure to use the CSS inspector to see if it is not being overridden by other style entries.
To enter a block of code:
Comments