badget

Biggest Sale! Special Offer!

Get 30% discount on all of our single themes with this coupon code: #30%SALE

Hurry up! *Limited time offer*

Reply To: Input field size being ignored

#28534
info110
Participant

I found the problem. In css you have width:100%

However, if I remove it, then I have problems with smaller screen sizes.

I guess I have to control the size of the area the field is in.

input[type=”text”],
input[type=”email”],
input[type=”search”],
input[type=”password”],
input[type=”tel”],
input[type=”url”],
input[type=”date”],
textarea {
padding: 10px;
border: 1px solid rgba(0, 0, 0, 0.05);
width: 100%;
margin: 0 0 30px;
background-color: #f9f9f9;
-webkit-border-radius: 3px;
-moz-border-radius: 3px;
border-radius: 3px;
}