I have a problem with my css and IE8, I use boderless tables, images... so this was placed in the CSS: * { margin: 0; padding: 0; border: none;} problem is that now in IE8 I lose the border in the input fields/boxes *major problem for my ordering forum. here is an example with out placing something in the shopping cart.: http://www.elitesat.com/HughesNetdishpointing.asp Is there an easy fix? I know if i remove "border: none;" it displays the input boxes, but then everything else is messed-up. Thanks for any help!
You could try: input { border: 1px solid #696969; } Code (markup): or something similar. This will add borders to your input elements.