I have a page at ---link removed now---
You can check it in FF and IE (I have IE 9). In it you can see that the search box at the top right is having a padding (left:32px and right:72px). The padding works correctly in FF and Chrome but not in IE.
What can be the possible reason.
Search box code-
<form action="">
<input type="text" name="search" id="search" />
<input type="submit" id="button" value="" />
</form>
CSS:
#search {
background:url(images/searchlens.jpg) no-repeat 0 0;
float:right;
width: 286px;
height:40px;
border:none;
padding-left: 32px;
padding-right:72px;
}