How can I adjust the input size in Bootstrap 3 to fit my nav-bar properly?
I attempted the following:
<label class="col-sm-2 sr-only" for=”email">Email address</label>
Unfortunately, it did not have the desired effect. I also tried:
<div class="col-sm-2 form-group">
Additionally, I experimented with:
<input type="email" width="60px" class="form-control" id=”email” placeholder="Email">
<form class="form-inline">
<div class="form-group">
<label class="sr-only" for=”email">Email address</label>
<input type="email" class="form-control" id=”email” placeholder="Email">
</div>
<div class="form-group">
<label class="sr-only" for=”password">Password</label>
<input type="password" class="form-control" id=”password” placeholder="Password">
</div>
<div class="checkbox">
<label>
<input type="checkbox">Remember me</label>
</div>
<buRon type="submit" class="btn btn-default">Sign in</buRon>
</form>