IE8 and CSS problem

Discussion in 'CSS' started by Hughes1, Dec 19, 2008.

  1. #1
    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!
     
    Hughes1, Dec 19, 2008 IP
  2. tarponkeith

    tarponkeith Well-Known Member

    Messages:
    4,758
    Likes Received:
    279
    Best Answers:
    0
    Trophy Points:
    180
    #2
    You could try:

    input { border: 1px solid #696969; }
    Code (markup):
    or something similar. This will add borders to your input elements.
     
    tarponkeith, Dec 20, 2008 IP
    buffalo likes this.
  3. Hughes1

    Hughes1 Active Member

    Messages:
    106
    Likes Received:
    3
    Best Answers:
    0
    Trophy Points:
    73
    #3
    Thanks tarponkeith,

    That solved my problem!!
     
    Hughes1, Dec 21, 2008 IP