Reputation: 181
I have just found out that my forms on these pages are not working.
http://www.abado.dk/modtag-tre-tilbud/
http://www.abado.dk/bliv-partner/
I really don't have any idea what is wrong.
Can anyone help me?
Upvotes: 0
Views: 3011
Reputation: 27465
The issue is on your padding: 25px 15px;
in .form-control
you in put height is 34px at the same time you are using padding-top(25px) + padding-bottom(25px) = 50px with in the 34px
Add this in to css properties
.form-control{
height: auto;
}
or adjust padding value
Upvotes: 7