Input groups bigger than input in Bootstrap 3 using Jumbotron container

Last night, I had exactly the same problem. None of the fixes mentioned above worked in my context. What finally did do the job was setting the margin to 0:

.input-group .form-control {
    margin: 0px !important;
}

Perhaps this helps someone with a similar problem!

Leave a Comment