Viewing 2 replies - 1 through 2 (of 2 total)
  • Your css styling is different:

    input[type="email"] {
        border: 1px solid #c1ba90;
        border-radius: 2px;
        padding: 4px;
        margin: 0px 0px 10px;
        outline: medium none;
        max-width: 100%;
    }
    
    input[type="tel"] {
        border: 2px inset;
    }

    Make them the same.

    input[type="email"],
    input[type="tel"] {
        border: 1px solid #c1ba90;
        border-radius: 2px;
        padding: 4px;
        margin: 0px 0px 10px;
        outline: medium none;
        max-width: 100%;
    }

    hope this helps

    Thread Starter wolverinejoe80

    (@wolverinejoe80)

    sweet! thx!!

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘tel box different than others’ is closed to new replies.