Quantcast
Channel: Topic Tag: contact-form | WordPress.org
Viewing all articles
Browse latest Browse all 5994

davmerit on "[Plugin: Contact Form 7] How do I decrease the size of the text boxes?"

$
0
0

The problem comes from code below.

input[type="text"], input[type="email"], input[type="password"], textarea {
    padding: 1%;
    border: 1px solid #EAEAEA;
    line-height: 20px;
    width: 98%;  /* this is causing the problem */
    margin: 0px 0px 20px;
    background-color: #F8F8F8;
    border-radius: 3px;
}​

​​You can find this code on line 281 of style.css in your theme. To fix the problem simply comment out the that like so

input[type="text"], input[type="email"], input[type="password"], textarea {
    padding: 1%;
    border: 1px solid #EAEAEA;
    line-height: 20px;
 /*   width: 98%; */
    margin: 0px 0px 20px;
    background-color: #F8F8F8;
    border-radius: 3px;
}​​

Viewing all articles
Browse latest Browse all 5994

Trending Articles