styling input buttons problem, IE6

Discussion in 'CSS' started by Abh, Jun 28, 2010.

  1. #1
    Abh, Jun 28, 2010 IP
  2. designmonkey

    designmonkey Peon

    Messages:
    70
    Likes Received:
    3
    Best Answers:
    0
    Trophy Points:
    0
    #2
    AFAIK for styling inputs on IE 6 you need to rely on Javascript, css wont do much.
     
    designmonkey, Jun 28, 2010 IP
  3. nhatle84

    nhatle84 Active Member

    Messages:
    369
    Likes Received:
    0
    Best Answers:
    0
    Trophy Points:
    51
    #3
    Btw, why focus so much on IE6.. it's almost history.

    Nowadays more than 85% of the people are using at least IE7 and above. IE 9 is here too :)
     
    nhatle84, Jun 28, 2010 IP
  4. Abh

    Abh Active Member

    Messages:
    162
    Likes Received:
    8
    Best Answers:
    0
    Trophy Points:
    60
    #4
    That 15% of people that use IE6 are still customers i'd like to have.

    I'll look into that javascript styling, designmonkey. Since i have no idea how to do it, yet.
     
    Abh, Jun 29, 2010 IP
  5. Master_Seller

    Master_Seller Well-Known Member

    Messages:
    731
    Likes Received:
    15
    Best Answers:
    0
    Trophy Points:
    110
    #5
    IE6 does not support hover on any other element except Anchor. But there are many hacks for it. I have attached one of them.
    Its a .htc file. You just need to call that file in your css and IE6 will start hovering on every element.

    Add this line in your css code to call the file.

    body {
    behavior: url(csshover.htc);
    }


    Your problem will be solved.
     
    Master_Seller, Jun 30, 2010 IP
  6. Abh

    Abh Active Member

    Messages:
    162
    Likes Received:
    8
    Best Answers:
    0
    Trophy Points:
    60
    #6
    works great, tx :)
     
    Abh, Jun 30, 2010 IP